diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-12-16 11:06:43 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:22 +0100 | 
| commit | 4ebb6f8563640026176a7e0721d6dd2e3d71d160 (patch) | |
| tree | 23e06af316435efe5f33f3f9e5d304b5a54d8d2d /ishtar_common/models.py | |
| parent | 96b65026a2876fb31d48a8dca4e25fee85699ac8 (diff) | |
| download | Ishtar-4ebb6f8563640026176a7e0721d6dd2e3d71d160.tar.bz2 Ishtar-4ebb6f8563640026176a7e0721d6dd2e3d71d160.zip | |
Fix english typo
Diffstat (limited to 'ishtar_common/models.py')
| -rw-r--r-- | ishtar_common/models.py | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 67e93fe13..c178b187f 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -818,7 +818,7 @@ class IshtarSiteProfile(models.Model, Cached):      site_custom_index = models.TextField(          _("Archaeological site custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage archaeological site custom " +        help_text=_("Keys to be used to manage archaeological site custom "                      "index. Separate keys with a semicolon."))      file_external_id = models.TextField(          _("File external id"), @@ -835,7 +835,7 @@ class IshtarSiteProfile(models.Model, Cached):      file_custom_index = models.TextField(          _("Archaeological file custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage archaeological file custom " +        help_text=_("Keys to be used to manage archaeological file custom "                      "index. Separate keys with a semicolon."))      parcel_external_id = models.TextField(          _("Parcel external id"), @@ -859,7 +859,7 @@ class IshtarSiteProfile(models.Model, Cached):      contextrecord_custom_index = models.TextField(          _("Context record custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage context record custom index. " +        help_text=_("Keys to be used to manage context record custom index. "                      "Separate keys with a semicolon."))      base_find_external_id = models.TextField(          _("Base find external id"), @@ -875,7 +875,7 @@ class IshtarSiteProfile(models.Model, Cached):      basefind_custom_index = models.TextField(          _("Base find custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage base find custom index. " +        help_text=_("Keys to be used to manage base find custom index. "                      "Separate keys with a semicolon."))      find_external_id = models.TextField(          _("Find external id"), @@ -891,7 +891,7 @@ class IshtarSiteProfile(models.Model, Cached):      find_custom_index = models.TextField(          _("Find custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage find custom index. " +        help_text=_("Keys to be used to manage find custom index. "                      "Separate keys with a semicolon."))      container_external_id = models.TextField(          _("Container external id"), @@ -908,7 +908,7 @@ class IshtarSiteProfile(models.Model, Cached):      container_custom_index = models.TextField(          _("Container custom index key"),          default="", blank=True, -        help_text=_("Key to be used  to manage container custom index. " +        help_text=_("Keys to be used to manage container custom index. "                      "Separate keys with a semicolon."))      warehouse_external_id = models.TextField(          _("Warehouse external id"), @@ -924,7 +924,7 @@ class IshtarSiteProfile(models.Model, Cached):      warehouse_custom_index = models.TextField(          _("Warehouse custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage warehouse custom index. " +        help_text=_("Keys to be used to manage warehouse custom index. "                      "Separate keys with a semicolon."))      document_external_id = models.TextField(          _("Document external id"), @@ -940,7 +940,7 @@ class IshtarSiteProfile(models.Model, Cached):      document_custom_index = models.TextField(          _("Document custom index key"),          default="", blank=True, -        help_text=_("Key to be used to manage document custom index. " +        help_text=_("Keys to be used to manage document custom index. "                      "Separate keys with a semicolon."))      person_raw_name = models.TextField(          _("Raw name for person"), @@ -2701,7 +2701,7 @@ post_delete.connect(post_save_cache, sender=SourceType)  class SupportType(GeneralType):      document_types = models.ManyToManyField(          "SourceType", blank=True, related_name='supports', -        help_text=_("Only available for theses document types") +        help_text=_("Only available for these document types")      )      class Meta: @@ -2721,7 +2721,7 @@ class Format(GeneralType):                      "current document."))      document_types = models.ManyToManyField(          "SourceType", blank=True, related_name='formats', -        help_text=_("Only available for theses document types") +        help_text=_("Only available for these document types")      )      class Meta: | 
