From c2d5a96bb6f3524c573e980c467482b20436f971 Mon Sep 17 00:00:00 2001 From: tamaina Date: Wed, 12 Feb 2020 06:27:11 +0900 Subject: [PATCH] =?UTF-8?q?=E7=BF=BB=E8=A8=B3=E3=81=AE=E6=8A=9C=E3=81=91?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=E3=81=9D=E3=81=AE2=20(#5893)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Missing translation * use npx * :v: * Update ja-JP.yml * Update signup.vue * Update ja-JP.yml * Update messaging-room.vue * Update ja-JP.yml * Update signup.vue * Update ja-JP.yml * Update signin.vue * Update ja-JP.yml * Update index.vue * Update ja-JP.yml * Update signup.vue Co-authored-by: syuilo --- locales/ja-JP.yml | 23 ++++++++++++++++++ src/client/components/drive.vue | 4 +-- src/client/components/google.vue | 2 +- src/client/components/post-form.vue | 4 +-- src/client/components/reaction-picker.vue | 2 +- src/client/components/signin.vue | 13 +++++----- src/client/components/signup.vue | 27 ++++++++++----------- src/client/components/time.vue | 2 +- src/client/components/user-list.vue | 2 +- src/client/pages/instance/index.vue | 12 ++++----- src/client/pages/messaging-room.form.vue | 2 +- src/client/pages/messaging-room.message.vue | 2 +- src/client/pages/messaging-room.vue | 12 ++++----- src/client/scripts/please-login.ts | 2 +- 14 files changed, 66 insertions(+), 43 deletions(-) diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index c68f9408a..5dbe603e4 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -371,12 +371,35 @@ members: "メンバー" transfer: "譲渡" messagingWithUser: "ユーザーとチャット" messagingWithGroup: "グループでチャット" +title: "タイトル" +text: "テキスト" enable: "有効にする" next: "次" retype: "再入力" noteOf: "{user}のノート" inviteToGroup: "グループに招待" maxNoteTextLength: "ノートの文字数制限" +quoteAttached: "引用付き" +quoteQuestion: "引用として添付しますか?" +noMessagesYet: "まだチャットはありません" +newMessageExists: "新しいメッセージがあります" +onlyOneFileCanBeAttached: "メッセージに添付できるファイルはひとつです" +signinRequired: "ログインしてください" +invitationCode: "招待コード" +checking: "確認しています" +available: "利用できます" +unavailable: "利用できません" +usernameInvalidFormat: "a~z、A~Z、0~9、_が使えます" +tooShort: "短すぎます" +tooLong: "長すぎます" +weakPassword: "弱いパスワード" +normalPassword: "普通のパスワード" +strongPassword: "強いパスワード" +passwordMatched: "一致しました" +passwordNotMatched: "一致していません" +signinWith: "{x}でログイン" +tapSecurityKey: "セキュリティーキーにタッチ" +or: "もしくは" _tutorial: title: "Misskeyの使い方" diff --git a/src/client/components/drive.vue b/src/client/components/drive.vue index 8a4349ae3..bb35b156a 100644 --- a/src/client/components/drive.vue +++ b/src/client/components/drive.vue @@ -23,13 +23,13 @@
- {{ $t('@.load-more') }} + {{ $t('loadMore') }}
- {{ $t('@.load-more') }} + {{ $t('loadMore') }}

{{ $t('empty-draghover') }}

diff --git a/src/client/components/google.vue b/src/client/components/google.vue index e6ef7f7d9..21560008f 100644 --- a/src/client/components/google.vue +++ b/src/client/components/google.vue @@ -1,7 +1,7 @@ diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue index 3fe14eee9..2e6285cb0 100644 --- a/src/client/components/post-form.vue +++ b/src/client/components/post-form.vue @@ -21,7 +21,7 @@
-
{{ $t('@.post-form.quote-attached') }}
+
{{ $t('quoteAttached') }}
{{ $t('recipient') }}
@@ -445,7 +445,7 @@ export default Vue.extend({ this.$root.dialog({ type: 'info', - text: this.$t('@.post-form.quote-question'), + text: this.$t('quoteQuestion'), showCancelButton: true }).then(({ canceled }) => { if (canceled) { diff --git a/src/client/components/reaction-picker.vue b/src/client/components/reaction-picker.vue index ccf6eaa51..9380e6a78 100644 --- a/src/client/components/reaction-picker.vue +++ b/src/client/components/reaction-picker.vue @@ -13,7 +13,7 @@ mode="out-in" appear > - +
diff --git a/src/client/components/signin.vue b/src/client/components/signin.vue index 22b5ec804..758bc5910 100644 --- a/src/client/components/signin.vue +++ b/src/client/components/signin.vue @@ -12,15 +12,15 @@ {{ signing ? $t('loggingIn') : $t('login') }} -

{{ $t('signin-with-twitter') }}

-

{{ $t('signin-with-github') }}

-

{{ $t('signin-with-discord') /* TODO: Make these layouts better */ }}

+

{{ $t('signinWith', { x: 'Twitter' }) }}

+

{{ $t('signinWith', { x: 'GitHub' }) }}

+

{{ $t('signinWith', { x: 'Discord' }) }}