Skip to content

Commit 4a2bccc

Browse files
committed
Merge remote-tracking branch 'pr/1453'
2 parents 23a3cf1 + 176477d commit 4a2bccc

26 files changed

+2076
-140
lines changed

assets/l10n/app_en.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,10 @@
864864
"@messageIsMovedLabel": {
865865
"description": "Label for a moved message. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)"
866866
},
867+
"messageIsntSentLabel": "MESSAGE ISN'T SENT. CHECK YOUR CONNECTION.",
868+
"@messageIsntSentLabel": {
869+
"description": "Label for a message that isn't sent. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)"
870+
},
867871
"pollVoterNames": "({voterNames})",
868872
"@pollVoterNames": {
869873
"description": "The list of people who voted for a poll option, wrapped in parentheses.",

lib/generated/l10n/zulip_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,6 +1274,12 @@ abstract class ZulipLocalizations {
12741274
/// **'MOVED'**
12751275
String get messageIsMovedLabel;
12761276

1277+
/// Label for a message that isn't sent. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)
1278+
///
1279+
/// In en, this message translates to:
1280+
/// **'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.'**
1281+
String get messageIsntSentLabel;
1282+
12771283
/// The list of people who voted for a poll option, wrapped in parentheses.
12781284
///
12791285
/// In en, this message translates to:

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,10 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
704704
@override
705705
String get messageIsMovedLabel => 'MOVED';
706706

707+
@override
708+
String get messageIsntSentLabel =>
709+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
710+
707711
@override
708712
String pollVoterNames(String voterNames) {
709713
return '($voterNames)';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,10 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
704704
@override
705705
String get messageIsMovedLabel => 'MOVED';
706706

707+
@override
708+
String get messageIsntSentLabel =>
709+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
710+
707711
@override
708712
String pollVoterNames(String voterNames) {
709713
return '($voterNames)';

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,10 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
704704
@override
705705
String get messageIsMovedLabel => 'MOVED';
706706

707+
@override
708+
String get messageIsntSentLabel =>
709+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
710+
707711
@override
708712
String pollVoterNames(String voterNames) {
709713
return '($voterNames)';

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,10 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
704704
@override
705705
String get messageIsMovedLabel => 'MOVED';
706706

707+
@override
708+
String get messageIsntSentLabel =>
709+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
710+
707711
@override
708712
String pollVoterNames(String voterNames) {
709713
return '($voterNames)';

lib/generated/l10n/zulip_localizations_pl.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,10 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
713713
@override
714714
String get messageIsMovedLabel => 'PRZENIESIONO';
715715

716+
@override
717+
String get messageIsntSentLabel =>
718+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
719+
716720
@override
717721
String pollVoterNames(String voterNames) {
718722
return '($voterNames)';

lib/generated/l10n/zulip_localizations_ru.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,10 @@ class ZulipLocalizationsRu extends ZulipLocalizations {
717717
@override
718718
String get messageIsMovedLabel => 'ПЕРЕМЕЩЕНО';
719719

720+
@override
721+
String get messageIsntSentLabel =>
722+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
723+
720724
@override
721725
String pollVoterNames(String voterNames) {
722726
return '($voterNames)';

lib/generated/l10n/zulip_localizations_sk.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,10 @@ class ZulipLocalizationsSk extends ZulipLocalizations {
706706
@override
707707
String get messageIsMovedLabel => 'PRESUNUTÉ';
708708

709+
@override
710+
String get messageIsntSentLabel =>
711+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
712+
709713
@override
710714
String pollVoterNames(String voterNames) {
711715
return '($voterNames)';

lib/generated/l10n/zulip_localizations_uk.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -716,6 +716,10 @@ class ZulipLocalizationsUk extends ZulipLocalizations {
716716
@override
717717
String get messageIsMovedLabel => 'ПЕРЕМІЩЕНО';
718718

719+
@override
720+
String get messageIsntSentLabel =>
721+
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';
722+
719723
@override
720724
String pollVoterNames(String voterNames) {
721725
return '($voterNames)';

0 commit comments

Comments
 (0)