logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 79e41fbd519d119376bc091a460aef7ed5fa1742
parent: 66ab0d0d56234567497d8814001371da55efa490
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Mon, 28 Nov 2016 13:55:45 +0100

Forgot to enable hungarian translation in the frontend

Diffstat:

Mapp/assets/javascripts/components/containers/mastodon.jsx3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app/assets/javascripts/components/containers/mastodon.jsx b/app/assets/javascripts/components/containers/mastodon.jsx @@ -40,6 +40,7 @@ import de from 'react-intl/locale-data/de'; import es from 'react-intl/locale-data/es'; import fr from 'react-intl/locale-data/fr'; import pt from 'react-intl/locale-data/pt'; +import hu from 'react-intl/locale-data/hu'; import getMessagesForLocale from '../locales'; const store = configureStore(); @@ -48,7 +49,7 @@ const browserHistory = useRouterHistory(createBrowserHistory)({ basename: '/web' }); -addLocaleData([...en, ...de, ...es, ...fr, ...pt]); +addLocaleData([...en, ...de, ...es, ...fr, ...pt, ...hu]); const Mastodon = React.createClass({