Skip to content

Commit 7178325

Browse files
committed
Merge remote-tracking branch 'pr/1322'
2 parents 6020458 + 13a4acd commit 7178325

18 files changed

+1089
-46
lines changed

assets/icons/ZulipIcons.ttf

136 Bytes
Binary file not shown.

assets/icons/chevron_left.svg

Lines changed: 3 additions & 0 deletions
Loading

assets/l10n/app_en.arb

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,34 @@
401401
"@composeBoxGenericContentHint": {
402402
"description": "Hint text for content input when sending a message."
403403
},
404+
"newDmSheetBackButtonLabel": "Back",
405+
"@newDmSheetBackButtonLabel": {
406+
"description": "Label for the back button in the new DM sheet, allowing the user to return to the previous screen."
407+
},
408+
"newDmSheetNextButtonLabel": "Next",
409+
"@newDmSheetNextButtonLabel": {
410+
"description": "Label for the front button in the new DM sheet, if applicable, for navigation or action."
411+
},
412+
"newDmSheetScreenTitle": "New DM",
413+
"@newDmSheetScreenTitle": {
414+
"description": "Title displayed at the top of the new DM screen."
415+
},
416+
"newDmFabButtonLabel": "New DM",
417+
"@newDmFabButtonLabel": {
418+
"description": "Label for the floating action button (FAB) that opens the new DM sheet."
419+
},
420+
"newDmSheetSearchHintEmpty": "Add one or more users",
421+
"@newDmSheetSearchHintEmpty": {
422+
"description": "Hint text for the search bar when no users are selected"
423+
},
424+
"newDmSheetSearchHintSomeSelected": "Add another user…",
425+
"@newDmSheetSearchHintSomeSelected": {
426+
"description": "Hint text for the search bar when at least one user is selected"
427+
},
428+
"newDmSheetNoUsersFound": "No users found",
429+
"@newDmSheetNoUsersFound": {
430+
"description": "Message shown in the new DM sheet when no users match the search."
431+
},
404432
"composeBoxDmContentHint": "Message @{user}",
405433
"@composeBoxDmContentHint": {
406434
"description": "Hint text for content input when sending a message to one other person.",

lib/generated/l10n/zulip_localizations.dart

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,48 @@ abstract class ZulipLocalizations {
664664
/// **'Type a message'**
665665
String get composeBoxGenericContentHint;
666666

667+
/// Label for the back button in the new DM sheet, allowing the user to return to the previous screen.
668+
///
669+
/// In en, this message translates to:
670+
/// **'Back'**
671+
String get newDmSheetBackButtonLabel;
672+
673+
/// Label for the front button in the new DM sheet, if applicable, for navigation or action.
674+
///
675+
/// In en, this message translates to:
676+
/// **'Next'**
677+
String get newDmSheetNextButtonLabel;
678+
679+
/// Title displayed at the top of the new DM screen.
680+
///
681+
/// In en, this message translates to:
682+
/// **'New DM'**
683+
String get newDmSheetScreenTitle;
684+
685+
/// Label for the floating action button (FAB) that opens the new DM sheet.
686+
///
687+
/// In en, this message translates to:
688+
/// **'New DM'**
689+
String get newDmFabButtonLabel;
690+
691+
/// Hint text for the search bar when no users are selected
692+
///
693+
/// In en, this message translates to:
694+
/// **'Add one or more users'**
695+
String get newDmSheetSearchHintEmpty;
696+
697+
/// Hint text for the search bar when at least one user is selected
698+
///
699+
/// In en, this message translates to:
700+
/// **'Add another user…'**
701+
String get newDmSheetSearchHintSomeSelected;
702+
703+
/// Message shown in the new DM sheet when no users match the search.
704+
///
705+
/// In en, this message translates to:
706+
/// **'No users found'**
707+
String get newDmSheetNoUsersFound;
708+
667709
/// Hint text for content input when sending a message to one other person.
668710
///
669711
/// In en, this message translates to:

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,27 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
336336
@override
337337
String get composeBoxGenericContentHint => 'Type a message';
338338

339+
@override
340+
String get newDmSheetBackButtonLabel => 'Back';
341+
342+
@override
343+
String get newDmSheetNextButtonLabel => 'Next';
344+
345+
@override
346+
String get newDmSheetScreenTitle => 'New DM';
347+
348+
@override
349+
String get newDmFabButtonLabel => 'New DM';
350+
351+
@override
352+
String get newDmSheetSearchHintEmpty => 'Add one or more users';
353+
354+
@override
355+
String get newDmSheetSearchHintSomeSelected => 'Add another user…';
356+
357+
@override
358+
String get newDmSheetNoUsersFound => 'No users found';
359+
339360
@override
340361
String composeBoxDmContentHint(String user) {
341362
return 'Message @$user';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,27 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
336336
@override
337337
String get composeBoxGenericContentHint => 'Type a message';
338338

339+
@override
340+
String get newDmSheetBackButtonLabel => 'Back';
341+
342+
@override
343+
String get newDmSheetNextButtonLabel => 'Next';
344+
345+
@override
346+
String get newDmSheetScreenTitle => 'New DM';
347+
348+
@override
349+
String get newDmFabButtonLabel => 'New DM';
350+
351+
@override
352+
String get newDmSheetSearchHintEmpty => 'Add one or more users';
353+
354+
@override
355+
String get newDmSheetSearchHintSomeSelected => 'Add another user…';
356+
357+
@override
358+
String get newDmSheetNoUsersFound => 'No users found';
359+
339360
@override
340361
String composeBoxDmContentHint(String user) {
341362
return 'Message @$user';

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,27 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
336336
@override
337337
String get composeBoxGenericContentHint => 'Type a message';
338338

339+
@override
340+
String get newDmSheetBackButtonLabel => 'Back';
341+
342+
@override
343+
String get newDmSheetNextButtonLabel => 'Next';
344+
345+
@override
346+
String get newDmSheetScreenTitle => 'New DM';
347+
348+
@override
349+
String get newDmFabButtonLabel => 'New DM';
350+
351+
@override
352+
String get newDmSheetSearchHintEmpty => 'Add one or more users';
353+
354+
@override
355+
String get newDmSheetSearchHintSomeSelected => 'Add another user…';
356+
357+
@override
358+
String get newDmSheetNoUsersFound => 'No users found';
359+
339360
@override
340361
String composeBoxDmContentHint(String user) {
341362
return 'Message @$user';

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,27 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
336336
@override
337337
String get composeBoxGenericContentHint => 'Type a message';
338338

339+
@override
340+
String get newDmSheetBackButtonLabel => 'Back';
341+
342+
@override
343+
String get newDmSheetNextButtonLabel => 'Next';
344+
345+
@override
346+
String get newDmSheetScreenTitle => 'New DM';
347+
348+
@override
349+
String get newDmFabButtonLabel => 'New DM';
350+
351+
@override
352+
String get newDmSheetSearchHintEmpty => 'Add one or more users';
353+
354+
@override
355+
String get newDmSheetSearchHintSomeSelected => 'Add another user…';
356+
357+
@override
358+
String get newDmSheetNoUsersFound => 'No users found';
359+
339360
@override
340361
String composeBoxDmContentHint(String user) {
341362
return 'Message @$user';

lib/generated/l10n/zulip_localizations_pl.dart

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,27 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
343343
@override
344344
String get composeBoxGenericContentHint => 'Wpisz wiadomość';
345345

346+
@override
347+
String get newDmSheetBackButtonLabel => 'Back';
348+
349+
@override
350+
String get newDmSheetNextButtonLabel => 'Next';
351+
352+
@override
353+
String get newDmSheetScreenTitle => 'New DM';
354+
355+
@override
356+
String get newDmFabButtonLabel => 'New DM';
357+
358+
@override
359+
String get newDmSheetSearchHintEmpty => 'Add one or more users';
360+
361+
@override
362+
String get newDmSheetSearchHintSomeSelected => 'Add another user…';
363+
364+
@override
365+
String get newDmSheetNoUsersFound => 'No users found';
366+
346367
@override
347368
String composeBoxDmContentHint(String user) {
348369
return 'Napisz do @$user';

lib/generated/l10n/zulip_localizations_ru.dart

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,27 @@ class ZulipLocalizationsRu extends ZulipLocalizations {
344344
@override
345345
String get composeBoxGenericContentHint => 'Ввести сообщение';
346346

347+
@override
348+
String get newDmSheetBackButtonLabel => 'Back';
349+
350+
@override
351+
String get newDmSheetNextButtonLabel => 'Next';
352+
353+
@override
354+
String get newDmSheetScreenTitle => 'New DM';
355+
356+
@override
357+
String get newDmFabButtonLabel => 'New DM';
358+
359+
@override
360+
String get newDmSheetSearchHintEmpty => 'Add one or more users';
361+
362+
@override
363+
String get newDmSheetSearchHintSomeSelected => 'Add another user…';
364+
365+
@override
366+
String get newDmSheetNoUsersFound => 'No users found';
367+
347368
@override
348369
String composeBoxDmContentHint(String user) {
349370
return 'Сообщение для @$user';

0 commit comments

Comments
 (0)