fix: redundant punctuation in some languages

This commit is contained in:
PaperCube
2024-02-13 01:55:15 +00:00
parent c796cf4009
commit b2b5c21cf0
12 changed files with 20 additions and 20 deletions

View File

@@ -163,7 +163,7 @@ abstract class S {
/// No description provided for @askContinue.
///
/// In en, this message translates to:
/// **'{msg}, continue?'**
/// **'{msg}. Continue?'**
String askContinue(Object msg);
/// No description provided for @attention.
@@ -1621,7 +1621,7 @@ abstract class S {
/// No description provided for @useNoPwd.
///
/// In en, this message translates to:
/// **'No password will be used.'**
/// **'No password will be used'**
String get useNoPwd;
/// No description provided for @used.

View File

@@ -36,7 +36,7 @@ class SDe extends S {
@override
String askContinue(Object msg) {
return '$msg, weiter?';
return '$msg. Weiter?';
}
@override
@@ -800,7 +800,7 @@ class SDe extends S {
String get urlOrJson => 'URL oder JSON';
@override
String get useNoPwd => 'Es wird kein Passwort verwendet.';
String get useNoPwd => 'Es wird kein Passwort verwendet';
@override
String get used => 'Gebraucht';

View File

@@ -36,7 +36,7 @@ class SEn extends S {
@override
String askContinue(Object msg) {
return '$msg, continue?';
return '$msg. Continue?';
}
@override
@@ -800,7 +800,7 @@ class SEn extends S {
String get urlOrJson => 'URL or JSON';
@override
String get useNoPwd => 'No password will be used.';
String get useNoPwd => 'No password will be used';
@override
String get used => 'Used';

View File

@@ -36,7 +36,7 @@ class SFr extends S {
@override
String askContinue(Object msg) {
return '$msg, continuer?';
return '$msg. Continuer?';
}
@override
@@ -800,7 +800,7 @@ class SFr extends S {
String get urlOrJson => 'URL ou JSON';
@override
String get useNoPwd => 'Aucun mot de passe ne sera utilisé.';
String get useNoPwd => 'Aucun mot de passe ne sera utilisé';
@override
String get used => 'Utilisé';

View File

@@ -800,7 +800,7 @@ class SId extends S {
String get urlOrJson => 'URL atau JSON';
@override
String get useNoPwd => 'Tidak ada kata sandi yang akan digunakan.';
String get useNoPwd => 'Tidak ada kata sandi yang akan digunakan';
@override
String get used => 'Digunakan';

View File

@@ -800,7 +800,7 @@ class SZh extends S {
String get urlOrJson => '链接或JSON';
@override
String get useNoPwd => '将会使用无密码';
String get useNoPwd => '将会使用无密码';
@override
String get used => '已用';
@@ -1651,7 +1651,7 @@ class SZhTw extends SZh {
String get urlOrJson => '鏈接或JSON';
@override
String get useNoPwd => '将使用無密碼';
String get useNoPwd => '将使用無密碼';
@override
String get used => '已用';