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:
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user