diff --git a/app/javascript/flavours/glitch/features/local_settings/page/index.js b/app/javascript/flavours/glitch/features/local_settings/page/index.js
index 62bf410c69..b9b00b050b 100644
--- a/app/javascript/flavours/glitch/features/local_settings/page/index.js
+++ b/app/javascript/flavours/glitch/features/local_settings/page/index.js
@@ -59,6 +59,15 @@ export default class LocalSettingsPage extends React.PureComponent {
>
+
+
+
+
({
layout: state.getIn(['local_settings', 'layout']),
isWide: state.getIn(['local_settings', 'stretch']),
navbarUnder: state.getIn(['local_settings', 'navbar_under']),
+ favouriteModal: state.getIn(['local_settings', 'favourite_modal']),
});
const keyMap = {
@@ -103,6 +104,7 @@ export default class UI extends React.Component {
isWide: PropTypes.bool,
systemFontUi: PropTypes.bool,
navbarUnder: PropTypes.bool,
+ favouriteModal: PropTypes.bool,
isComposing: PropTypes.bool,
hasComposingText: PropTypes.bool,
location: PropTypes.object,
diff --git a/app/javascript/flavours/glitch/reducers/local_settings.js b/app/javascript/flavours/glitch/reducers/local_settings.js
index 69d98741b6..e4cdc49eeb 100644
--- a/app/javascript/flavours/glitch/reducers/local_settings.js
+++ b/app/javascript/flavours/glitch/reducers/local_settings.js
@@ -9,6 +9,7 @@ const initialState = ImmutableMap({
layout : 'auto',
stretch : true,
navbar_under : false,
+ favourite_modal : false,
side_arm : 'none',
collapsed : ImmutableMap({
enabled : true,
diff --git a/app/javascript/glitch/locales/en.json b/app/javascript/glitch/locales/en.json
index 0276cb8370..94011ffbe7 100644
--- a/app/javascript/glitch/locales/en.json
+++ b/app/javascript/glitch/locales/en.json
@@ -32,6 +32,8 @@
"status.collapse": "Collapse",
"status.uncollapse": "Uncollapse",
+ "favourite_modal.combo": "You can press {combo} to skip this next time",
+
"home.column_settings.show_direct": "Show DMs",
"notification.markForDeletion": "Mark for deletion",
diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json
index 5efd29b815..538124904a 100644
--- a/app/javascript/mastodon/locales/en.json
+++ b/app/javascript/mastodon/locales/en.json
@@ -25,7 +25,6 @@
"account.unmute_notifications": "Unmute notifications from @{name}",
"account.view_full_profile": "View full profile",
"boost_modal.combo": "You can press {combo} to skip this next time",
- "favourite_modal.combo": "You can press {combo} to skip this next time",
"bundle_column_error.body": "Something went wrong while loading this component.",
"bundle_column_error.retry": "Try again",
"bundle_column_error.title": "Network error",
@@ -110,7 +109,6 @@
"home.settings": "Column settings",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.boost": "to boost",
- "keyboard_shortcuts.favourite": "to favourite",
"keyboard_shortcuts.column": "to focus a status in one of the columns",
"keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.description": "Description",