Added translations to pot + fixed Japanese

This commit is contained in:
dabura667 2015-06-05 02:44:14 +09:00
commit 2ebbf1f1c6
6 changed files with 52 additions and 17 deletions

View file

@ -88,6 +88,10 @@ msgstr "本当にこのウォレットを削除しても宜しいですか?"
msgid "Available Balance"
msgstr "送金可能残高"
#: public/views/create.html public/views/join.html
msgid "BIP32 master extended private key"
msgstr "マスタ拡張秘密鍵"
#: public/views/includes/topbar.html public/views/modals/tx-details.html
#: public/views/modals/txp-details.html
msgid "Back"
@ -345,6 +349,10 @@ msgstr "バックアップをダウンロード"
msgid "ENTER"
msgstr "ENTER"
#: public/views/importLegacy.html
msgid "Email"
msgstr "メールアドレス"
#: public/views/preferences.html
msgid "Email Notifications"
msgstr "メールのお知らせ"
@ -430,11 +438,7 @@ msgstr "履歴"
msgid "Home"
msgstr "ホーム"
#: public/views/create.html
msgid "If not given, a random key will be generated"
msgstr "空欄の場合、乱数を使って鍵を生成します。"
#: public/views/join.html
#: public/views/create.html public/views/join.html
msgid "If not given, a secure key will be generated"
msgstr "空欄の場合、安全な鍵を生成します。"
@ -498,7 +502,7 @@ msgstr "ウォレット移行について詳しく"
msgid "Make a payment to"
msgstr "支払いは次の宛先へ"
#: public/views/create.html
#: public/views/create.html public/views/join.html
msgid "Master extended private key"
msgstr "マスタ拡張秘密鍵"
@ -684,6 +688,10 @@ msgstr "バックアップファイルを選択"
msgid "Preferences"
msgstr "設定"
#: public/views/modals/scanner.html
msgid "QR-Scanner"
msgstr "QRスキャンナー"
#: src/js/controllers/index.js
msgid "Receive"
msgstr "受取"
@ -870,6 +878,10 @@ msgstr "成功"
msgid "Tap to retry"
msgstr "タップしてやり直し"
#: public/views/create.html
msgid "Testnet"
msgstr "テスト用ネットワーク"
#: src/js/controllers/walletHome.js
msgid ""
"The payment was created but could not be completed. Please try again from "
@ -963,6 +975,10 @@ msgstr "信用していない"
msgid "Updating Wallet..."
msgstr "ウォレット更新中…"
#: public/views/importLegacy.html
msgid "Username"
msgstr "ユーザ名"
#: public/views/preferencesAbout.html
msgid "Version"
msgstr "バージョン"

View file

@ -77,6 +77,11 @@ msgstr ""
msgid "Available Balance"
msgstr ""
#: public/views/create.html
#: public/views/join.html
msgid "BIP32 master extended private key"
msgstr ""
#: public/views/includes/topbar.html
#: public/views/modals/tx-details.html
#: public/views/modals/txp-details.html
@ -329,6 +334,10 @@ msgstr ""
msgid "ENTER"
msgstr ""
#: public/views/importLegacy.html
msgid "Email"
msgstr ""
#: public/views/preferences.html
msgid "Email Notifications"
msgstr ""
@ -417,9 +426,6 @@ msgid "Home"
msgstr ""
#: public/views/create.html
msgid "If not given, a random key will be generated"
msgstr ""
#: public/views/join.html
msgid "If not given, a secure key will be generated"
msgstr ""
@ -487,6 +493,7 @@ msgid "Make a payment to"
msgstr ""
#: public/views/create.html
#: public/views/join.html
msgid "Master extended private key"
msgstr ""
@ -675,6 +682,10 @@ msgstr ""
msgid "Preferences"
msgstr ""
#: public/views/modals/scanner.html
msgid "QR-Scanner"
msgstr ""
#: src/js/controllers/index.js
msgid "Receive"
msgstr ""
@ -857,6 +868,10 @@ msgstr ""
msgid "Tap to retry"
msgstr ""
#: public/views/create.html
msgid "Testnet"
msgstr ""
#: src/js/controllers/walletHome.js
msgid "The payment was created but could not be completed. Please try again from home screen"
msgstr ""
@ -934,6 +949,10 @@ msgstr ""
msgid "Updating Wallet..."
msgstr ""
#: public/views/importLegacy.html
msgid "Username"
msgstr ""
#: public/views/preferencesAbout.html
msgid "Version"
msgstr ""

View file

@ -91,15 +91,15 @@
<div ng-hide="hideAdv" class="row">
<div class="large-12 columns">
<label for="network-name" class="line-b oh">
<span>Testnet</span>
<span translate>Testnet</span>
<switch id="network-name" name="isTestnet" ng-model="isTestnet" class="green right m5t m10b"></switch>
</label>
<label for="ext-master" class="m10t">
<span translate>Master extended private key</span>
<small translate>If not given, a random key will be generated</small>
<small translate>If not given, a secure key will be generated</small>
<input id="ext-master"
type="text"
placeholder="BIP32 master extended private key"
placeholder="{{'BIP32 master extended private key'|translate}}"
name="privateKey" ng-model="privateKey">
</div>
</div>

View file

@ -30,8 +30,8 @@
</label>
<label for="username">
{{importLegacy.fromCloud ? 'Email': 'Username'}}
<input type="text" class="form-control" placeholder="{{importLegacy.fromCloud ? 'Email': 'Username'}}"
{{importLegacy.fromCloud ? {{'Email'|translate}}: {{'Username'|translate}}}}
<input type="text" class="form-control" placeholder="{{importLegacy.fromCloud ? {{'Email'|translate}}: {{'Username'|translate}}}}"
name="username" ng-model="importLegacy.username" autocapitalize="off" required>
</label>

View file

@ -74,11 +74,11 @@
</a>
<div ng-show="join.hideAdv" class="row">
<div class="large-12 columns">
<label for="ext-master">Master extended private key
<label for="ext-master">{{'Master extended private key'|translate}}
<small translate>If not given, a secure key will be generated</small>
<input id="ext-master"
type="text"
placeholder="BIP32 master extended private key"
placeholder="{{'BIP32 master extended private key'|translate}}"
name="privateKey" ng-model="privateKey">
</label>
</div>

View file

@ -5,7 +5,7 @@
</a>
</section>
<section class="middle tab-bar-section">
<h1 class="title ellipsis">
<h1 translate class="title ellipsis">
QR-Scanner
</h1>
</section>