diff --git a/locales/index.d.ts b/locales/index.d.ts index c291ab87b7..9db5920cf9 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -1180,6 +1180,7 @@ export interface Locale { "laterAreYouSure": string; }; "_initialTutorial": { + "launchTutorial": string; "title": string; "wellDone": string; "_note": { @@ -1193,6 +1194,7 @@ export interface Locale { "_reaction": { "description": string; "letsTryReacting": string; + "reactToContinue": string; "reactDone": string; }; "_timeline": { diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index be24416ae9..1bcdd019a3 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1178,6 +1178,7 @@ _initialAccountSetting: laterAreYouSure: "初期設定をあとでやり直しますか?" _initialTutorial: + launchTutorial: "チュートリアルを見る" title: "チュートリアル" wellDone: "お見事!" _note: @@ -1186,10 +1187,11 @@ _initialTutorial: reply: "このボタンから返信できます。もちろん返信に返信することもできるので、気が済むまで会話を続けることができます。" renote: "このボタンを押すと、このノートを自分のタイムラインに投稿することができます。引用リノートも可能です。" reaction: "リアクションをつけることができます。詳しくは次のページで解説します。" - howToNote: "ノートは、下のようなボタンから簡単に行なえます。チュートリアルが終わったら早速やってみてくださいね!" + howToNote: "ノートは、下のようなボタンから簡単にできます。チュートリアルが終わったら、早速「Misskey始めました」などと投稿してみましょう!" _reaction: description: "ノートには「リアクション」をつけることができます。「いいね」では伝わらないニュアンスも、リアクションで簡単・気軽に表現できます。" letsTryReacting: "リアクションは、ノートの「+」ボタンをクリックするとつけられます。試しにこのノートに好きなリアクションをつけてみましょう!" + reactToContinue: "リアクションをつけると先に進めるようになります。" reactDone: "リアクションを外すときは、「ー」ボタンを押します。実際に試してみてくださいね。" _timeline: description1: "Misskeyには、使い方に応じて複数のタイムラインが用意されています(サーバーによってはいずれかが無効になっていることがあります)。" diff --git a/packages/frontend/src/components/MkUserSetupDialog.NoteTutorial.vue b/packages/frontend/src/components/MkUserSetupDialog.NoteTutorial.vue index dc4f2d2fae..bf7df105d6 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.NoteTutorial.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.NoteTutorial.vue @@ -41,6 +41,10 @@ const props = defineProps<{ phase: 'aboutNote' | 'howToReact'; }>(); +const emit = defineEmits<{ + (ev: 'reacted'): void; +}>(); + const exampleNote = reactive({ id: '0000000000', createdAt: '2019-04-14T17:30:49.181Z', @@ -77,6 +81,7 @@ const onceReacted = ref(false); function addReaction(emoji) { onceReacted.value = true; + emit('reacted'); exampleNote.reactions[emoji] = 1; exampleNote.myReaction = emoji; } diff --git a/packages/frontend/src/components/MkUserSetupDialog.TimelineTutorial.vue b/packages/frontend/src/components/MkUserSetupDialog.TimelineTutorial.vue index 14fb135c3c..a9be4a5991 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.TimelineTutorial.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.TimelineTutorial.vue @@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only diff --git a/packages/frontend/src/components/MkUserSetupDialog.vue b/packages/frontend/src/components/MkUserSetupDialog.vue index 5f9ffc0a84..7fe14bff0b 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.vue @@ -122,8 +122,8 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts.goBack }} - {{ i18n.ts.continue }} + {{ i18n.ts.goBack }} + {{ i18n.ts.continue }}
@@ -131,12 +131,15 @@ SPDX-License-Identifier: AGPL-3.0-only