Skip to content

Commit 15503a5

Browse files
committed
l10n [nfc]: Rename localized string to recentDmConversationsButton
The page it used to represent no longer exists. Signed-off-by: Zixuan James Li <[email protected]>
1 parent 2f235b8 commit 15503a5

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

assets/l10n/app_en.arb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -533,9 +533,9 @@
533533
"@inboxButton": {
534534
"description": "Label for the menu button switching to inbox."
535535
},
536-
"recentDmConversationsPageTitle": "Direct messages",
537-
"@recentDmConversationsPageTitle": {
538-
"description": "Title for the page of recent DM conversations"
536+
"recentDmConversationsButton": "Direct messages",
537+
"@recentDmConversationsButton": {
538+
"description": "Label for the menu button switching to recent DM conversations."
539539
},
540540
"combinedFeedPageTitle": "Combined feed",
541541
"@combinedFeedPageTitle": {

lib/generated/l10n/zulip_localizations.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -805,11 +805,11 @@ abstract class ZulipLocalizations {
805805
/// **'Inbox'**
806806
String get inboxButton;
807807

808-
/// Title for the page of recent DM conversations
808+
/// Label for the menu button switching to recent DM conversations.
809809
///
810810
/// In en, this message translates to:
811811
/// **'Direct messages'**
812-
String get recentDmConversationsPageTitle;
812+
String get recentDmConversationsButton;
813813

814814
/// Title for the page of combined feed.
815815
///

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
423423
String get inboxButton => 'Inbox';
424424

425425
@override
426-
String get recentDmConversationsPageTitle => 'Direct messages';
426+
String get recentDmConversationsButton => 'Direct messages';
427427

428428
@override
429429
String get combinedFeedPageTitle => 'Combined feed';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
423423
String get inboxButton => 'Inbox';
424424

425425
@override
426-
String get recentDmConversationsPageTitle => 'Direct messages';
426+
String get recentDmConversationsButton => 'Direct messages';
427427

428428
@override
429429
String get combinedFeedPageTitle => 'Combined feed';

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
423423
String get inboxButton => 'Inbox';
424424

425425
@override
426-
String get recentDmConversationsPageTitle => 'Direct messages';
426+
String get recentDmConversationsButton => 'Direct messages';
427427

428428
@override
429429
String get combinedFeedPageTitle => 'Combined feed';

lib/widgets/home.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class _DirectMessagesButton extends _NavigationBarMenuButton {
393393

394394
@override
395395
String label(ZulipLocalizations zulipLocalizations) {
396-
return zulipLocalizations.recentDmConversationsPageTitle;
396+
return zulipLocalizations.recentDmConversationsButton;
397397
}
398398

399399
@override

0 commit comments

Comments
 (0)