#15 support: select font

This commit is contained in:
lollipopkit
2023-03-21 13:15:36 +08:00
parent 89050daf4e
commit 27e7653587
16 changed files with 101 additions and 42 deletions

View File

@@ -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> {

View File

@@ -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';
}

View File

@@ -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 => '未选择';
}