@@ -652,6 +652,78 @@ abstract class ZulipLocalizations {
652
652
/// **'Take a photo'**
653
653
String get composeBoxAttachFromCameraTooltip;
654
654
655
+ /// Tooltip for compose box icon to show a list of saved snippets.
656
+ ///
657
+ /// In en, this message translates to:
658
+ /// **'Show saved snippets'**
659
+ String get composeBoxShowSavedSnippetsTooltip;
660
+
661
+ /// Text to show on the saved snippets bottom sheet when there are no saved snippets.
662
+ ///
663
+ /// In en, this message translates to:
664
+ /// **'No saved snippets'**
665
+ String get noSavedSnippets;
666
+
667
+ /// Title for the bottom sheet to display saved snippets.
668
+ ///
669
+ /// In en, this message translates to:
670
+ /// **'Saved snippets'**
671
+ String get savedSnippetsTitle;
672
+
673
+ /// Label for adding a new saved snippet.
674
+ ///
675
+ /// In en, this message translates to:
676
+ /// **'New'**
677
+ String get newSavedSnippetButton;
678
+
679
+ /// Title for the bottom sheet to add a new saved snippet.
680
+ ///
681
+ /// In en, this message translates to:
682
+ /// **'New snippet'**
683
+ String get newSavedSnippetTitle;
684
+
685
+ /// Hint text for the title input when adding a new saved snippet.
686
+ ///
687
+ /// In en, this message translates to:
688
+ /// **'Title'**
689
+ String get newSavedSnippetTitleHint;
690
+
691
+ /// Hint text for the content input when adding a new saved snippet.
692
+ ///
693
+ /// In en, this message translates to:
694
+ /// **'Content'**
695
+ String get newSavedSnippetContentHint;
696
+
697
+ /// Error title when the saved snippet failed to be created.
698
+ ///
699
+ /// In en, this message translates to:
700
+ /// **'Failed to create saved snippet'**
701
+ String get errorFailedToCreateSavedSnippetTitle;
702
+
703
+ /// Validation error message when the title of the saved snippet is empty.
704
+ ///
705
+ /// In en, this message translates to:
706
+ /// **'Title cannot be empty.'**
707
+ String get savedSnippetTitleValidationErrorEmpty;
708
+
709
+ /// Validation error message when the title of the saved snippet is too long.
710
+ ///
711
+ /// In en, this message translates to:
712
+ /// **'Title length shouldn\'t be greater than 60 characters.'**
713
+ String get savedSnippetTitleValidationErrorTooLong;
714
+
715
+ /// Validation error message when the content of the saved snippet is empty.
716
+ ///
717
+ /// In en, this message translates to:
718
+ /// **'Content cannot be empty.'**
719
+ String get savedSnippetContentValidationErrorEmpty;
720
+
721
+ /// Validation error message when the content of the saved snippet is too long.
722
+ ///
723
+ /// In en, this message translates to:
724
+ /// **'Content length shouldn\'t be greater than 10000 characters.'**
725
+ String get savedSnippetContentValidationErrorTooLong;
726
+
655
727
/// Hint text for content input when sending a message.
656
728
///
657
729
/// In en, this message translates to:
0 commit comments