diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-23 10:21:53 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-23 10:21:53 +0100 |
commit | e0f043c751fd59912ed36611adfcc7a7ce4ae15c (patch) | |
tree | 98f6fccc22dc283a84d0271a26546b03b3073d2b /archaeological_operations/views.py | |
parent | f5cd3193e7ab86a93f2e2159fb4719f17c983991 (diff) | |
download | Ishtar-e0f043c751fd59912ed36611adfcc7a7ce4ae15c.tar.bz2 Ishtar-e0f043c751fd59912ed36611adfcc7a7ce4ae15c.zip |
Site labels: fix translation of customization
Diffstat (limited to 'archaeological_operations/views.py')
-rw-r--r-- | archaeological_operations/views.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/archaeological_operations/views.py b/archaeological_operations/views.py index 054963f09..55c688854 100644 --- a/archaeological_operations/views.py +++ b/archaeological_operations/views.py @@ -345,8 +345,8 @@ show_site = show_item( site_search_wizard = SiteSearch.as_view( [('general-site_search', SiteFormSelection)], - label=_(u"{} search"), - url_name='site_search',) + url_name='site_search', +) site_creation_steps = [ @@ -357,7 +357,6 @@ site_creation_steps = [ site_creation_wizard = SiteWizard.as_view( site_creation_steps, - label=_(u"New {}"), url_name='site_creation', ) @@ -370,7 +369,6 @@ site_modification_steps = [ site_modification_wizard = SiteModificationWizard.as_view( site_modification_steps, - label=_(u"{} modification"), url_name='site_modification', ) |