summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgutfuckllc <40531868+gutfuckllc@users.noreply.github.com>2018-07-31 13:32:18 -0400
committergutfuckllc <40531868+gutfuckllc@users.noreply.github.com>2018-07-31 13:32:18 -0400
commit0f34ed3ccd0325461229eb3574fdddfb7aea41b4 (patch)
tree18356610e09db4193b3be1d1041d8cce43d19ab7
parentLocalized customization tips on home.vue (diff)
downloadmisskey-0f34ed3ccd0325461229eb3574fdddfb7aea41b4.tar.gz
misskey-0f34ed3ccd0325461229eb3574fdddfb7aea41b4.tar.bz2
misskey-0f34ed3ccd0325461229eb3574fdddfb7aea41b4.zip
Added got it to the local files
Home.vue got it was still untranslated. It now has a localization file
-rw-r--r--locales/en.yml1
-rw-r--r--locales/ja.yml1
-rw-r--r--src/client/app/desktop/views/components/home.vue2
3 files changed, 3 insertions, 1 deletions
diff --git a/locales/en.yml b/locales/en.yml
index 37492ed20f..c60bf5243b 100644
--- a/locales/en.yml
+++ b/locales/en.yml
@@ -13,6 +13,7 @@ common:
paragraph2: "You can change the display by <strong>right clicking</strong> on some widgets."
paragraph3: "To delete a widget, <strong>drag and drop the widget onto the area labeled "Trash"</strong> in the header."
paragraph4: "To finish the customization, click "Finish" in the upper right."
+ gotit: "Got it!"
time:
unknown: "unknown"
diff --git a/locales/ja.yml b/locales/ja.yml
index 27cf6b9840..46cf8caa37 100644
--- a/locales/ja.yml
+++ b/locales/ja.yml
@@ -13,6 +13,7 @@ common:
paragraph2: "一部のウィジェットは、<strong><strong>右</strong>クリック</strong>することで表示を変更することができます。"
paragraph3: "ウィジェットを削除するには、ヘッダーの<strong>「ゴミ箱」</strong>と書かれたエリアにウィジェットをドラッグ&ドロップします。"
paragraph4: "カスタマイズを終了するには、右上の「完了」をクリックします。"
+ gotit: "Got it!"
time:
unknown: "なぞのじかん"
diff --git a/src/client/app/desktop/views/components/home.vue b/src/client/app/desktop/views/components/home.vue
index 5390e89ac5..28860d09bc 100644
--- a/src/client/app/desktop/views/components/home.vue
+++ b/src/client/app/desktop/views/components/home.vue
@@ -193,7 +193,7 @@ export default Vue.extend({
'<p>%i18n:common.customizationtips.paragraph3%</p>' +
'<p>%i18n:common.customizationtips.paragraph4%</p>',
actions: [{
- text: 'Got it!'
+ text: '%i18n:common.customizationtips.gotit%'
}]
});
},