mirror of
https://github.com/searxng/searxng.git
synced 2024-11-22 12:10:11 +01:00
[fix] category name i18n - closes #221
This commit is contained in:
parent
f8a5f7d675
commit
e43f61069a
@ -97,6 +97,16 @@ for indice, theme in enumerate(themes):
|
|||||||
|
|
||||||
cookie_max_age = 60 * 60 * 24 * 365 * 5 # 5 years
|
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
|
@babel.localeselector
|
||||||
def get_locale():
|
def get_locale():
|
||||||
|
@ -10,8 +10,6 @@ SEARX_DIR='searx'
|
|||||||
pybabel extract -F babel.cfg -o messages.pot $SEARX_DIR
|
pybabel extract -F babel.cfg -o messages.pot $SEARX_DIR
|
||||||
for f in `ls $SEARX_DIR'/translations/'`; do
|
for f in `ls $SEARX_DIR'/translations/'`; do
|
||||||
pybabel update -N -i messages.pot -d $SEARX_DIR'/translations/' -l $f
|
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
|
done
|
||||||
|
|
||||||
echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'
|
echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'
|
||||||
|
Loading…
Reference in New Issue
Block a user