new: setting of doubleColumn on Desktop

This commit is contained in:
lollipopkit
2023-09-07 18:54:35 +08:00
parent b55b8bf831
commit 03f9e88bad
13 changed files with 58 additions and 21 deletions

View File

@@ -416,6 +416,12 @@ abstract class S {
/// **'{count} container running.'**
String dockerStatusRunningFmt(Object count);
/// No description provided for @doubleColumnMode.
///
/// In en, this message translates to:
/// **'Double column mode'**
String get doubleColumnMode;
/// No description provided for @download.
///
/// In en, this message translates to:

View File

@@ -171,6 +171,9 @@ class SDe extends S {
return '$count Container aktiv';
}
@override
String get doubleColumnMode => 'Doppelspaltiger Modus';
@override
String get download => 'Download';

View File

@@ -171,6 +171,9 @@ class SEn extends S {
return '$count container running.';
}
@override
String get doubleColumnMode => 'Double column mode';
@override
String get download => 'Download';

View File

@@ -171,6 +171,9 @@ class SId extends S {
return '$count wadah berjalan.';
}
@override
String get doubleColumnMode => 'Mode kolom ganda';
@override
String get download => 'Unduh';

View File

@@ -171,6 +171,9 @@ class SZh extends S {
return '$count个容器正在运行';
}
@override
String get doubleColumnMode => '双列模式';
@override
String get download => '下载';
@@ -897,6 +900,9 @@ class SZhTw extends SZh {
return '$count個容器正在運行';
}
@override
String get doubleColumnMode => '雙列模式';
@override
String get download => '下載';