summaryrefslogtreecommitdiff
path: root/archaeological_operations/views.py
diff options
context:
space:
mode:
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
commitf82589a4ad3d6501d4b07afe7b1f39467d355147 (patch)
tree98f6fccc22dc283a84d0271a26546b03b3073d2b /archaeological_operations/views.py
parente019be5389ff31c259c31efe6be3dfe10aa1c62b (diff)
downloadIshtar-f82589a4ad3d6501d4b07afe7b1f39467d355147.tar.bz2
Ishtar-f82589a4ad3d6501d4b07afe7b1f39467d355147.zip
Site labels: fix translation of customization
Diffstat (limited to 'archaeological_operations/views.py')
-rw-r--r--archaeological_operations/views.py6
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',
)