@@ -193,6 +193,30 @@ abstract class ZulipLocalizations {
193
193
/// **'To upload files, please grant Zulip additional permissions in Settings.'**
194
194
String get permissionsDeniedReadExternalStorage;
195
195
196
+ /// Label for muting a topic on action sheet.
197
+ ///
198
+ /// In en, this message translates to:
199
+ /// **'Mute topic'**
200
+ String get actionSheetOptionMuteTopic;
201
+
202
+ /// Label for unmuting a topic on action sheet.
203
+ ///
204
+ /// In en, this message translates to:
205
+ /// **'Unmute topic'**
206
+ String get actionSheetOptionUnmuteTopic;
207
+
208
+ /// Label for following a topic on action sheet.
209
+ ///
210
+ /// In en, this message translates to:
211
+ /// **'Follow topic'**
212
+ String get actionSheetOptionFollowTopic;
213
+
214
+ /// Label for unfollowing a topic on action sheet.
215
+ ///
216
+ /// In en, this message translates to:
217
+ /// **'Unfollow topic'**
218
+ String get actionSheetOptionUnfollowTopic;
219
+
196
220
/// Label for copy message text button on action sheet.
197
221
///
198
222
/// In en, this message translates to:
@@ -361,6 +385,30 @@ abstract class ZulipLocalizations {
361
385
/// **'Error handling a Zulip event from {serverUrl}; will retry.\n\nError: {error}\n\nEvent: {event}'**
362
386
String errorHandlingEventDetails (String serverUrl, String error, String event);
363
387
388
+ /// Error message when muting a topic failed.
389
+ ///
390
+ /// In en, this message translates to:
391
+ /// **'Failed to mute topic'**
392
+ String get errorMuteTopicFailed;
393
+
394
+ /// Error message when unmuting a topic failed.
395
+ ///
396
+ /// In en, this message translates to:
397
+ /// **'Failed to unmute topic'**
398
+ String get errorUnmuteTopicFailed;
399
+
400
+ /// Error message when following a topic failed.
401
+ ///
402
+ /// In en, this message translates to:
403
+ /// **'Failed to follow topic'**
404
+ String get errorFollowTopicFailed;
405
+
406
+ /// Error message when unfollowing a topic failed.
407
+ ///
408
+ /// In en, this message translates to:
409
+ /// **'Failed to unfollow topic'**
410
+ String get errorUnfollowTopicFailed;
411
+
364
412
/// Error message when sharing a message failed.
365
413
///
366
414
/// In en, this message translates to:
0 commit comments