Skip to content

Commit

Permalink
ui: Rename "All messages" to "Combined feed"
Browse files Browse the repository at this point in the history
Fixes: #634
  • Loading branch information
Lalit3716 committed May 14, 2024
1 parent 423600d commit 6fbab88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions assets/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,9 @@
"@recentDmConversationsPageTitle": {
"description": "Title for the page of recent DM conversations"
},
"allMessagesPageTitle": "All messages",
"@allMessagesPageTitle": {
"description": "Title for the page of all messages"
"combinedFeedPageTitle": "Combined feed",
"@combinedFeedPageTitle": {
"description": "Title for the page of combined feed."
},
"notifGroupDmConversationLabel": "{senderFullName} to you and {numOthers, plural, =1{1 other} other{{numOthers} others}}",
"@notifGroupDmConversationLabel": {
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class HomePage extends StatelessWidget {
onPressed: () => Navigator.push(context,
MessageListPage.buildRoute(context: context,
narrow: const AllMessagesNarrow())),
child: Text(zulipLocalizations.allMessagesPageTitle)),
child: Text(zulipLocalizations.combinedFeedPageTitle)),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () => Navigator.push(context,
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/message_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class MessageListAppBarTitle extends StatelessWidget {

switch (narrow) {
case AllMessagesNarrow():
return Text(zulipLocalizations.allMessagesPageTitle);
return Text(zulipLocalizations.combinedFeedPageTitle);

case StreamNarrow(:var streamId):
final store = PerAccountStoreWidget.of(context);
Expand Down

0 comments on commit 6fbab88

Please sign in to comment.