diff --git a/locales/index.d.ts b/locales/index.d.ts index 60e88a219240b22aa0bbc36cedcb32213a7e374a..3937784153d03f32784be6c1c3979dc49c0e75aa 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -672,6 +672,7 @@ export interface Locale { "other": string; "regenerateLoginToken": string; "regenerateLoginTokenDescription": string; + "theKeywordWhenSearchingForCustomEmoji": string; "setMultipleBySeparatingWithSpace": string; "fileIdOrUrl": string; "behavior": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 3d31dcef4954f7161d6d1ace15da8146f42dd290..77f9a9ec0f13b60d20d1599bbec0936ab8dda4a0 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -669,6 +669,7 @@ useGlobalSettingDesc: "オンã«ã™ã‚‹ã¨ã€ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®é€šçŸ¥è¨å®šãŒä½¿ other: "ãã®ä»–" regenerateLoginToken: "ãƒã‚°ã‚¤ãƒ³ãƒˆãƒ¼ã‚¯ãƒ³ã‚’å†ç”Ÿæˆ" regenerateLoginTokenDescription: "ãƒã‚°ã‚¤ãƒ³ã«ä½¿ç”¨ã•ã‚Œã‚‹å†…部トークンをå†ç”Ÿæˆã—ã¾ã™ã€‚通常ã“ã®æ“作を行ã†å¿…è¦ã¯ã‚ã‚Šã¾ã›ã‚“。å†ç”Ÿæˆã™ã‚‹ã¨ã€å…¨ã¦ã®ãƒ‡ãƒã‚¤ã‚¹ã§ãƒã‚°ã‚¢ã‚¦ãƒˆã•ã‚Œã¾ã™ã€‚" +theKeywordWhenSearchingForCustomEmoji: "カスタム絵文å—を検索ã™ã‚‹æ™‚ã®ã‚ーワードã«ãªã‚Šã¾ã™ã€‚" setMultipleBySeparatingWithSpace: "スペースã§åŒºåˆ‡ã£ã¦è¤‡æ•°è¨å®šã§ãã¾ã™ã€‚" fileIdOrUrl: "ファイルIDã¾ãŸã¯URL" behavior: "動作" diff --git a/packages/frontend/src/pages/emoji-edit-dialog.vue b/packages/frontend/src/pages/emoji-edit-dialog.vue index 07b44a1051053acbdb517972640468829f3567b5..474e63cb46f1c788f4e8161d1b77a416a8a7f209 100644 --- a/packages/frontend/src/pages/emoji-edit-dialog.vue +++ b/packages/frontend/src/pages/emoji-edit-dialog.vue @@ -39,7 +39,10 @@ SPDX-License-Identifier: AGPL-3.0-only </MkInput> <MkInput v-model="aliases" autocapitalize="off"> <template #label>{{ i18n.ts.tags }}</template> - <template #caption>{{ i18n.ts.setMultipleBySeparatingWithSpace }}</template> + <template #caption> + {{ i18n.ts.theKeywordWhenSearchingForCustomEmoji }}<br/> + {{ i18n.ts.setMultipleBySeparatingWithSpace }} + </template> </MkInput> <MkInput v-model="license"> <template #label>{{ i18n.ts.license }}</template>