From e601a3d8ce16cb757c5bc1d361f6c52e932831c1 Mon Sep 17 00:00:00 2001 From: Takashi SHIRAI Date: Tue, 8 Apr 2025 19:34:12 +0900 Subject: [PATCH] Update Japanese translation Signed-off-by: Takashi SHIRAI --- adminer/lang/ja.inc.php | 9 ++++++--- plugins/adminer.js.php | 1 + plugins/backward-keys.php | 1 + plugins/before-unload.php | 1 + plugins/codemirror.php | 1 + plugins/config.php | 9 +++++++++ plugins/dark-switcher.php | 1 + plugins/database-hide.php | 1 + plugins/designs.php | 1 + plugins/dump-alter.php | 1 + plugins/dump-bz2.php | 1 + plugins/dump-date.php | 1 + plugins/dump-json.php | 1 + plugins/dump-php.php | 1 + plugins/dump-xml.php | 1 + plugins/dump-zip.php | 1 + plugins/edit-calendar.php | 1 + plugins/edit-foreign.php | 1 + plugins/edit-textarea.php | 1 + plugins/editor-setup.php | 1 + plugins/editor-views.php | 1 + plugins/email-table.php | 1 + plugins/enum-option.php | 1 + plugins/file-upload.php | 1 + plugins/foreign-system.php | 1 + plugins/frames.php | 1 + plugins/json-column.php | 1 + plugins/login-ip.php | 1 + plugins/login-otp.php | 1 + plugins/login-password-less.php | 1 + plugins/login-servers.php | 1 + plugins/login-ssl.php | 1 + plugins/login-table.php | 1 + plugins/master-slave.php | 1 + plugins/menu-links.php | 6 ++++++ plugins/monaco.php | 1 + plugins/pretty-json-column.php | 1 + plugins/prism.php | 1 + plugins/select-email.php | 2 +- plugins/slugify.php | 1 + plugins/sql-gemini.php | 5 +++++ plugins/sql-log.php | 1 + plugins/table-indexes-structure.php | 1 + plugins/table-structure.php | 1 + plugins/tables-filter.php | 1 + plugins/tinymce.php | 1 + plugins/translation.php | 1 + plugins/version-github.php | 1 + plugins/version-noverify.php | 1 + 49 files changed, 71 insertions(+), 4 deletions(-) diff --git a/adminer/lang/ja.inc.php b/adminer/lang/ja.inc.php index 99c78b7c..cc77a97e 100644 --- a/adminer/lang/ja.inc.php +++ b/adminer/lang/ja.inc.php @@ -11,7 +11,7 @@ Lang::$translations = array( 'Loaded plugins' => '読込済プラグイン', 'Thanks for using Adminer, consider donating.' => 'Adminerのご利用ありがとうございました。(寄付はこちら)', '%s must return an array.' => '%s は配列を返す必要があります。', - 'Configure %s in %s.' => '%2$s の %1$s を設定してください。', + 'Configure %s in %s.' => '%2$s の %1$s を設定してください。', 'There is a space in the input password which might be the cause.' => '入力されたパスワードに空白が含まれているので、それが原因かもしれません。', 'Adminer does not support accessing a database without a password, more information.' => 'Adminer はパスワードのないデータベースへの接続には対応していません。(詳細)', 'Database does not support password.' => 'データベースがパスワードに対応していません。', @@ -107,8 +107,8 @@ Lang::$translations = array( 'Foreign key has been dropped.' => '外部キーを削除しました。', 'Foreign key has been altered.' => '外部キーを変更しました。', 'Foreign key has been created.' => '外部キーを作成しました。', - 'Foreign key' => '外キー', - 'Target table' => 'テーブル', + 'Foreign key' => '外部キー', + 'Target table' => '対象テーブル', 'Change' => '変更', 'Source' => 'ソース', 'Target' => 'ターゲット', @@ -158,6 +158,7 @@ Lang::$translations = array( 'User has been created.' => 'ユーザを作成しました。', 'Hashed' => 'Hashed', 'Column' => '列', + 'Columns' => '列', 'Routine' => 'ルーチン', 'Grant' => '権限の付与', 'Revoke' => '権限の取消し', @@ -307,6 +308,8 @@ Lang::$translations = array( 'Check has been created.' => 'チェックを作成しました。', 'Check has been altered.' => 'チェックを変更しました。', 'Check has been dropped.' => 'チェックを削除しました。', + + 'screenshot' => 'スクリーンショット', ); // run `php ../../lang.php ja` to update this file diff --git a/plugins/adminer.js.php b/plugins/adminer.js.php index ac73081c..64cda944 100644 --- a/plugins/adminer.js.php +++ b/plugins/adminer.js.php @@ -22,5 +22,6 @@ class AdminerDotJs extends Adminer\Plugin { 'de' => array('' => 'Laden Sie adminer.js'), 'pl' => array('' => 'Wczytuj adminer.js'), 'ro' => array('' => 'Încarcă adminer.js'), + 'ja' => array('' => 'adminer.js を読込み'), ); } diff --git a/plugins/backward-keys.php b/plugins/backward-keys.php index ace9cc5b..72f11481 100644 --- a/plugins/backward-keys.php +++ b/plugins/backward-keys.php @@ -58,5 +58,6 @@ ORDER BY ORDINAL_POSITION", null, "") as $row protected $translations = array( 'cs' => array('' => 'Zobrazí odkazy na tabulky odkazující aktuální řádek, stejně jako Adminer Editor'), + 'ja' => array('' => 'Adminer Editor と同様に、カレント行を参照しているテーブルへのリンクを表示'), ); } diff --git a/plugins/before-unload.php b/plugins/before-unload.php index ec9bf7b6..e07e5961 100644 --- a/plugins/before-unload.php +++ b/plugins/before-unload.php @@ -33,5 +33,6 @@ onbeforeunload = () => editChanged; protected $translations = array( 'cs' => array('' => 'Zobrazí potvrzení před odnahráním stránky, pokud bylo změněno formulářové políčko'), + 'ja' => array('' => 'フォームの列が変更された時、ページを再読込みする前に確認を表示'), ); } diff --git a/plugins/codemirror.php b/plugins/codemirror.php index b2f435ed..faa7dcb2 100644 --- a/plugins/codemirror.php +++ b/plugins/codemirror.php @@ -104,5 +104,6 @@ addEventListener('DOMContentLoaded', () => { protected $translations = array( 'cs' => array('' => 'Použít CodeMirror 5 pro zvýrazňování syntaxe a