diff options
-rw-r--r-- | archaeological_finds/views.py | 1 | ||||
-rw-r--r-- | ishtar_common/admin.py | 2 | ||||
-rw-r--r-- | ishtar_common/tests.py | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index 53758f24a..474967940 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -662,6 +662,7 @@ treatmentfile_source_creation_wizard = TreatmentFileSourceWizard.as_view([ ('source-treatmentfile_source_creation', SourceForm), ('authors-treatmentfile_source_creation', AuthorFormset), ('final-treatmentfile_source_creation', FinalForm)], + label=_(u"Treatment request: new source"), url_name='treatmentfile_source_creation',) treatmentfile_source_modification_wizard = TreatmentFileSourceWizard.as_view([ diff --git a/ishtar_common/admin.py b/ishtar_common/admin.py index 8070b5180..95115860a 100644 --- a/ishtar_common/admin.py +++ b/ishtar_common/admin.py @@ -350,7 +350,7 @@ class GeneralTypeAdmin(admin.ModelAdmin): if missing_parent: self.message_user( request, - unicode(_(u"Theses parents are missing: {}")).format( + unicode(_(u"These parents are missing: {}")).format( u" ; ".join(missing_parent) )) url = reverse( diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py index 6902854a2..208c8d224 100644 --- a/ishtar_common/tests.py +++ b/ishtar_common/tests.py @@ -183,7 +183,7 @@ class WizardTestFormData(object): step name :param ignored: steps to be ignored in wizard processing :param pre_tests: list of function to be executed before the wizard - :param extra_tests: list of extra tests. Theses tests must be functions + :param extra_tests: list of extra tests. These tests must be functions accepting two parameters: the current test object and the final step response """ |