From 4ebb6f8563640026176a7e0721d6dd2e3d71d160 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 16 Dec 2020 11:06:43 +0100 Subject: Fix english typo --- archaeological_context_records/tests.py | 6 +++--- .../templates/ishtar/wizard/wizard_simplefind.html | 2 +- archaeological_warehouse/models.py | 6 +++--- .../ishtar/wizard/wizard_container_deletion.html | 6 +++--- .../ishtar/wizard/wizard_warehouse_divisions.html | 2 +- example_project/settings.py | 2 +- install/README.md | 2 +- ishtar_common/forms_common.py | 4 ++-- .../management/commands/import_insee_comm_csv.py | 4 ++-- ishtar_common/migrations/0204_auto_20201201_1533.py | 4 ++-- ishtar_common/models.py | 20 ++++++++++---------- .../templates/ishtar/import_step_by_step.html | 2 +- .../templates/ishtar/wizard/delete_wizard.html | 2 +- ishtar_common/tests.py | 2 +- locale/fr/LC_MESSAGES/django.po | 2 +- 15 files changed, 33 insertions(+), 33 deletions(-) diff --git a/archaeological_context_records/tests.py b/archaeological_context_records/tests.py index 6c2c256a0..2cdae48bc 100644 --- a/archaeological_context_records/tests.py +++ b/archaeological_context_records/tests.py @@ -384,9 +384,9 @@ class ContextRecordTest(ContextRecordInit, TestCase): cr = self.create_context_record()[0] cr_pk = cr.pk self.assertIsNotNone(cr.cached_label) - # OP2010 - 1 | A | 1 | CR 1 + # OA1 | A | 1 | CR 1 ope_id, parcel_sec, parcel_nb, cr_label = cr.cached_label.split(' | ') - self.assertEqual(ope_id, 'OP2010-1') + self.assertEqual(ope_id, 'OA1') self.assertEqual(parcel_sec, cr.parcel.section) self.assertEqual(parcel_nb, cr.parcel.parcel_number) self.assertEqual(cr_label, cr.label) @@ -415,7 +415,7 @@ class ContextRecordTest(ContextRecordInit, TestCase): cr = models.ContextRecord.objects.get(pk=cr_pk) self.assertIsNotNone(cr.cached_label) ope_id, parcel_sec, parcel_nb, cr_label = cr.cached_label.split(' | ') - self.assertEqual(ope_id, 'OP2017-1') + self.assertEqual(ope_id, 'OA1') def test_downstream_cache_update(self): cr = self.create_context_record()[0] diff --git a/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html b/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html index 2ebde34ff..57a92aeb6 100644 --- a/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html +++ b/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html @@ -3,7 +3,7 @@ {% block form_head %}
- {% trans 'This find is related to many base finds. To edit field related to base finds edit the corresponding find between theses:' %} + {% trans 'This find is related to many base finds. To edit field related to base finds edit the corresponding find between these:' %}