opt.: settings

This commit is contained in:
lollipopkit
2023-08-16 15:11:22 +08:00
parent c62c8e2c43
commit 329922a836
19 changed files with 121 additions and 131 deletions

View File

@@ -1349,7 +1349,7 @@ abstract class S {
/// No description provided for @versionUnknownUpdate.
///
/// In en, this message translates to:
/// **'Current: v1.0.{build}'**
/// **'Current: v1.0.{build}, click to check updates'**
String versionUnknownUpdate(Object build);
/// No description provided for @versionUpdated.

View File

@@ -672,7 +672,7 @@ class SDe extends S {
@override
String versionUnknownUpdate(Object build) {
return 'Aktuell: v1.0.$build';
return 'Aktuell: v1.0.$build. Klicken Sie hier, um nach Updates zu suchen';
}
@override

View File

@@ -672,7 +672,7 @@ class SEn extends S {
@override
String versionUnknownUpdate(Object build) {
return 'Current: v1.0.$build';
return 'Current: v1.0.$build, click to check updates';
}
@override

View File

@@ -672,7 +672,7 @@ class SId extends S {
@override
String versionUnknownUpdate(Object build) {
return 'Saat ini: v1.0.$build';
return 'Saat ini: v1.0.$build. Klik untuk memeriksa pembaruan.';
}
@override

View File

@@ -672,7 +672,7 @@ class SZh extends S {
@override
String versionUnknownUpdate(Object build) {
return '当前v1.0.$build';
return '当前v1.0.$build,点击检查更新';
}
@override
@@ -1371,7 +1371,7 @@ class SZhTw extends SZh {
@override
String versionUnknownUpdate(Object build) {
return '當前v1.0.$build';
return '當前v1.0.$build,點擊檢查更新';
}
@override