@@ -237,6 +237,60 @@ abstract class ZulipLocalizations {
237
237
/// **'Unfollow topic'**
238
238
String get actionSheetOptionUnfollowTopic;
239
239
240
+ /// Label for the 'Mark as resolved' button on the topic action sheet.
241
+ ///
242
+ /// In en, this message translates to:
243
+ /// **'Mark as resolved'**
244
+ String get actionSheetOptionResolveTopic;
245
+
246
+ /// Label for the 'Mark as unresolved' button on the topic action sheet.
247
+ ///
248
+ /// In en, this message translates to:
249
+ /// **'Mark as unresolved'**
250
+ String get actionSheetOptionUnresolveTopic;
251
+
252
+ /// Error title when trying to 'Mark as resolved' and the app decides not to continue.
253
+ ///
254
+ /// In en, this message translates to:
255
+ /// **'Problem marking topic as resolved'**
256
+ String get resolveTopicInterruptedTitle;
257
+
258
+ /// Error title when trying to 'Mark as unresolved' and the app decides not to continue.
259
+ ///
260
+ /// In en, this message translates to:
261
+ /// **'Problem marking topic as unresolved'**
262
+ String get unresolveTopicInterruptedTitle;
263
+
264
+ /// Error message when trying to 'Mark as resolved' a topic that was already marked by someone else.
265
+ ///
266
+ /// In en, this message translates to:
267
+ /// **'This topic is already marked as resolved.'**
268
+ String get topicAlreadyResolvedMessage;
269
+
270
+ /// Error message when trying to 'Mark as unresolved' a topic that was already marked by someone else.
271
+ ///
272
+ /// In en, this message translates to:
273
+ /// **'This topic is already marked as unresolved.'**
274
+ String get topicAlreadyUnresolvedMessage;
275
+
276
+ /// Error message when trying to 'Mark as resolved' or 'Mark as unresolved' a topic that was renamed by someone else.
277
+ ///
278
+ /// In en, this message translates to:
279
+ /// **'This topic has been renamed.'**
280
+ String get topicRenamedMessage;
281
+
282
+ /// Error title when marking a topic as resolved failed.
283
+ ///
284
+ /// In en, this message translates to:
285
+ /// **'Failed to mark topic as resolved'**
286
+ String get errorResolveTopicFailedTitle;
287
+
288
+ /// Error title when marking a topic as unresolved failed.
289
+ ///
290
+ /// In en, this message translates to:
291
+ /// **'Failed to mark topic as unresolved'**
292
+ String get errorUnresolveTopicFailedTitle;
293
+
240
294
/// Label for copy message text button on action sheet.
241
295
///
242
296
/// In en, this message translates to:
0 commit comments