opt.: docker rm container -f & font setting item

This commit is contained in:
lollipopkit
2023-12-21 14:06:18 +08:00
parent 4a93b326db
commit e686387d88
15 changed files with 72 additions and 32 deletions

View File

@@ -608,6 +608,12 @@ abstract class S {
/// **'Font size'**
String get fontSize;
/// No description provided for @force.
///
/// In en, this message translates to:
/// **'Force'**
String get force;
/// No description provided for @foundNUpdate.
///
/// In en, this message translates to:

View File

@@ -273,6 +273,9 @@ class SDe extends S {
@override
String get fontSize => 'Schriftgröße';
@override
String get force => 'freiwillig';
@override
String foundNUpdate(Object count) {
return 'Update $count gefunden';

View File

@@ -273,6 +273,9 @@ class SEn extends S {
@override
String get fontSize => 'Font size';
@override
String get force => 'Force';
@override
String foundNUpdate(Object count) {
return 'Found $count update';

View File

@@ -273,6 +273,9 @@ class SId extends S {
@override
String get fontSize => 'Ukuran huruf';
@override
String get force => 'sukarela';
@override
String foundNUpdate(Object count) {
return 'Menemukan $count pembaruan';

View File

@@ -273,6 +273,9 @@ class SZh extends S {
@override
String get fontSize => '字体大小';
@override
String get force => '强制';
@override
String foundNUpdate(Object count) {
return '找到 $count 个更新';
@@ -1083,6 +1086,9 @@ class SZhTw extends SZh {
@override
String get fontSize => '字體大小';
@override
String get force => '強制';
@override
String foundNUpdate(Object count) {
return '找到 $count 個更新';