diff options
Diffstat (limited to 'archaeological_operations')
6 files changed, 9 insertions, 9 deletions
| diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 37c35f4be..c8bb5e8a1 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1158,7 +1158,7 @@ ArchaeologicalSiteFormSet.form_label = _("Archaeological sites")  class ArchaeologicalSiteSelectionForm(forms.Form): -    form_label = _("Associated archaelogical sites") +    form_label = _("Associated archaeological sites")      archaeological_sites = forms.IntegerField(          widget=widgets.JQueryAutoComplete(              reverse_lazy('autocomplete-archaeologicalsite'), diff --git a/archaeological_operations/import_from_csv.py b/archaeological_operations/import_from_csv.py index 45faae632..999ada690 100644 --- a/archaeological_operations/import_from_csv.py +++ b/archaeological_operations/import_from_csv.py @@ -18,7 +18,7 @@  # See the file COPYING for details.  """ -Utils: import archaelogical operation from a CSV file +Utils: import archaeological operation from a CSV file  """  DELIMITER = ";" diff --git a/archaeological_operations/import_from_dbf.py b/archaeological_operations/import_from_dbf.py index 3ce41fdfc..fa452d605 100644 --- a/archaeological_operations/import_from_dbf.py +++ b/archaeological_operations/import_from_dbf.py @@ -18,7 +18,7 @@  # See the file COPYING for details.  """ -Utils: import archaelogical operation from a DBF file +Utils: import archaeological operation from a DBF file  """  from __future__ import unicode_literals diff --git a/archaeological_operations/management/commands/import_operations_old.py b/archaeological_operations/management/commands/import_operations_old.py index a9ecf41c9..4ad229e9a 100755 --- a/archaeological_operations/management/commands/import_operations_old.py +++ b/archaeological_operations/management/commands/import_operations_old.py @@ -29,7 +29,7 @@ IMPORTERS = {'csv':import_from_csv,  class Command(BaseCommand):      args = '<filename> [<lines>]' -    help = "Import archaelogical operations" +    help = "Import archaeological operations"      def handle(self, *args, **options):          if not args or not args[0]: diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index daddb42d6..4fc6c1a28 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -49,11 +49,11 @@  {% field_li "Deadline for submission of the finds" item.finds_deadline %}  {% field_li "Finds received" item.finds_received %}  {% field_li_detail "Associated file" item.associated_file %} -{% field_li "Responsible for town planning service" item.associated_file.responsible_town_planning_service.full_address %} +{% field_li "Responsible for planning service" item.associated_file.responsible_town_planning_service.full_address %}  {% if item.associated_file.town_planning_service %} -  {% field_li "Town planning service organization" item.associated_file.town_planning_service.full_address %} +  {% field_li "Planning service organization" item.associated_file.town_planning_service.full_address %}  {% else %} -  {% field_li "Town planning service organization" item.associated_file.responsible_town_planning_service.attached_to.full_address %} +  {% field_li "Planning service organization" item.associated_file.responsible_town_planning_service.attached_to.full_address %}  {% endif %}  {% field_li "Permit type" item.associated_file.permit_type %}  {% field_li "Permit reference" item.associated_file.permit_reference %} diff --git a/archaeological_operations/wizards.py b/archaeological_operations/wizards.py index eeabef857..c5ddc64e5 100644 --- a/archaeological_operations/wizards.py +++ b/archaeological_operations/wizards.py @@ -189,7 +189,7 @@ class OperationWizard(Wizard):      def get_formated_datas(self, forms):          """ -        Show a specific warning if no archaelogical file is provided +        Show a specific warning if no archaeological file is provided          """          datas = super(OperationWizard, self).get_formated_datas(forms)          # if the general town form is used the advertissement is relevant @@ -245,7 +245,7 @@ class OperationWizard(Wizard):          request = self.request          post_data = request.POST.copy() -        # add all parcel from available in the archaelogical file +        # add all parcel from available in the archaeological file          if not post_data.get('add_all_parcels'):              return super(OperationWizard, self).post(*args, **kwargs) | 
