fix(frontend): tweak deck onboarding
This commit is contained in:
parent
3a028abea5
commit
888e04ce82
|
@ -10142,7 +10142,7 @@ export interface Locale extends ILocale {
|
||||||
*/
|
*/
|
||||||
"introduction": string;
|
"introduction": string;
|
||||||
/**
|
/**
|
||||||
* 画面の右にある + を押して、いつでもカラムを追加できます。
|
* カラムを追加するには、画面の + をクリックします。
|
||||||
*/
|
*/
|
||||||
"introduction2": string;
|
"introduction2": string;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2681,7 +2681,7 @@ _deck:
|
||||||
newProfile: "新規プロファイル"
|
newProfile: "新規プロファイル"
|
||||||
deleteProfile: "プロファイルを削除"
|
deleteProfile: "プロファイルを削除"
|
||||||
introduction: "カラムを組み合わせて自分だけのインターフェイスを作りましょう!"
|
introduction: "カラムを組み合わせて自分だけのインターフェイスを作りましょう!"
|
||||||
introduction2: "画面の右にある + を押して、いつでもカラムを追加できます。"
|
introduction2: "カラムを追加するには、画面の + をクリックします。"
|
||||||
widgetsIntroduction: "カラムのメニューから、「ウィジェットの編集」を選択してウィジェットを追加してください"
|
widgetsIntroduction: "カラムのメニューから、「ウィジェットの編集」を選択してウィジェットを追加してください"
|
||||||
useSimpleUiForNonRootPages: "非ルートページは簡易UIで表示"
|
useSimpleUiForNonRootPages: "非ルートページは簡易UIで表示"
|
||||||
usedAsMinWidthWhenFlexible: "「幅を自動調整」が有効の場合、これが幅の最小値となります"
|
usedAsMinWidthWhenFlexible: "「幅を自動調整」が有効の場合、これが幅の最小値となります"
|
||||||
|
|
|
@ -35,7 +35,6 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</section>
|
</section>
|
||||||
<div v-if="layout.length === 0" class="_panel" :class="$style.onboarding">
|
<div v-if="layout.length === 0" class="_panel" :class="$style.onboarding">
|
||||||
<div>{{ i18n.ts._deck.introduction }}</div>
|
<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>{{ i18n.ts._deck.introduction2 }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue