mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
#15 support: select font
This commit is contained in:
@@ -189,6 +189,12 @@ abstract class S {
|
||||
/// **'Choose destination'**
|
||||
String get chooseDestination;
|
||||
|
||||
/// No description provided for @chooseFontFile.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Choose a font file'**
|
||||
String get chooseFontFile;
|
||||
|
||||
/// No description provided for @choosePrivateKey.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
@@ -1106,6 +1112,12 @@ abstract class S {
|
||||
/// In en, this message translates to:
|
||||
/// **'Will take effect immediately'**
|
||||
String get willTakEeffectImmediately;
|
||||
|
||||
/// No description provided for @notSelected.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Not selected'**
|
||||
String get notSelected;
|
||||
}
|
||||
|
||||
class _SDelegate extends LocalizationsDelegate<S> {
|
||||
|
||||
@@ -52,6 +52,9 @@ class SEn extends S {
|
||||
@override
|
||||
String get chooseDestination => 'Choose destination';
|
||||
|
||||
@override
|
||||
String get chooseFontFile => 'Choose a font file';
|
||||
|
||||
@override
|
||||
String get choosePrivateKey => 'Choose private key';
|
||||
|
||||
@@ -554,4 +557,7 @@ class SEn extends S {
|
||||
|
||||
@override
|
||||
String get willTakEeffectImmediately => 'Will take effect immediately';
|
||||
|
||||
@override
|
||||
String get notSelected => 'Not selected';
|
||||
}
|
||||
|
||||
@@ -52,6 +52,9 @@ class SZh extends S {
|
||||
@override
|
||||
String get chooseDestination => '选择目标';
|
||||
|
||||
@override
|
||||
String get chooseFontFile => '选择字体文件';
|
||||
|
||||
@override
|
||||
String get choosePrivateKey => '选择私钥';
|
||||
|
||||
@@ -554,4 +557,7 @@ class SZh extends S {
|
||||
|
||||
@override
|
||||
String get willTakEeffectImmediately => '更改将会立即生效';
|
||||
|
||||
@override
|
||||
String get notSelected => '未选择';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user