Skip to content

local echo (7/7): Support simplified version of local echo #1453

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
4 changes: 4 additions & 0 deletions assets/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,10 @@
"@messageIsMovedLabel": {
"description": "Label for a moved message. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)"
},
"messageIsntSentLabel": "MESSAGE ISN'T SENT. CHECK YOUR CONNECTION.",
"@messageIsntSentLabel": {
"description": "Label for a message that isn't sent. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)"
},
"pollVoterNames": "({voterNames})",
"@pollVoterNames": {
"description": "The list of people who voted for a poll option, wrapped in parentheses.",
Expand Down
6 changes: 6 additions & 0 deletions lib/generated/l10n/zulip_localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1190,6 +1190,12 @@ abstract class ZulipLocalizations {
/// **'MOVED'**
String get messageIsMovedLabel;

/// Label for a message that isn't sent. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)
///
/// In en, this message translates to:
/// **'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.'**
String get messageIsntSentLabel;

/// The list of people who voted for a poll option, wrapped in parentheses.
///
/// In en, this message translates to:
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_ar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,10 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'MOVED';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,10 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'MOVED';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_ja.dart
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,10 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'MOVED';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_nb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,10 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'MOVED';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_pl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,10 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'PRZENIESIONO';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_ru.dart
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,10 @@ class ZulipLocalizationsRu extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'ПЕРЕМЕЩЕНО';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_sk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,10 @@ class ZulipLocalizationsSk extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'PRESUNUTÉ';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
4 changes: 4 additions & 0 deletions lib/generated/l10n/zulip_localizations_uk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,10 @@ class ZulipLocalizationsUk extends ZulipLocalizations {
@override
String get messageIsMovedLabel => 'ПЕРЕМІЩЕНО';

@override
String get messageIsntSentLabel =>
'MESSAGE ISN\'T SENT. CHECK YOUR CONNECTION.';

@override
String pollVoterNames(String voterNames) {
return '($voterNames)';
Expand Down
Loading