Skip to content

Commit 0573d8e

Browse files
Lalit3716gnprice
authored andcommitted
ui: Rename "All messages" to "Combined feed"
Fixes: #634
1 parent 9b2a5f2 commit 0573d8e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

assets/l10n/app_en.arb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,9 @@
460460
"@recentDmConversationsPageTitle": {
461461
"description": "Title for the page of recent DM conversations"
462462
},
463-
"allMessagesPageTitle": "All messages",
464-
"@allMessagesPageTitle": {
465-
"description": "Title for the page of all messages"
463+
"combinedFeedPageTitle": "Combined feed",
464+
"@combinedFeedPageTitle": {
465+
"description": "Title for the page of combined feed."
466466
},
467467
"notifGroupDmConversationLabel": "{senderFullName} to you and {numOthers, plural, =1{1 other} other{{numOthers} others}}",
468468
"@notifGroupDmConversationLabel": {

lib/widgets/app.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ class HomePage extends StatelessWidget {
272272
onPressed: () => Navigator.push(context,
273273
MessageListPage.buildRoute(context: context,
274274
narrow: const AllMessagesNarrow())),
275-
child: Text(zulipLocalizations.allMessagesPageTitle)),
275+
child: Text(zulipLocalizations.combinedFeedPageTitle)),
276276
const SizedBox(height: 16),
277277
ElevatedButton(
278278
onPressed: () => Navigator.push(context,

lib/widgets/message_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class MessageListAppBarTitle extends StatelessWidget {
143143

144144
switch (narrow) {
145145
case AllMessagesNarrow():
146-
return Text(zulipLocalizations.allMessagesPageTitle);
146+
return Text(zulipLocalizations.combinedFeedPageTitle);
147147

148148
case StreamNarrow(:var streamId):
149149
final store = PerAccountStoreWidget.of(context);

0 commit comments

Comments
 (0)