Skip to content

Commit 2a8e064

Browse files
committed
action_sheet: Add 'View read receipts' button
1 parent 8a22228 commit 2a8e064

16 files changed

+65
-0
lines changed

assets/l10n/app_en.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@
167167
"num": {"type": "int", "example": "2"}
168168
}
169169
},
170+
"actionSheetOptionViewReadReceipts": "View read receipts",
171+
"@actionSheetOptionViewReadReceipts": {
172+
"description": "Label for the 'View read receipts' button in the message action sheet."
173+
},
170174
"actionSheetOptionCopyMessageText": "Copy message text",
171175
"@actionSheetOptionCopyMessageText": {
172176
"description": "Label for copy message text button on action sheet."

lib/generated/l10n/zulip_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,12 @@ abstract class ZulipLocalizations {
365365
/// **'Votes for {emojiName} ({num})'**
366366
String seeWhoReactedSheetUserListLabel(String emojiName, int num);
367367

368+
/// Label for the 'View read receipts' button in the message action sheet.
369+
///
370+
/// In en, this message translates to:
371+
/// **'View read receipts'**
372+
String get actionSheetOptionViewReadReceipts;
373+
368374
/// Label for copy message text button on action sheet.
369375
///
370376
/// In en, this message translates to:

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
145145
return 'Votes for $emojiName ($num)';
146146
}
147147

148+
@override
149+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
150+
148151
@override
149152
String get actionSheetOptionCopyMessageText => 'Copy message text';
150153

lib/generated/l10n/zulip_localizations_de.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ class ZulipLocalizationsDe extends ZulipLocalizations {
148148
return 'Votes for $emojiName ($num)';
149149
}
150150

151+
@override
152+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
153+
151154
@override
152155
String get actionSheetOptionCopyMessageText => 'Nachrichtentext kopieren';
153156

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
145145
return 'Votes for $emojiName ($num)';
146146
}
147147

148+
@override
149+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
150+
148151
@override
149152
String get actionSheetOptionCopyMessageText => 'Copy message text';
150153

lib/generated/l10n/zulip_localizations_fr.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ class ZulipLocalizationsFr extends ZulipLocalizations {
145145
return 'Votes for $emojiName ($num)';
146146
}
147147

148+
@override
149+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
150+
148151
@override
149152
String get actionSheetOptionCopyMessageText => 'Copy message text';
150153

lib/generated/l10n/zulip_localizations_it.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ class ZulipLocalizationsIt extends ZulipLocalizations {
147147
return 'Votes for $emojiName ($num)';
148148
}
149149

150+
@override
151+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
152+
150153
@override
151154
String get actionSheetOptionCopyMessageText => 'Copia il testo del messaggio';
152155

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
143143
return 'Votes for $emojiName ($num)';
144144
}
145145

146+
@override
147+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
148+
146149
@override
147150
String get actionSheetOptionCopyMessageText => 'メッセージ本文をコピー';
148151

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
145145
return 'Votes for $emojiName ($num)';
146146
}
147147

148+
@override
149+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
150+
148151
@override
149152
String get actionSheetOptionCopyMessageText => 'Copy message text';
150153

lib/generated/l10n/zulip_localizations_pl.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
148148
return 'Votes for $emojiName ($num)';
149149
}
150150

151+
@override
152+
String get actionSheetOptionViewReadReceipts => 'View read receipts';
153+
151154
@override
152155
String get actionSheetOptionCopyMessageText => 'Skopiuj tekst wiadomości';
153156

0 commit comments

Comments
 (0)