diff --git a/app/javascript/mastodon/features/list_timeline/index.jsx b/app/javascript/mastodon/features/list_timeline/index.jsx index 4cc4d40fc2..a97e934713 100644 --- a/app/javascript/mastodon/features/list_timeline/index.jsx +++ b/app/javascript/mastodon/features/list_timeline/index.jsx @@ -223,7 +223,7 @@ class ListTimeline extends PureComponent {
diff --git a/app/javascript/mastodon/features/notifications/components/notification.jsx b/app/javascript/mastodon/features/notifications/components/notification.jsx index 9f9157b130..f697a7f211 100644 --- a/app/javascript/mastodon/features/notifications/components/notification.jsx +++ b/app/javascript/mastodon/features/notifications/components/notification.jsx @@ -41,8 +41,8 @@ const messages = defineMessages({ poll: { id: 'notification.poll', defaultMessage: 'A poll you have voted in has ended' }, reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your status' }, status: { id: 'notification.status', defaultMessage: '{name} just posted' }, - listStatus: { id: 'notification.list_status', defaultMessage: '{name} post is added on {listName}' }, - statusReference: { id: 'notification.status_reference', defaultMessage: '{name} refered your post' }, + listStatus: { id: 'notification.list_status', defaultMessage: '{name} post is added to {listName}' }, + statusReference: { id: 'notification.status_reference', defaultMessage: '{name} quoted your post' }, update: { id: 'notification.update', defaultMessage: '{name} edited a post' }, adminSignUp: { id: 'notification.admin.sign_up', defaultMessage: '{name} signed up' }, adminReport: { id: 'notification.admin.report', defaultMessage: '{name} reported {target}' }, @@ -305,7 +305,7 @@ class Notification extends ImmutablePureComponent { - + diff --git a/app/lib/chewy_config.rb b/app/lib/chewy_config.rb index efd0cc695e..9de69b5147 100644 --- a/app/lib/chewy_config.rb +++ b/app/lib/chewy_config.rb @@ -19,7 +19,6 @@ class ChewyConfig default_config = YAML.load_file(default_config_file) @config = default_config.merge(custom_config || {}) - @config = @config.merge(YAML.load_file(Rails.root.join('config', 'elasticsearch.default-ja-sudachi.yml'))) if Rails.env.test? raise InvalidElasticSearchVersionError, "ElasticSearch config version is missmatch. expected version=#{CONFIG_VERSION} actual version=#{@config['version']}" if @config['version'] != CONFIG_VERSION end