summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--locales/index.d.ts2
-rw-r--r--locales/ja-JP.yml2
-rw-r--r--packages/frontend/src/ui/deck.vue1
3 files changed, 2 insertions, 3 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 3645639305..bb1b598e51 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -10142,7 +10142,7 @@ export interface Locale extends ILocale {
*/
"introduction": string;
/**
- * 画面の右にある + を押して、いつでもカラムを追加できます。
+ * カラムを追加するには、画面の + をクリックします。
*/
"introduction2": string;
/**
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 0e20001d6b..4a8af14ee2 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -2681,7 +2681,7 @@ _deck:
newProfile: "新規プロファイル"
deleteProfile: "プロファイルを削除"
introduction: "カラムを組み合わせて自分だけのインターフェイスを作りましょう!"
- introduction2: "画面の右にある + を押して、いつでもカラムを追加できます。"
+ introduction2: "カラムを追加するには、画面の + をクリックします。"
widgetsIntroduction: "カラムのメニューから、「ウィジェットの編集」を選択してウィジェットを追加してください"
useSimpleUiForNonRootPages: "非ルートページは簡易UIで表示"
usedAsMinWidthWhenFlexible: "「幅を自動調整」が有効の場合、これが幅の最小値となります"
diff --git a/packages/frontend/src/ui/deck.vue b/packages/frontend/src/ui/deck.vue
index 05c815f28f..185af5e788 100644
--- a/packages/frontend/src/ui/deck.vue
+++ b/packages/frontend/src/ui/deck.vue
@@ -35,7 +35,6 @@ SPDX-License-Identifier: AGPL-3.0-only
</section>
<div v-if="layout.length === 0" class="_panel" :class="$style.onboarding">
<div>{{ i18n.ts._deck.introduction }}</div>
- <MkButton primary style="margin: 1em auto;" @click="addColumn">{{ i18n.ts._deck.addColumn }}</MkButton>
<div>{{ i18n.ts._deck.introduction2 }}</div>
</div>
</div>