Add Japanese translations for mysql Node (#841)

This commit is contained in:
Wataru Sato
2021-10-27 21:42:27 +09:00
committed by GitHub
parent 04465c1dca
commit b95ae5dc63
5 changed files with 85 additions and 19 deletions

View File

@@ -0,0 +1,24 @@
{
"mysql": {
"label": {
"host": "Host",
"port": "Port",
"user": "User",
"password": "Password",
"database": "Database",
"timezone": "Timezone",
"charset": "Charset"
},
"status": {
"badping": "Bad Ping",
"error": "Error",
"ok": "OK",
"notconnected": "not yet connected"
},
"errors": {
"notstring": "the query is not defined as a string",
"notconnected": "Database not connected",
"notconfigured": "MySQL database not configured"
}
}
}

View File

@@ -0,0 +1,18 @@
<script type="text/html" data-help-name="MySQLdatabase">
<p>データベースにアクセスするための認証情報を追加します</p>
<p>タイムゾーンにはGMT, EST5EDT, UTC のような値を設定します</p>
<p>The Charset defaults to the "old" 3 byte Mysql UTF8. 絵文字などをサポートする必要がある場合はUTF8MB4 を使用してください</p>
</script>
<script type="text/html" data-help-name="mysql">
<p>MySQLデータベースに対するアクセスを提供します</p>
<p>このノードでは設定したデータベースに対して <b>クエリ</b> INSERTSDELETES
その性質上SQLインジェクションが可能になりますので<i>ご注意ください</i></p>
<p><code>msg.topic</code> にはデータベースに対する <i>クエリ</i> を指定する必要がありますまた結果は <code>msg.payload</code> </p>
<p><code>msg.payload</code> topic </p>
<p>通常返されるペイロードは結果行の配列となります <b></b>: これらは<i>RowDataPacket</i>型であり完全な標準オブジェクトではありません</p>
<p>キーに該当するものが見つからない場合<i>null</i> </p>
<p>再接続のタイムアウトミリ秒 <b>settings.js</b> 1
<pre>mysqlReconnectTime: 30000,</pre></p>
</script>

View File

@@ -0,0 +1,24 @@
{
"mysql": {
"label": {
"host": "ホスト",
"port": "ポート",
"user": "ユーザー",
"password": "パスワード",
"database": "データベース",
"timezone": "タイムゾーン",
"charset": "文字セット"
},
"status": {
"badping": "Bad Ping",
"error": "エラー",
"ok": "OK",
"notconnected": "未接続"
},
"errors": {
"notstring": "クエリが文字列として定義されていません",
"notconnected": "データベースに接続できません",
"notconfigured": "MySQLデータベース未設定"
}
}
}