feat: выделение текста в сообщении

This commit is contained in:
torvalds
2026-07-12 21:37:36 +07:00
parent cbc758b991
commit 53e549214e
8 changed files with 577 additions and 8 deletions
+1
View File
@@ -183,6 +183,7 @@
"registrationSubtitle": "Add your name and pick an avatar",
"registrationChooseAvatar": "Choose an avatar",
"msgActionsCopy": "Copy",
"msgActionsSelectAll": "Select all",
"emojiSearchHint": "Search emoji",
"msgActionsEdit": "Edit",
"msgActionsReply": "Reply",
+6
View File
@@ -1094,6 +1094,12 @@ abstract class AppLocalizations {
/// **'Copy'**
String get msgActionsCopy;
/// No description provided for @msgActionsSelectAll.
///
/// In en, this message translates to:
/// **'Select all'**
String get msgActionsSelectAll;
/// No description provided for @emojiSearchHint.
///
/// In en, this message translates to:
+3
View File
@@ -524,6 +524,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get msgActionsCopy => 'Copy';
@override
String get msgActionsSelectAll => 'Select all';
@override
String get emojiSearchHint => 'Search emoji';
+3
View File
@@ -527,6 +527,9 @@ class AppLocalizationsRu extends AppLocalizations {
@override
String get msgActionsCopy => 'Копировать';
@override
String get msgActionsSelectAll => 'Выбрать всё';
@override
String get emojiSearchHint => 'Поиск эмодзи';
+1
View File
@@ -183,6 +183,7 @@
"registrationSubtitle": "Укажите имя и выберите аватар",
"registrationChooseAvatar": "Выберите аватар",
"msgActionsCopy": "Копировать",
"msgActionsSelectAll": "Выбрать всё",
"emojiSearchHint": "Поиск эмодзи",
"msgActionsEdit": "Изменить",
"msgActionsReply": "Ответить",