#22 Add switch for run in bg

This commit is contained in:
lollipopkit
2023-03-28 17:35:49 +08:00
parent abee470afc
commit 30dddf462e
12 changed files with 71 additions and 23 deletions

View File

@@ -177,6 +177,12 @@ abstract class S {
/// **'Backup version is not match.'**
String get backupVersionNotMatch;
/// No description provided for @bgRun.
///
/// In en, this message translates to:
/// **'Run in backgroud'**
String get bgRun;
/// No description provided for @cancel.
///
/// In en, this message translates to:

View File

@@ -46,6 +46,9 @@ class SEn extends S {
@override
String get backupVersionNotMatch => 'Backup version is not match.';
@override
String get bgRun => 'Run in backgroud';
@override
String get cancel => 'Cancel';

View File

@@ -46,6 +46,9 @@ class SZh extends S {
@override
String get backupVersionNotMatch => '备份版本不匹配,无法恢复';
@override
String get bgRun => '后台运行';
@override
String get cancel => '取消';