diff options
author | mayaeh <mayaeh@marimo-net.org> | 2022-03-13 12:51:09 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-13 04:51:09 +0100 |
commit | e52085246f86809ec32f3edc5be226ce15b03457 (patch) | |
tree | 7a836287eaea65dca108738a7b3aa4f133486e74 /app | |
parent | 92a86b958ee7b96dbcbc17237dfcb1af0f15740c (diff) |
Add menu column of explore to getting-started (#17755)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/getting_started/index.js | 4 | ||||
-rw-r--r-- | app/javascript/mastodon/locales/defaultMessages.json | 4 | ||||
-rw-r--r-- | app/javascript/mastodon/locales/en.json | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js index 07572c530..2b17f667f 100644 --- a/app/javascript/mastodon/features/getting_started/index.js +++ b/app/javascript/mastodon/features/getting_started/index.js @@ -21,6 +21,7 @@ const messages = defineMessages({ public_timeline: { id: 'navigation_bar.public_timeline', defaultMessage: 'Federated timeline' }, settings_subheading: { id: 'column_subheading.settings', defaultMessage: 'Settings' }, community_timeline: { id: 'navigation_bar.community_timeline', defaultMessage: 'Local timeline' }, + explore: { id: 'navigation_bar.explore', defaultMessage: 'Explore' }, direct: { id: 'navigation_bar.direct', defaultMessage: 'Direct messages' }, bookmarks: { id: 'navigation_bar.bookmarks', defaultMessage: 'Bookmarks' }, preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' }, @@ -99,9 +100,10 @@ class GettingStarted extends ImmutablePureComponent { <ColumnSubheading key='header-discover' text={intl.formatMessage(messages.discover)} />, <ColumnLink key='community_timeline' icon='users' text={intl.formatMessage(messages.community_timeline)} to='/public/local' />, <ColumnLink key='public_timeline' icon='globe' text={intl.formatMessage(messages.public_timeline)} to='/public' />, + <ColumnLink key='explore' icon='globe' text={intl.formatMessage(messages.explore)} to='/explore' />, ); - height += 34 + 48*2; + height += 34 + 48*3; navItems.push( <ColumnSubheading key='header-personal' text={intl.formatMessage(messages.personal)} />, diff --git a/app/javascript/mastodon/locales/defaultMessages.json b/app/javascript/mastodon/locales/defaultMessages.json index a6cd78599..a93f3260e 100644 --- a/app/javascript/mastodon/locales/defaultMessages.json +++ b/app/javascript/mastodon/locales/defaultMessages.json @@ -1957,6 +1957,10 @@ "id": "navigation_bar.community_timeline" }, { + "defaultMessage": "Explore", + "id": "navigation_bar.explore" + }, + { "defaultMessage": "Direct messages", "id": "navigation_bar.direct" }, diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index f19b72aa1..910c68672 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -294,6 +294,7 @@ "navigation_bar.discover": "Discover", "navigation_bar.domain_blocks": "Blocked domains", "navigation_bar.edit_profile": "Edit profile", + "navigation_bar.explore": "Explore", "navigation_bar.favourites": "Favourites", "navigation_bar.filters": "Muted words", "navigation_bar.follow_requests": "Follow requests", |