From f78ae399f2a49379e0790ee07d2d8b8988ea01ef Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 15 Apr 2018 05:22:16 +0900 Subject: [PATCH] wip --- locales/ja.yml | 13 +++++++++---- src/build/i18n.ts | 5 ++--- .../app/desktop/views/components/settings.apps.vue | 2 +- .../views/pages/user/user.followers-you-know.vue | 6 +++--- .../app/desktop/views/pages/user/user.friends.vue | 6 +++--- .../app/desktop/views/pages/user/user.photos.vue | 6 +++--- src/client/app/mobile/views/components/timeline.vue | 5 +++-- src/client/app/mobile/views/pages/settings.vue | 1 - 8 files changed, 24 insertions(+), 20 deletions(-) diff --git a/locales/ja.yml b/locales/ja.yml index 8787aaad20..597b0f47ec 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -41,13 +41,13 @@ common: update-available: "Misskeyの新しいバージョンがあります({newer}。現在{current}を利用中)。ページを再度読み込みすると更新が適用されます。" my-token-regenerated: "あなたのトークンが更新されたのでサインアウトします。" -common/views/connect-failed.vue: +common/views/components/connect-failed.vue: title: "サーバーに接続できません" description: "インターネット回線に問題があるか、サーバーがダウンまたはメンテナンスしている可能性があります。しばらくしてから{再度お試し}ください。" thanks: "いつもMisskeyをご利用いただきありがとうございます。" troubleshoot: "トラブルシュート" -common/views/connect-failed.troubleshooter.vue: +common/views/components/connect-failed.troubleshooter.vue: title: "トラブルシューティング" network: "ネットワーク接続" checking-network: "ネットワーク接続を確認中" @@ -182,11 +182,11 @@ common/views/widgets/server.vue: title: "サーバー情報" toggle: "表示を切り替え" -common/views/widgets/activity.vue: +desktop/views/components/activity.vue: title: "アクティビティ" toggle: "表示を切り替え" -desktop/views/widgets/calendar.vue: +desktop/views/components/calendar.vue: title: "{1}年 {2}月" prev: "前の月" next: "次の月" @@ -304,6 +304,7 @@ desktop/views/components/settings.vue: password: "パスワード" 2fa: "二段階認証" other: "その他" + license: "ライセンス" desktop/views/components/settings.2fa.vue: intro: "二段階認証を設定すると、サインイン時にパスワードだけでなく、予め登録しておいた物理的なデバイス(例えばあなたのスマートフォンなど)も必要になり、よりセキュリティが向上します。" @@ -331,6 +332,9 @@ desktop/views/components/settings.api.vue: regenerate-token: "トークンを再生成" enter-password: "パスワードを入力してください" +desktop/views/components/settings.app.vue: + no-apps: "連携しているアプリケーションはありません" + desktop/views/components/settings.mute.vue: no-users: "ミュートしているユーザーはいません" @@ -557,6 +561,7 @@ mobile/views/pages/selectdrive.vue: select-file: "ファイルを選択" mobile/views/pages/settings.vue: + signed-in-as: "{}としてサインイン中" profile: "プロフィール" twitter: "Twitter連携" signin-history: "サインイン履歴" diff --git a/src/build/i18n.ts b/src/build/i18n.ts index 57d6a20fd0..35204c34a4 100644 --- a/src/build/i18n.ts +++ b/src/build/i18n.ts @@ -55,12 +55,11 @@ export default class Replacer { public replacement(ctx, match, a, b, c) { const client = 'misskey/src/client/app/'; - const name = ctx ? ctx.src.substr(ctx.src.indexOf(client) + client.length) : null; + let name = null; let key = a || b || c; if (key[0] == '@') { - //if (name.startsWith('app/desktop/views/')) prefix = 'desktop.views.'; - //if (name.startsWith('app/mobile/views/')) prefix = 'mobile.views.'; + name = ctx.src.substr(ctx.src.indexOf(client) + client.length); key = key.substr(1); } diff --git a/src/client/app/desktop/views/components/settings.apps.vue b/src/client/app/desktop/views/components/settings.apps.vue index 0503b03abd..7d562f9c11 100644 --- a/src/client/app/desktop/views/components/settings.apps.vue +++ b/src/client/app/desktop/views/components/settings.apps.vue @@ -1,7 +1,7 @@