transation base update

pull/60/head
Hartmut Holzgraefe 2021-06-13 14:37:15 +02:00
rodzic 82b1bb3a41
commit 10856835e7
47 zmienionych plików z 36533 dodań i 15656 usunięć

Wyświetl plik

@ -5,10 +5,10 @@ basedir=$(realpath $(dirname $0)/../)
echo "Updating translations in '$basedir'"
cd $basedir/www
cd $basedir
../manage.py makemessages --all --keep-pot -e html,txt,js,py
../manage.py compilemessages
./manage.py makemessages --all --keep-pot -e html,txt,js,py
./manage.py compilemessages

Plik diff jest za duży Load Diff

Wyświetl plik

@ -43,7 +43,7 @@ class MapsFeed(Feed):
"""
title = "%s %s %s" % (www.settings.BRAND_NAME, _("maps"),
www.settings.DEBUG and _('') or _('[DEV]'))
www.settings.DEBUG and '' or _('[DEV]'))
link = '/maps/' # We can't use reverse here as the urlpatterns aren't
# defined yet at this point.
description = _('The latest rendered maps on MapOSMatic.')
@ -100,7 +100,7 @@ class ErrorFeed(Feed):
"""
title = "%s %s %s" % (www.settings.BRAND_NAME, _("errors"),
www.settings.DEBUG and _('') or _('[DEV]'))
www.settings.DEBUG and '' or _('[DEV]'))
link = '/maps/' # We can't use reverse here as the urlpatterns aren't
# defined yet at this point.
description = _('The latest render failures on MapOSMatic.')

Wyświetl plik

@ -333,6 +333,6 @@ LOG = logging.getLogger('maposmatic')
# are still readable
FILE_UPLOAD_PERMISSIONS = 0o644
MAINTENANCE_MODE = False # True or False, *NOT* None
# MAINTENANCE_MODE_IGNORE_IP_ADDRESSES = ('xxx.xxx.xxx.xxx',)
MAINTENANCE_MODE = False # True or False, *NOT* None
MAINTENANCE_MODE_IGNORE_IP_ADDRESSES = ('217.146.146.90',)
MAINTENANCE_MODE_TEMPLATE = '503.html'