summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_warehouse/views.py')
-rw-r--r--archaeological_warehouse/views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_warehouse/views.py b/archaeological_warehouse/views.py
index 0ce6f8763..3bbf522dc 100644
--- a/archaeological_warehouse/views.py
+++ b/archaeological_warehouse/views.py
@@ -59,6 +59,7 @@ from archaeological_warehouse.wizards import (
ContainerModificationWizard,
ContainerDeletionWizard,
)
+from overload_translation.utils import pgettext_lazy
get_container = get_item(
models.Container, "get_container", "container", search_form=forms.ContainerSelect
@@ -513,7 +514,7 @@ class QAContainerMoveForm(QAItemForm):
model = models.Container
form_class = forms.QAContainerMoveForm
icon = "fa fa-arrow-right"
- page_name = _("Move")
+ page_name = pgettext_lazy("action", "Move")
template_name = "ishtar/forms/qa_container_move.html"
base_url = "container-qa-move"