From 7cf963eec243e512e5db716467bb27e549cf46aa Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 28 Apr 2023 08:54:20 +0200 Subject: [PATCH] Change label from "For you" to "People" on explore screen in web UI (#24706) --- app/javascript/mastodon/features/explore/index.jsx | 13 ++++++++----- .../mastodon/locales/defaultMessages.json | 8 ++++---- app/javascript/mastodon/locales/en.json | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/app/javascript/mastodon/features/explore/index.jsx b/app/javascript/mastodon/features/explore/index.jsx index 939550d8337..35626226ecd 100644 --- a/app/javascript/mastodon/features/explore/index.jsx +++ b/app/javascript/mastodon/features/explore/index.jsx @@ -71,17 +71,20 @@ class Explore extends React.PureComponent { + + + {signedIn && ( + + + + )} + - {signedIn && ( - - - - )} diff --git a/app/javascript/mastodon/locales/defaultMessages.json b/app/javascript/mastodon/locales/defaultMessages.json index ca38088c646..b910f2a8592 100644 --- a/app/javascript/mastodon/locales/defaultMessages.json +++ b/app/javascript/mastodon/locales/defaultMessages.json @@ -2073,12 +2073,12 @@ "id": "explore.trending_tags" }, { - "defaultMessage": "News", - "id": "explore.trending_links" + "defaultMessage": "People", + "id": "explore.suggested_follows" }, { - "defaultMessage": "For you", - "id": "explore.suggested_follows" + "defaultMessage": "News", + "id": "explore.trending_links" } ], "path": "app/javascript/mastodon/features/explore/index.json" diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index 177155497f9..0220f67ebee 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -240,7 +240,7 @@ "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard", "errors.unexpected_crash.report_issue": "Report issue", "explore.search_results": "Search results", - "explore.suggested_follows": "For you", + "explore.suggested_follows": "People", "explore.title": "Explore", "explore.trending_links": "News", "explore.trending_statuses": "Posts",