apply font to ssh term

This commit is contained in:
lollipopkit
2023-03-21 14:12:44 +08:00
parent 27e7653587
commit 43e32775a3
19 changed files with 179 additions and 51 deletions

View File

@@ -411,6 +411,12 @@ abstract class S {
/// **'Extra args'**
String get extraArgs;
/// No description provided for @failed.
///
/// In en, this message translates to:
/// **'Failed'**
String get failed;
/// No description provided for @feedback.
///
/// In en, this message translates to:
@@ -639,6 +645,12 @@ abstract class S {
/// **'Name'**
String get name;
/// No description provided for @needRestart.
///
/// In en, this message translates to:
/// **'Need to restart app'**
String get needRestart;
/// No description provided for @newContainer.
///
/// In en, this message translates to:
@@ -687,6 +699,12 @@ abstract class S {
/// **'No update available'**
String get noUpdateAvailable;
/// No description provided for @notSelected.
///
/// In en, this message translates to:
/// **'Not selected'**
String get notSelected;
/// No description provided for @nullToken.
///
/// In en, this message translates to:
@@ -819,6 +837,12 @@ abstract class S {
/// **'Please report bugs on {url}'**
String reportBugsOnGithubIssue(Object url);
/// No description provided for @restart.
///
/// In en, this message translates to:
/// **'Restart'**
String get restart;
/// No description provided for @restore.
///
/// In en, this message translates to:
@@ -1112,12 +1136,6 @@ 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> {