mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 06:43:08 +02:00
(ad) translation for deck column settings (#11778)
This commit is contained in:
parent
1f7a81aae7
commit
e7d30c8eb4
3 changed files with 6 additions and 1 deletions
2
locales/index.d.ts
vendored
2
locales/index.d.ts
vendored
|
@ -2168,6 +2168,8 @@ export interface Locale {
|
|||
"introduction2": string;
|
||||
"widgetsIntroduction": string;
|
||||
"useSimpleUiForNonRootPages": string;
|
||||
"usedAsMinWidthWhenFlexible": string;
|
||||
"flexible": string;
|
||||
"_columns": {
|
||||
"main": string;
|
||||
"widgets": string;
|
||||
|
|
|
@ -2083,6 +2083,8 @@ _deck:
|
|||
introduction2: "画面の右にある + を押して、いつでもカラムを追加できます。"
|
||||
widgetsIntroduction: "カラムのメニューから、「ウィジェットの編集」を選択してウィジェットを追加してください"
|
||||
useSimpleUiForNonRootPages: "非ルートページは簡易UIで表示"
|
||||
usedAsMinWidthWhenFlexible: "「幅を自動調整」が有効の場合、これが幅の最小値となります"
|
||||
flexible: "幅を自動調整"
|
||||
|
||||
_columns:
|
||||
main: "メイン"
|
||||
|
|
|
@ -116,11 +116,12 @@ function getMenu() {
|
|||
width: {
|
||||
type: 'number',
|
||||
label: i18n.ts.width,
|
||||
description: i18n.ts._deck.usedAsMinWidthWhenFlexible,
|
||||
default: props.column.width,
|
||||
},
|
||||
flexible: {
|
||||
type: 'boolean',
|
||||
label: i18n.ts.flexible,
|
||||
label: i18n.ts._deck.flexible,
|
||||
default: props.column.flexible,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue