Update popup menu

Add file editor

Fix android service issues

Optimize desktop background performance

Optimize android main process performance

Optimize delay test

Optimize vpn protect
This commit is contained in:
chen08209
2025-01-13 19:08:17 +08:00
parent 6a39b7ef5a
commit b340feeb49
92 changed files with 4000 additions and 3081 deletions

View File

@@ -3399,6 +3399,86 @@ class AppLocalizations {
args: [],
);
}
/// `Cancel`
String get cancel {
return Intl.message(
'Cancel',
name: 'cancel',
desc: '',
args: [],
);
}
/// `The file has been modified. Do you want to save the changes?`
String get fileIsUpdate {
return Intl.message(
'The file has been modified. Do you want to save the changes?',
name: 'fileIsUpdate',
desc: '',
args: [],
);
}
/// `The profile has been modified. Do you want to disable auto update?`
String get profileHasUpdate {
return Intl.message(
'The profile has been modified. Do you want to disable auto update?',
name: 'profileHasUpdate',
desc: '',
args: [],
);
}
/// `Do you want to cache the changes?`
String get hasCacheChange {
return Intl.message(
'Do you want to cache the changes?',
name: 'hasCacheChange',
desc: '',
args: [],
);
}
/// `No proxies`
String get nullProxies {
return Intl.message(
'No proxies',
name: 'nullProxies',
desc: '',
args: [],
);
}
/// `Copy success`
String get copySuccess {
return Intl.message(
'Copy success',
name: 'copySuccess',
desc: '',
args: [],
);
}
/// `Copy link`
String get copyLink {
return Intl.message(
'Copy link',
name: 'copyLink',
desc: '',
args: [],
);
}
/// `Export file`
String get exportFile {
return Intl.message(
'Export file',
name: 'exportFile',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<AppLocalizations> {