#46 SSH term fontSize

This commit is contained in:
lollipopkit
2023-05-25 15:21:57 +08:00
parent 472599498e
commit 29683572b9
13 changed files with 82 additions and 16 deletions

View File

@@ -443,6 +443,12 @@ abstract class S {
/// **'Files'**
String get files;
/// No description provided for @fontSize.
///
/// In en, this message translates to:
/// **'Font size'**
String get fontSize;
/// No description provided for @foundNUpdate.
///
/// In en, this message translates to:

View File

@@ -192,6 +192,9 @@ class SDe extends S {
@override
String get files => 'Dateien';
@override
String get fontSize => 'Schriftgröße';
@override
String foundNUpdate(Object count) {
return 'Update $count gefunden';

View File

@@ -192,6 +192,9 @@ class SEn extends S {
@override
String get files => 'Files';
@override
String get fontSize => 'Font size';
@override
String foundNUpdate(Object count) {
return 'Found $count update';

View File

@@ -192,6 +192,9 @@ class SZh extends S {
@override
String get files => '文件';
@override
String get fontSize => '字体大小';
@override
String foundNUpdate(Object count) {
return '找到 $count 个更新';