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' }) }}