Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated translations - (machine translation) #19353

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ Para el marco y la biblioteca que no se [instrumentan automáticamente](#instrum
<DNT>**MySqlConnector**</DNT>

* Versión mínima admitida: 1.0.1
* Última versión compatible verificada: 2.3.6
* Última versión compatible verificada: 2.4.0
</td>
</tr>

Expand Down Expand Up @@ -731,7 +731,7 @@ Para el marco y la biblioteca que no se [instrumentan automáticamente](#instrum
</td>

<td>
8.0.1
9.0.0
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -786,6 +786,8 @@ Para el marco y la biblioteca que no se [instrumentan automáticamente](#instrum
* Pone y recibe mensajes.

* Versión mínima soportada: 5.0

* Última versión compatible verificada: 9.2.3
</td>
</tr>

Expand Down Expand Up @@ -1318,7 +1320,7 @@ Para el marco y la biblioteca que no se [instrumentan automáticamente](#instrum
<DNT>**MySqlConnector**</DNT>

* Versión mínima admitida: 1.0.1
* Última versión compatible verificada: 2.3.6
* Última versión compatible verificada: 2.4.0
</td>
</tr>

Expand Down Expand Up @@ -1697,7 +1699,9 @@ Para el marco y la biblioteca que no se [instrumentan automáticamente](#instrum
9.7.0
</td>

<td />
<td>
9.0.0
</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -1759,6 +1763,8 @@ Para el marco y la biblioteca que no se [instrumentan automáticamente](#instrum
* Pone y recibe mensajes.

* Versión mínima soportada: 5.0

* Última versión compatible verificada: 8.2.4
</td>
</tr>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ Tenga en cuenta que cuando emplee la API de logging, solo debe emplear el nivel
Xamarin
</TabsBarItem>

<TabsBarItem id="Unity">
Unidad
</TabsBarItem>

<TabsBarItem id="unreal">
Unreal
</TabsBarItem>
Expand Down Expand Up @@ -595,6 +599,51 @@ Tenga en cuenta que cuando emplee la API de logging, solo debe emplear el nivel
```
</TabsPageItem>

<TabsPageItem id="Unity">
### Sintaxis [#syntax]

```csharp
NewRelicAgent.LogInfo(String message) : void

NewRelicAgent.LogError(String message) : void

NewRelicAgent.LogVerbose(String message) : void

NewRelicAgent.LogWarning(String message) : void

NewRelicAgent.LogDebug(String message) : void

NewRelicAgent.Log(LogLevel level, String message) : void

NewRelicAgent.LogAttributes(Dictionary<string, object> attributes) : void
```

### Ejemplo [#example]

```csharp
NewRelicAgent.LogInfo("This is an informational message");

NewRelicAgent.LogError("This is an error message");

NewRelicAgent.LogVerbose("This is a verbose message");

NewRelicAgent.LogWarning("This is a warning message");

NewRelicAgent.LogDebug("This is a debug message");

NewRelicAgent.Log(LogLevel.Info, "This is an informational message");

NewRelicAgent.LogAttributes(new Dictionary<string, object>()
{
{"BreadNumValue", 12.3 },
{"BreadStrValue", "UnityBread" },
{"BreadBoolValue", true },
{"message", "This is a message with attributes" }
}
);
```
</TabsPageItem>

<TabsPageItem id="unreal">
### Sintaxis [#syntax]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ New Relicの .NET エージェントは、.NET フレームワークと .NET Cor
<DNT>**MySqlConnector**</DNT>

* サポートされている最小バージョン:1.0.1
* 最新の検証済み互換バージョン:2.3.6
* 最新の検証済み互換バージョン: 2.4.0
</td>
</tr>

Expand Down Expand Up @@ -731,7 +731,7 @@ New Relicの .NET エージェントは、.NET フレームワークと .NET Cor
</td>

<td>
8.0.1
9.0.0
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -786,6 +786,8 @@ New Relicの .NET エージェントは、.NET フレームワークと .NET Cor
* メッセージの配置と採用

* サポートされている最小バージョン:5.0

* 最新の検証済み互換バージョン: 9.2.3
</td>
</tr>

Expand Down Expand Up @@ -1318,7 +1320,7 @@ New Relicの .NET エージェントは、.NET フレームワークと .NET Cor
<DNT>**MySqlConnector**</DNT>

* サポートされている最小バージョン:1.0.1
* 最新の検証済み互換バージョン:2.3.6
* 最新の検証済み互換バージョン: 2.4.0
</td>
</tr>

Expand Down Expand Up @@ -1697,7 +1699,9 @@ New Relicの .NET エージェントは、.NET フレームワークと .NET Cor
9.7.0
</td>

<td />
<td>
9.0.0
</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -1759,6 +1763,8 @@ New Relicの .NET エージェントは、.NET フレームワークと .NET Cor
* メッセージの配置と採用

* サポートされている最小バージョン:5.0

* 最新の検証済み互換バージョン: 8.2.4
</td>
</tr>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ kubectl apply -f ./values.yaml -n newrelic
<thead>
<tr>
<th>
画像
言語
</th>

<th>
言語
画像
</th>

<th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ UI でログを表示するには:
ザマリン
</TabsBarItem>

<TabsBarItem id="Unity">
Unity
</TabsBarItem>

<TabsBarItem id="unreal">
Unreal
</TabsBarItem>
Expand Down Expand Up @@ -595,6 +599,51 @@ UI でログを表示するには:
```
</TabsPageItem>

<TabsPageItem id="Unity">
### 構文 [#syntax]

```csharp
NewRelicAgent.LogInfo(String message) : void

NewRelicAgent.LogError(String message) : void

NewRelicAgent.LogVerbose(String message) : void

NewRelicAgent.LogWarning(String message) : void

NewRelicAgent.LogDebug(String message) : void

NewRelicAgent.Log(LogLevel level, String message) : void

NewRelicAgent.LogAttributes(Dictionary<string, object> attributes) : void
```

### 例 [#example]

```csharp
NewRelicAgent.LogInfo("This is an informational message");

NewRelicAgent.LogError("This is an error message");

NewRelicAgent.LogVerbose("This is a verbose message");

NewRelicAgent.LogWarning("This is a warning message");

NewRelicAgent.LogDebug("This is a debug message");

NewRelicAgent.Log(LogLevel.Info, "This is an informational message");

NewRelicAgent.LogAttributes(new Dictionary<string, object>()
{
{"BreadNumValue", 12.3 },
{"BreadStrValue", "UnityBread" },
{"BreadBoolValue", true },
{"message", "This is a message with attributes" }
}
);
```
</TabsPageItem>

<TabsPageItem id="unreal">
### 構文 [#syntax]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ translationType: machine
<DNT>**MySqlConnector**</DNT>

* 지원되는 최소 버전: 1.0.1
* 최근 검증된 호환 버전: 2.3.6
* 최신 검증된 호환 버전: 2.4.0
</td>
</tr>

Expand Down Expand Up @@ -731,7 +731,7 @@ translationType: machine
</td>

<td>
8.0.1
9.0.0
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -786,6 +786,8 @@ translationType: machine
* 메시지를 주고받습니다.

* 지원되는 최소 버전: 5.0

* 최신 검증된 호환 버전: 9.2.3
</td>
</tr>

Expand Down Expand Up @@ -1318,7 +1320,7 @@ translationType: machine
<DNT>**MySqlConnector**</DNT>

* 지원되는 최소 버전: 1.0.1
* 최근 검증된 호환 버전: 2.3.6
* 최신 검증된 호환 버전: 2.4.0
</td>
</tr>

Expand Down Expand Up @@ -1697,7 +1699,9 @@ translationType: machine
9.7.0
</td>

<td />
<td>
9.0.0
</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -1759,6 +1763,8 @@ translationType: machine
* 메시지를 주고받습니다.

* 지원되는 최소 버전: 5.0

* 최신 검증된 호환 버전: 8.2.4
</td>
</tr>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ kubectl apply -f ./values.yaml -n newrelic
<thead>
<tr>
<th>
영상
언어
</th>

<th>
언어
영상
</th>

<th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ UI에서 로그를 보려면:
자마린
</TabsBarItem>

<TabsBarItem id="Unity">
단일성
</TabsBarItem>

<TabsBarItem id="unreal">
Unreal
</TabsBarItem>
Expand Down Expand Up @@ -595,6 +599,51 @@ UI에서 로그를 보려면:
```
</TabsPageItem>

<TabsPageItem id="Unity">
### 통사론 [#syntax]

```csharp
NewRelicAgent.LogInfo(String message) : void

NewRelicAgent.LogError(String message) : void

NewRelicAgent.LogVerbose(String message) : void

NewRelicAgent.LogWarning(String message) : void

NewRelicAgent.LogDebug(String message) : void

NewRelicAgent.Log(LogLevel level, String message) : void

NewRelicAgent.LogAttributes(Dictionary<string, object> attributes) : void
```

### 예시 [#example]

```csharp
NewRelicAgent.LogInfo("This is an informational message");

NewRelicAgent.LogError("This is an error message");

NewRelicAgent.LogVerbose("This is a verbose message");

NewRelicAgent.LogWarning("This is a warning message");

NewRelicAgent.LogDebug("This is a debug message");

NewRelicAgent.Log(LogLevel.Info, "This is an informational message");

NewRelicAgent.LogAttributes(new Dictionary<string, object>()
{
{"BreadNumValue", 12.3 },
{"BreadStrValue", "UnityBread" },
{"BreadBoolValue", true },
{"message", "This is a message with attributes" }
}
);
```
</TabsPageItem>

<TabsPageItem id="unreal">
### 통사론 [#syntax]

Expand Down
Loading
Loading