diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-02-10 23:14:37 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-02-10 23:14:37 +0100 |
commit | e43f61069a05ca48750d3eb33e4421d5d2d62e7a (patch) | |
tree | 5c88c84eddff5fccf1a34d1ceb4b9d025e69c4d6 | |
parent | f8a5f7d6751ad72c877d6008f1a7d9792ba911f6 (diff) | |
download | searxng-e43f61069a05ca48750d3eb33e4421d5d2d62e7a.tar.gz searxng-e43f61069a05ca48750d3eb33e4421d5d2d62e7a.zip |
[fix] category name i18n - closes #221
-rw-r--r-- | searx/webapp.py | 10 | ||||
-rwxr-xr-x | utils/update-translations.sh | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 2394aacfe..77b4507e9 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -97,6 +97,16 @@ for indice, theme in enumerate(themes): cookie_max_age = 60 * 60 * 24 * 365 * 5 # 5 years +_category_names = (gettext('files'), + gettext('general'), + gettext('music'), + gettext('social media'), + gettext('images'), + gettext('videos'), + gettext('it'), + gettext('news'), + gettext('map')) + @babel.localeselector def get_locale(): diff --git a/utils/update-translations.sh b/utils/update-translations.sh index 2f9ab218f..00e7fb1e0 100755 --- a/utils/update-translations.sh +++ b/utils/update-translations.sh @@ -10,8 +10,6 @@ SEARX_DIR='searx' pybabel extract -F babel.cfg -o messages.pot $SEARX_DIR for f in `ls $SEARX_DIR'/translations/'`; do pybabel update -N -i messages.pot -d $SEARX_DIR'/translations/' -l $f - # TODO - need to fix category translations - sed -i 's/#~ //' $SEARX_DIR'/translations/'$f'/LC_MESSAGES/messages.po' done echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/' |