From 85d1b74ac3bbd563c35a7212069b84f8d3a6bd99 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 18 Nov 2016 15:36:16 +0100 Subject: Adding german localization --- app/assets/javascripts/components/reducers/search.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/assets/javascripts/components/reducers') diff --git a/app/assets/javascripts/components/reducers/search.jsx b/app/assets/javascripts/components/reducers/search.jsx index f3ee17f60..9c2041863 100644 --- a/app/assets/javascripts/components/reducers/search.jsx +++ b/app/assets/javascripts/components/reducers/search.jsx @@ -14,7 +14,7 @@ const initialState = Immutable.Map({ const normalizeSuggestions = (state, value, accounts) => { let newSuggestions = [ { - title: 'Account', + title: 'account', items: accounts.map(item => ({ type: 'account', id: item.id, @@ -25,7 +25,7 @@ const normalizeSuggestions = (state, value, accounts) => { if (value.indexOf('@') === -1) { newSuggestions.push({ - title: 'Hashtag', + title: 'hashtag', items: [ { type: 'hashtag', -- cgit