From 9127307734c85b816ac7dbb539b565ffb106d60f Mon Sep 17 00:00:00 2001 From: Valérie-Emma Leroux Date: Fri, 17 Mar 2017 11:13:56 +0100 Subject: Update labels (without ':') --- archaeological_finds/templates/ishtar/sheet_find.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index 912bf1b93..a78eb7706 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -200,14 +200,14 @@ {% field_li "Point of topographic reference" base_find.topographic_localisation %} {% if base_find.x or base_find.y %} -
  • +
  • - {% trans "X:"%} {{base_find.x|default_if_none:"-"}}, - {% trans "Y:"%} {{base_find.y|default_if_none:"-"}}, - {% trans "Z:"%} {{base_find.z|default_if_none:"-"}} + {% trans "X"%} {{base_find.x|default_if_none:"-"}}, + {% trans "Y"%} {{base_find.y|default_if_none:"-"}}, + {% trans "Z"%} {{base_find.z|default_if_none:"-"}} {% if base_find.spatial_reference_system %} ({{base_find.spatial_reference_system.label}}{% if base_find.spatial_reference_system.srid %} - - {% trans "SRID:"%} {{base_find.spatial_reference_system.srid}}{% endif %}) + {% trans "SRID"%} {{base_find.spatial_reference_system.srid}}{% endif %}) {% endif %} {% endif %} -- cgit v1.2.3 From f19a8dfbd0763a4b994ff77e4105ca54faeff648 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 27 Mar 2017 17:23:42 +0200 Subject: Widgets: update select2 usage --- archaeological_finds/forms.py | 2 +- ishtar_common/widgets.py | 24 +++++++++++++++++++----- 2 files changed, 20 insertions(+), 6 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 09d23a3bc..bbc8729d0 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -158,7 +158,7 @@ class FindForm(ManageOldType, forms.Form): model=models.ObjectType, label=_(u"Object types"), required=False) preservation_to_consider = forms.MultipleChoiceField( label=_(u"Preservation type"), choices=[], - widget=widgets.CheckboxSelectMultiple, required=False) + widget=widgets.Select2Multiple, required=False) integritie = forms.MultipleChoiceField( label=_(u"Integrity / interest"), choices=[], widget=widgets.CheckboxSelectMultiple, required=False) diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py index 3fbf24f29..ffa09e7b4 100644 --- a/ishtar_common/widgets.py +++ b/ishtar_common/widgets.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2016 Étienne Loks +# Copyright (C) 2010-2017 Étienne Loks # Copyright (C) 2007 skam # (http://djangosnippets.org/snippets/233/) @@ -45,12 +45,19 @@ reverse_lazy = lazy(reverse, unicode) class Select2Multiple(forms.SelectMultiple): - class Media: + + @property + def media(self): + media = super(Select2Multiple, self).media css = { 'all': ('select2/css/select2.css',) } - js = ('select2/js/select2.min.js', - 'select2/js/init.js') + js = ['select2/js/select2.min.js'] + for lang_code, lang in settings.LANGUAGES: + js.append('select2/js/i18n/{}.js'.format(lang_code)) + media.add_css(css) + media.add_js(js) + return media def render(self, name, value, attrs=None, choices=()): klass = attrs and attrs.get('class') or '' @@ -58,8 +65,15 @@ class Select2Multiple(forms.SelectMultiple): if not attrs: attrs = {} attrs['class'] = klass - return super(Select2Multiple, self).render(name, value, attrs, + attrs['style'] = "width: 370px" + html = super(Select2Multiple, self).render(name, value, attrs, choices) + html += """ + """.format(name) + return mark_safe(html) class CheckboxSelectMultiple(CheckboxSelectMultipleBase): -- cgit v1.2.3 From 9beb58d4d65f06ac8f14ec4371c9dee31332dd48 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 27 Mar 2017 20:14:25 +0200 Subject: Replace MultipleAutocompleteField with Select2MultipleField (refs #3575) --- archaeological_files/forms.py | 6 +- archaeological_files_pdl/forms.py | 12 ++-- archaeological_finds/forms.py | 12 ++-- ishtar_common/static/media/style.css | 9 +++ ishtar_common/widgets.py | 116 +++++++++++++++++++++++------------ 5 files changed, 102 insertions(+), 53 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_files/forms.py b/archaeological_files/forms.py index 45a05b9b1..99fe6e0db 100644 --- a/archaeological_files/forms.py +++ b/archaeological_files/forms.py @@ -336,10 +336,8 @@ class FileFormResearch(ManageOldType, forms.Form): 'requested_operation_type': OperationType, 'organization': Organization, 'department': Department} - department = widgets.MultipleAutocompleteField( - model=Department, - label=_("Departments"), - required=False) + department = widgets.Select2MultipleField( + model=Department, label=_("Departments"), required=False) scientist = forms.IntegerField( widget=widgets.JQueryAutoComplete( reverse_lazy( diff --git a/archaeological_files_pdl/forms.py b/archaeological_files_pdl/forms.py index 4890eb5d6..8bb1f9156 100644 --- a/archaeological_files_pdl/forms.py +++ b/archaeological_files_pdl/forms.py @@ -86,9 +86,9 @@ class FileFormPlanning(forms.Form): associated_models = {'town': Town, 'department': Department} name = forms.CharField(label=_(u"Planning name"), required=False, max_length=100) - town = widgets.MultipleAutocompleteField( - model=Town, label=_("Towns"), required=False) - department = widgets.MultipleAutocompleteField( + town = widgets.Select2MultipleField( + model=Town, label=_("Towns"), required=False, remote=True) + department = widgets.Select2MultipleField( model=Department, label=_("Departments"), required=False) locality = forms.CharField(label=_(u"Locality"), max_length=100, required=False) @@ -118,9 +118,9 @@ class FileFormResearchAddress(forms.Form): associated_models = {'town': Town, 'department': Department} name = forms.CharField(label=_(u"Project name"), required=False, max_length=100) - town = widgets.MultipleAutocompleteField( - model=Town, label=_("Towns"), required=False) - department = widgets.MultipleAutocompleteField( + town = widgets.Select2MultipleField( + model=Town, label=_("Towns"), required=False, remote=True) + department = widgets.Select2MultipleField( model=Department, label=_("Departments"), required=False) locality = forms.CharField(label=_(u"Locality"), max_length=100, required=False) diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index bbc8729d0..8fe945e88 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -147,15 +147,19 @@ class FindForm(ManageOldType, forms.Form): required=False) is_complete = forms.NullBooleanField(label=_(u"Is complete?"), required=False) - material_type = widgets.MultipleAutocompleteField( - model=models.MaterialType, label=_(u"Material type"), required=False) + material_type = widgets.Select2MultipleField( + model=models.MaterialType, label=_(u"Material type"), required=False, + available=True + ) conservatory_state = forms.ChoiceField(label=_(u"Conservatory state"), choices=[], required=False) conservatory_comment = forms.CharField( label=_(u"Conservatory comment"), required=False, widget=forms.Textarea) - object_type = widgets.MultipleAutocompleteField( - model=models.ObjectType, label=_(u"Object types"), required=False) + object_type = widgets.Select2MultipleField( + model=models.ObjectType, label=_(u"Object types"), required=False, + available=True + ) preservation_to_consider = forms.MultipleChoiceField( label=_(u"Preservation type"), choices=[], widget=widgets.Select2Multiple, required=False) diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index adaf94200..fc840526e 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -92,6 +92,15 @@ div.form { border-bottom:1px solid #D14; } +.form .select2-container--default .select2-selection--multiple { + border: 1px solid #FFF; +} + +.form .select2-container--default.select2-container--focus +.select2-selection--multiple { + border:1px solid #D14; +} + hr.spacer{ clear:both; border:0; diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py index ffa09e7b4..f0e1dc775 100644 --- a/ishtar_common/widgets.py +++ b/ishtar_common/widgets.py @@ -45,6 +45,12 @@ reverse_lazy = lazy(reverse, unicode) class Select2Multiple(forms.SelectMultiple): + def __init__(self, attrs=None, choices=(), remote=None, model=None, + available=None): + super(Select2Multiple, self).__init__(attrs, choices) + self.remote = remote + self.available = available + self.model = model @property def media(self): @@ -59,20 +65,66 @@ class Select2Multiple(forms.SelectMultiple): media.add_js(js) return media + def get_q(self): + q = self.model.objects + if self.available: + q = q.filter(available=True) + return q + + def get_choices(self): + for i in self.get_q().all(): + yield (i.pk, unicode(i)) + def render(self, name, value, attrs=None, choices=()): + self.remote = unicode(self.remote) + if self.remote in ('None', 'false'): + # test on lazy object is buggy... so we have this ugly test + self.remote = None + if not choices and not self.remote and self.model: + choices = self.get_choices() klass = attrs and attrs.get('class') or '' klass += ' ' if klass else '' + 'js-select2' if not attrs: attrs = {} attrs['class'] = klass attrs['style'] = "width: 370px" + options = "" + if self.remote: + options = """{ + ajax: { + url: '%s', + delay: 250, + dataType: 'json', + minimumInputLength: 2, + processResults: function (data) { + if(!data) return {results: []}; + var result = $.map(data, function (item) { + return { + text: item['value'], + id: item['id'] + } + }); + return { + results: result + } + } + } + }""" % self.remote + if value: + choices = [] + for v in value: + try: + choices.append((v, self.model.objects.get(pk=v))) + except self.model.DoesNotExist: + # an old reference ? it should not happen + pass html = super(Select2Multiple, self).render(name, value, attrs, choices) html += """ - """.format(name) + """.format(name, options) return mark_safe(html) @@ -91,49 +143,35 @@ class CheckboxSelectMultiple(CheckboxSelectMultipleBase): choices) -class MultipleAutocompleteField(forms.MultipleChoiceField): +class Select2MultipleField(forms.MultipleChoiceField): def __init__(self, *args, **kwargs): - self.model = None + remote = None + if 'remote' in kwargs: + remote = kwargs.pop('remote') + self.model, self.remote = None, None if 'model' in kwargs: self.model = kwargs.pop('model') - if 'choices' not in kwargs and self.model: - kwargs['choices'] = [] - new = kwargs.pop('new') if 'new' in kwargs else None - if 'widget' not in kwargs and self.model: - kwargs['widget'] = JQueryAutoComplete( - reverse_lazy('autocomplete-' + self.model.__name__.lower()), - associated_model=self.model, new=new, - multiple=True) - super(MultipleAutocompleteField, self).__init__(*args, **kwargs) - - def get_choices(self): - return [(i.pk, unicode(i)) for i in self.model.objects.all()] + if remote: + self.remote = reverse_lazy( + 'autocomplete-' + self.model.__name__.lower()) + self.available = False + if 'available' in kwargs: + self.available = kwargs.pop('available') + kwargs['widget'] = Select2Multiple(model=self.model, + available=self.available, + remote=self.remote) + super(Select2MultipleField, self).__init__(*args, **kwargs) + + def get_q(self): + q = self.model.objects + if self.available: + q = q.filter(available=True) + return q def valid_value(self, value): if not self.model: - return super(MultipleAutocompleteField, self).valid_value(value) - return bool(self.model.objects.filter(pk=value).count()) - - def clean(self, value): - if value: - # clean JS messup with values - try: - if type(value) not in (list, tuple): - value = [int(value)] - else: - val = value - value = [] - for v in val: - v = unicode(v).strip('[').strip(']')\ - .strip('u').strip("'").strip('"') - value += [int(va.strip()) - for va in list(set(v.split(','))) - if va.strip()] - except (TypeError, ValueError): - value = [] - else: - value = [] - return super(MultipleAutocompleteField, self).clean(value) + return super(Select2MultipleField, self).valid_value(value) + return bool(self.get_q().filter(pk=value).count()) class DeleteWidget(forms.CheckboxInput): -- cgit v1.2.3 From 1e99edb16662266251fae93750e315d8b56593b3 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 29 Mar 2017 12:46:25 +0200 Subject: Treatment files: add missing permissions --- archaeological_finds/models_treatments.py | 6 ++++++ .../management/commands/regenerate_permissions.py | 15 ++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index 4a453f538..6847029c7 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -502,6 +502,12 @@ class TreatmentFile(ClosedItem, BaseHistorizedItem, OwnPerms, ValueGetter, permissions = ( ("view_filetreatment", ugettext(u"Can view all Treatment requests")), + ("add_filetreatment", + ugettext(u"Can add Treatment request")), + ("change_filetreatment", + ugettext(u"Can change Treatment request")), + ("delete_filetreatment", + ugettext(u"Can delete Treatment request")), ("view_own_filetreatment", ugettext(u"Can view own Treatment request")), ("add_own_filetreatment", diff --git a/ishtar_common/management/commands/regenerate_permissions.py b/ishtar_common/management/commands/regenerate_permissions.py index c2af8b353..599e64d64 100644 --- a/ishtar_common/management/commands/regenerate_permissions.py +++ b/ishtar_common/management/commands/regenerate_permissions.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2013 Étienne Loks +# Copyright (C) 2013-2017 Étienne Loks # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -17,14 +17,13 @@ # See the file COPYING for details. -import sys -from django.db import models -from django.core.management.base import BaseCommand, CommandError +from django.core.management.base import BaseCommand from django.contrib.contenttypes.models import ContentType from django.contrib.auth.models import Permission + class Command(BaseCommand): args = '' help = 'Regenerate permissions' @@ -35,6 +34,8 @@ class Command(BaseCommand): if not model: continue for perm_slug, perm_label in model._meta.permissions: - Permission.objects.get_or_create(content_type=ct, - codename=perm_slug, - defaults={'name':perm_label}) + perm, c = Permission.objects.get_or_create( + content_type=ct, codename=perm_slug, + defaults={'name': perm_label}) + if c: + print('Permission {} created.'.format(perm_label)) -- cgit v1.2.3 From 02136acb286d0f6b97dcbc715138f085d59767ea Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 28 Mar 2017 13:17:29 +0200 Subject: Access control: fix get owns query for UEs, finds, warehouses and containers --- archaeological_context_records/models.py | 7 ++++--- archaeological_files/models.py | 2 +- archaeological_finds/models_finds.py | 11 ++++++----- archaeological_warehouse/models.py | 11 +++++++++++ 4 files changed, 22 insertions(+), 9 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 4df56c49f..a16b4cae7 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -365,9 +365,10 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, @classmethod def get_query_owns(cls, user): - return Q(operation__scientist=user.ishtaruser.person) |\ - Q(operation__in_charge=user.ishtaruser.person) |\ - Q(history_creator=user) + return (Q(operation__scientist=user.ishtaruser.person) | + Q(operation__in_charge=user.ishtaruser.person) | + Q(history_creator=user)) \ + & Q(operation__end_date__isnull=True) @classmethod def get_owns(cls, user, menu_filtr=None, limit=None, diff --git a/archaeological_files/models.py b/archaeological_files/models.py index 7f37a298f..52f628817 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2012-2016 Étienne Loks +# Copyright (C) 2012-2017 Étienne Loks # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index c54fd1ed9..cbd13e925 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -868,11 +868,12 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): @classmethod def get_query_owns(cls, user): - return Q(base_finds__context_record__operation__scientist=user. - ishtaruser.person) | \ - Q(base_finds__context_record__operation__in_charge=user. - ishtaruser.person) | \ - Q(history_creator=user) + return (Q(base_finds__context_record__operation__scientist=user. + ishtaruser.person) | + Q(base_finds__context_record__operation__in_charge=user. + ishtaruser.person) | + Q(history_creator=user)) \ + & Q(base_finds__context_record__operation__end_date__isnull=True) @classmethod def get_owns(cls, user, menu_filtr=None, limit=None, diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index d1918f46a..fe054a37b 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -21,6 +21,7 @@ import datetime from django.conf import settings from django.contrib.gis.db import models +from django.db.models import Q from django.db.models.signals import post_save, post_delete from django.template.defaultfilters import slugify from django.utils.translation import ugettext_lazy as _, ugettext @@ -78,6 +79,10 @@ class Warehouse(Address, OwnPerms): return datetime.date.today().strftime('%Y-%m-%d') + '-' + \ slugify(unicode(self)) + @classmethod + def get_query_owns(cls, user): + return Q(person_in_charge__ishtaruser=user.ishtaruser) + def save(self, *args, **kwargs): super(Warehouse, self).save(*args, **kwargs) for container in self.containers.all(): @@ -208,6 +213,12 @@ class Container(LightHistorizedItem, ImageModel): cached_label = u" - ".join(items) return cached_label + @classmethod + def get_query_owns(cls, user): + return Q(history_creator=user) | \ + Q(location__person_in_charge__ishtaruser=user.ishtaruser) | \ + Q(responsible__person_in_charge__ishtaruser=user.ishtaruser) + @property def associated_filename(self): filename = datetime.date.today().strftime('%Y-%m-%d') -- cgit v1.2.3 From 88359ac26f56f3c6dae232bb9af529b9a35c758e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 29 Mar 2017 19:42:02 +0200 Subject: Access control: collaborators are included in get_own_query for operations, context records and finds (refs #3196) --- archaeological_context_records/models.py | 1 + archaeological_finds/models_finds.py | 2 ++ archaeological_operations/models.py | 6 ++++-- 3 files changed, 7 insertions(+), 2 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index a16b4cae7..bba9c643b 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -367,6 +367,7 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, def get_query_owns(cls, user): return (Q(operation__scientist=user.ishtaruser.person) | Q(operation__in_charge=user.ishtaruser.person) | + Q(operation__collaborators__pk=user.ishtaruser.person.pk) | Q(history_creator=user)) \ & Q(operation__end_date__isnull=True) diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index cbd13e925..735bc01a8 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -872,6 +872,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): ishtaruser.person) | Q(base_finds__context_record__operation__in_charge=user. ishtaruser.person) | + Q(base_finds__context_record__operation__collaborators__pk=user. + ishtaruser.person.pk) | Q(history_creator=user)) \ & Q(base_finds__context_record__operation__end_date__isnull=True) diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 782f9cf35..13997a632 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -572,8 +572,10 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, @classmethod def get_query_owns(cls, user): - return (Q(in_charge=user.ishtaruser.person) |\ - Q(scientist=user.ishtaruser.person) |\ + return ( + Q(in_charge=user.ishtaruser.person) | + Q(scientist=user.ishtaruser.person) | + Q(collaborators__pk=user.ishtaruser.person.pk) | Q(history_creator=user)) & Q(end_date__isnull=True) def is_active(self): -- cgit v1.2.3 From fe6ad5563ba6b46a04653af00109b100d551a676 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 30 Mar 2017 02:02:12 +0200 Subject: Access control: fix some inconsistent settings for actions --- archaeological_context_records/urls.py | 4 ++-- archaeological_finds/ishtar_menu.py | 32 ++++++++++++++++---------------- archaeological_finds/urls.py | 4 ++-- archaeological_operations/urls.py | 3 ++- 4 files changed, 22 insertions(+), 21 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index 341d321f9..e89a76aef 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -23,7 +23,7 @@ from archaeological_context_records import models from ishtar_common.wizards import check_rights import views -# be carreful: each check_rights must be relevant with ishtar_menu +# be careful: each check_rights must be relevant with ishtar_menu # forms urlpatterns = patterns( @@ -33,7 +33,7 @@ urlpatterns = patterns( check_rights(['view_contextrecord', 'view_own_contextrecord'])( views.record_search_wizard), name='record_search'), url(r'record_creation/(?P.+)?$', - check_rights(['add_contextrecord'])( + check_rights(['add_contextrecord', 'add_own_contextrecord'])( views.record_creation_wizard), name='record_creation'), url(r'record_modification/(?P.+)?$', check_rights(['change_contextrecord', 'change_own_contextrecord'])( diff --git a/archaeological_finds/ishtar_menu.py b/archaeological_finds/ishtar_menu.py index 44a19dc02..4877e442c 100644 --- a/archaeological_finds/ishtar_menu.py +++ b/archaeological_finds/ishtar_menu.py @@ -112,23 +112,23 @@ MENU_SECTIONS = [ MenuItem('treatmentfle_search', _(u"Search"), model=models.TreatmentFile, - access_controls=['view_find', - 'view_own_find']), + access_controls=['view_treatmentfile', + 'view_own_treatmentfile']), MenuItem('treatmentfle_creation', _(u"Creation"), model=models.TreatmentFile, - access_controls=['change_find', - 'change_own_find']), + access_controls=['change_treatmentfile', + 'change_own_treatmentfile']), MenuItem('treatmentfle_modification', _(u"Modification"), model=models.TreatmentFile, - access_controls=['change_find', - 'change_own_find']), + access_controls=['change_treatmentfile', + 'change_own_treatmentfile']), MenuItem('treatmentfle_deletion', _(u"Deletion"), model=models.TreatmentFile, - access_controls=['change_find', - 'change_own_find']), + access_controls=['change_treatmentfile', + 'change_own_treatmentfile']), SectionItem( 'admin_act_fletreatments', _(u"Administrative act"), childs=[ @@ -192,23 +192,23 @@ MENU_SECTIONS = [ MenuItem('treatment_search', _(u"Search"), model=models.Treatment, - access_controls=['view_find', - 'view_own_find']), + access_controls=['view_treatment', + 'view_own_treatment']), MenuItem('treatment_creation', _(u"Creation"), model=models.Treatment, - access_controls=['change_find', - 'change_own_find']), + access_controls=['change_treatment', + 'change_own_treatment']), MenuItem('treatment_modification', _(u"Modification"), model=models.Treatment, - access_controls=['change_find', - 'change_own_find']), + access_controls=['change_treatment', + 'change_own_treatment']), MenuItem('treatment_deletion', _(u"Deletion"), model=models.Treatment, - access_controls=['change_find', - 'change_own_find']), + access_controls=['change_treatment', + 'change_own_treatment']), ]), SectionItem( 'admin_act_treatments', _(u"Administrative act"), diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py index 06d505896..9c331ccc9 100644 --- a/archaeological_finds/urls.py +++ b/archaeological_finds/urls.py @@ -24,7 +24,7 @@ import views from archaeological_finds import models -# be carreful: each check_rights must be relevant with ishtar_menu +# be careful: each check_rights must be relevant with ishtar_menu # forms urlpatterns = patterns( @@ -33,7 +33,7 @@ urlpatterns = patterns( check_rights(['view_find', 'view_own_find'])( views.find_search_wizard), name='find_search'), url(r'find_creation/(?P.+)?$', - check_rights(['add_find'])( + check_rights(['add_find', 'add_own_find'])( views.find_creation_wizard), name='find_creation'), url(r'find_modification/(?P.+)?$', check_rights(['change_find', 'change_own_find'])( diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py index e98ddc93f..bc6bc4bee 100644 --- a/archaeological_operations/urls.py +++ b/archaeological_operations/urls.py @@ -69,7 +69,8 @@ urlpatterns = patterns( check_rights(['view_operation', 'view_own_operation'])( views.operation_search_wizard), name='operation_search'), url(r'operation_creation/(?P.+)?$', - check_rights(['add_operation'])(views.operation_creation_wizard), + check_rights(['add_operation', 'add_own_operation'])( + views.operation_creation_wizard), name='operation_creation'), url(r'operation_add/(?P\d+)$', views.operation_add, name='operation_add'), -- cgit v1.2.3 From c6835861d3b3575b25161eb13b8284b0da663ab8 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 30 Mar 2017 12:31:55 +0200 Subject: Sources: fix query owns requests (refs #3196) --- archaeological_context_records/models.py | 9 +++++++++ archaeological_finds/models_finds.py | 12 ++++++++++++ archaeological_operations/models.py | 7 +++++++ ishtar_common/models.py | 2 +- 4 files changed, 29 insertions(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index bba9c643b..5e6b4622b 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -624,3 +624,12 @@ class ContextRecordSource(Source): @property def owner(self): return self.context_record + + @classmethod + def get_query_owns(cls, user): + return ( + Q(context_record__operation__scientist=user.ishtaruser.person) | + Q(context_record__operation__in_charge=user.ishtaruser.person) | + Q(context_record__operation__collaborators__pk= + user.ishtaruser.person.pk)) \ + & Q(context_record__operation__end_date__isnull=True) diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 735bc01a8..f6be69f93 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1078,6 +1078,18 @@ class FindSource(Source): def owner(self): return self.find + @classmethod + def get_query_owns(cls, user): + return (Q(find__base_finds__context_record__operation__scientist=user. + ishtaruser.person) | + Q(find__base_finds__context_record__operation__in_charge=user. + ishtaruser.person) | + Q( + find__base_finds__context_record__operation__collaborators__pk=user. + ishtaruser.person.pk)) \ + & Q( + find__base_finds__context_record__operation__end_date__isnull=True) + class Property(LightHistorizedItem): find = models.ForeignKey(Find, verbose_name=_(u"Find")) diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 13997a632..d18181722 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -915,6 +915,13 @@ class OperationSource(Source): return u"{}-{:04d}".format(self.operation.code_patriarche or '', self.index) + @classmethod + def get_query_owns(cls, user): + return (Q(operation__in_charge=user.ishtaruser.person) | + Q(operation__scientist=user.ishtaruser.person) | + Q(operation__collaborators__pk=user.ishtaruser.person.pk)) \ + & Q(operation__end_date__isnull=True) + class ActType(GeneralType): TYPE = (('F', _(u'Archaeological file')), diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 35608abdf..6a9f86569 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2903,7 +2903,7 @@ post_save.connect(post_save_cache, sender=Format) post_delete.connect(post_save_cache, sender=Format) -class Source(ImageModel, models.Model): +class Source(OwnPerms, ImageModel, models.Model): title = models.CharField(_(u"Title"), max_length=300) external_id = models.CharField(_(u"External ID"), max_length=12, null=True, blank=True) -- cgit v1.2.3 From 90f5243a9d755affed1cca8ab020ea49b7c8ea25 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 30 Mar 2017 12:56:45 +0200 Subject: Permissions: add missing permissions for authors and sources (refs #2068) --- archaeological_context_records/models.py | 12 ++++++++++++ archaeological_finds/models_finds.py | 12 ++++++++++++ ishtar_common/models.py | 13 +++++++++++++ 3 files changed, 37 insertions(+) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 5e6b4622b..490124342 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -617,6 +617,18 @@ class ContextRecordSource(Source): class Meta: verbose_name = _(u"Context record documentation") verbose_name_plural = _(u"Context record documentations") + permissions = ( + ("view_contextrecordsource", + ugettext(u"Can view all Context record sources")), + ("view_own_contextrecordsource", + ugettext(u"Can view own Context record source")), + ("add_own_contextrecordsource", + ugettext(u"Can add own Context record source")), + ("change_own_contextrecordsource", + ugettext(u"Can change own Context record source")), + ("delete_own_contextrecordsource", + ugettext(u"Can delete own Context record source")), + ) context_record = models.ForeignKey( ContextRecord, verbose_name=_(u"Context record"), related_name="source") diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index f6be69f93..19464838b 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1071,6 +1071,18 @@ class FindSource(Source): class Meta: verbose_name = _(u"Find documentation") verbose_name_plural = _(u"Find documentations") + permissions = ( + ("view_findsource", + ugettext(u"Can view all Find sources")), + ("view_own_findsource", + ugettext(u"Can view own Find source")), + ("add_own_findsource", + ugettext(u"Can add own Find source")), + ("change_own_findsource", + ugettext(u"Can change own Find source")), + ("delete_own_findsource", + ugettext(u"Can delete own Find source")), + ) find = models.ForeignKey(Find, verbose_name=_(u"Find"), related_name="source") diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 6a9f86569..048af1294 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2844,6 +2844,7 @@ IshtarUser._meta.get_field('password').help_text = _( class AuthorType(GeneralType): order = models.IntegerField(_(u"Order"), default=1) + class Meta: verbose_name = _(u"Author type") verbose_name_plural = _(u"Author types") @@ -2861,6 +2862,18 @@ class Author(models.Model): verbose_name = _(u"Author") verbose_name_plural = _(u"Authors") ordering = ('author_type__order', 'person__name') + permissions = ( + ("view_author", + ugettext(u"Can view all Authors")), + ("view_own_author", + ugettext(u"Can view own Author")), + ("add_own_author", + ugettext(u"Can add own Author")), + ("change_own_author", + ugettext(u"Can change own Author")), + ("delete_own_author", + ugettext(u"Can delete own Author")), + ) def __unicode__(self): return unicode(self.person) + settings.JOINT + \ -- cgit v1.2.3 From ee3066e73b14818f19bd803146d521da86c9d851 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 30 Mar 2017 16:32:23 +0200 Subject: Add permissions for treatments sources --- archaeological_finds/models_treatments.py | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index 6847029c7..d1b209134 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -579,6 +579,24 @@ class TreatmentSource(Source): class Meta: verbose_name = _(u"Treatment documentation") verbose_name_plural = _(u"Treament documentations") + permissions = ( + ("view_treatmentsource", + ugettext(u"Can view all Treatment source")), + ("add_treatmentsource", + ugettext(u"Can add Treatment source")), + ("change_treatmentsource", + ugettext(u"Can change Treatment source")), + ("delete_treatmentsource", + ugettext(u"Can delete Treatment source")), + ("view_own_treatmentsource", + ugettext(u"Can view own Treatment source")), + ("add_own_treatmentsource", + ugettext(u"Can add own Treatment source")), + ("change_own_treatmentsource", + ugettext(u"Can change own Treatment source")), + ("delete_own_treatmentsource", + ugettext(u"Can delete own Treatment source")), + ) @property def owner(self): @@ -597,6 +615,24 @@ class TreatmentFileSource(Source): class Meta: verbose_name = _(u"Treatment request documentation") verbose_name_plural = _(u"Treatment request documentations") + permissions = ( + ("view_filetreatmentsource", + ugettext(u"Can view all Treatment request source")), + ("add_filetreatmentsource", + ugettext(u"Can add Treatment request source")), + ("change_filetreatmentsource", + ugettext(u"Can change Treatment request source")), + ("delete_filetreatmentsource", + ugettext(u"Can delete Treatment request source")), + ("view_own_filetreatmentsource", + ugettext(u"Can view own Treatment request source")), + ("add_own_filetreatmentsource", + ugettext(u"Can add own Treatment request source")), + ("change_own_filetreatmentsource", + ugettext(u"Can change own Treatment request source")), + ("delete_own_filetreatmentsource", + ugettext(u"Can delete own Treatment request source")), + ) @property def owner(self): -- cgit v1.2.3 From d988e53b80d883f86e705e1c1425e894ee4dd52f Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 30 Mar 2017 18:14:23 +0200 Subject: Permissions: remove explicit add / change / delete permissions They are not required because Meta > permissions is used to specify *extra* permissions not the basic one. Furthermore a strange bug occurs on initialization. Only done for TreatmentSource, this should be do for each model. --- archaeological_finds/models_treatments.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index d1b209134..c128dbe01 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -582,12 +582,6 @@ class TreatmentSource(Source): permissions = ( ("view_treatmentsource", ugettext(u"Can view all Treatment source")), - ("add_treatmentsource", - ugettext(u"Can add Treatment source")), - ("change_treatmentsource", - ugettext(u"Can change Treatment source")), - ("delete_treatmentsource", - ugettext(u"Can delete Treatment source")), ("view_own_treatmentsource", ugettext(u"Can view own Treatment source")), ("add_own_treatmentsource", -- cgit v1.2.3 From 3565d1fee6f675646f60c1690bb1c81549b227a9 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sun, 2 Apr 2017 21:46:17 +0200 Subject: Finds: do not resize the image and regenerate a thumb on find duplication (refs #3579) --- archaeological_finds/models_finds.py | 24 ++++++++++++++---------- archaeological_finds/tests.py | 22 ++++++++++++++++++++++ ishtar_common/models.py | 4 ++++ 3 files changed, 40 insertions(+), 10 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 19464838b..1b492148a 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -847,16 +847,20 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): def duplicate(self, user): model = self.__class__ - # base fields - table_cols = [field.name for field in model._meta.fields - if field.name not in PRIVATE_FIELDS or - field.name == 'order'] - dct = dict([(attr, getattr(self, attr)) for attr in - table_cols]) - dct['order'] += 1 - dct['history_modifier'] = user - new = self.__class__(**dct) - new.save() + + new = model.objects.get(pk=self.pk) + + for field in model._meta.fields: + # pk is in PRIVATE_FIELDS so: new.pk = None and a new + # item will be created on save + if field.name in PRIVATE_FIELDS: + setattr(new, field.name, None) + new.order = self.order + 1 + new.history_order = user + new.image.name = self.image.name + # force_copy is necessary to not regenerate a thumb and resize + # again the image + new.save(force_copy=True) # m2m fields m2m = [field.name for field in model._meta.many_to_many diff --git a/archaeological_finds/tests.py b/archaeological_finds/tests.py index e274c757f..1268b4f03 100644 --- a/archaeological_finds/tests.py +++ b/archaeological_finds/tests.py @@ -21,6 +21,7 @@ import json from django.conf import settings from django.contrib.auth.models import User +from django.core.files import File from django.core.files.uploadedfile import SimpleUploadedFile from django.core.urlresolvers import reverse from django.test.client import Client @@ -474,8 +475,14 @@ class PackagingTest(FindInit, TestCase): model = models.Find def setUp(self): + img = settings.ROOT_PATH + \ + '../ishtar_common/static/media/images/ishtar-bg.jpg' + self.create_finds({"label": u"Find 1"}, force=True) self.create_finds({"label": u"Find 2"}, force=True) + self.finds[0].image.save('ishtar-bg.jpg', File(open(img))) + self.finds[0].save() + self.basket = models.FindBasket.objects.create( label="My basket", user=IshtarUser.objects.get( pk=self.get_default_user().pk)) @@ -490,11 +497,26 @@ class PackagingTest(FindInit, TestCase): treatment_type = models.TreatmentType.objects.get(txt_idx='packaging') treatment = models.Treatment() items_nb = models.Find.objects.count() + + first_find = self.finds[0] + treatment.save(user=self.get_default_user(), items=self.basket) self.assertEqual(items_nb + self.basket.items.count(), models.Find.objects.count(), msg="Packaging doesn't generate enough new finds") treatment.treatment_types.add(treatment_type) + + resulting_find = models.Find.objects.get( + upstream_treatment__upstream=first_find, + base_finds__pk=first_find.base_finds.all()[0].pk + ) + + # image names used to be altered on save: check for this bug + self.assertEqual( + resulting_find.image.name, + models.Find.objects.get(pk=first_find.pk).image.name + ) + # new version of the find is in the basket for item in self.basket.items.all(): self.assertNotIn( diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 66433747c..7873b63f8 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -769,6 +769,10 @@ class ImageModel(models.Model): return SimpleUploadedFile('temp', temp.read()) def save(self, *args, **kwargs): + if 'force_copy' in kwargs: + kwargs.pop('force_copy') + super(ImageModel, self).save(*args, **kwargs) + return # manage images if self.has_changed('image') and self.image: # convert to jpg -- cgit v1.2.3 From 3f18460f80c89d5de4420fbe53fb39991cd08105 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 3 Apr 2017 19:15:13 +0200 Subject: Fix find modify action (refs #3405) --- archaeological_finds/views.py | 2 +- ishtar_common/models.py | 2 ++ ishtar_common/wizards.py | 8 +++++++- 3 files changed, 10 insertions(+), 2 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index 03094cbb0..680faf421 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -169,7 +169,7 @@ find_modification_wizard = FindModificationWizard.as_view([ def find_modify(request, pk): - # view = find_modification_wizard(request) + find_modification_wizard(request) FindModificationWizard.session_set_value( request, 'selec-find_modification', 'pk', pk, reset=True) return redirect( diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 7873b63f8..bf5c6056a 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -191,6 +191,8 @@ def valid_ids(cls): def func(value): if "," in value: value = value.split(",") + if type(value) not in (list, tuple): + value = [value] for v in value: try: cls.objects.get(pk=v) diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 61923d920..8d787d733 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -51,10 +51,16 @@ class MultiValueDict(BaseMultiValueDict): v = v() if type(v) in (list, tuple) and len(v) > 1: v = ",".join(v) - else: + elif type(v) not in (int, unicode): v = super(MultiValueDict, self).get(*args, **kwargs) return v + def getlist(self, *args, **kwargs): + lst = super(MultiValueDict, self).getlist(*args, **kwargs) + if type(lst) not in (tuple, list): + lst = [lst] + return lst + def check_rights(rights=[], redirect_url='/'): """ -- cgit v1.2.3 From f6058532b7644c586d28eeeaf8b9308320f9fe19 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 4 Apr 2017 11:41:04 +0200 Subject: Base finds: fix cache generation on context record change (refs #3484) --- archaeological_context_records/models.py | 7 +++-- archaeological_context_records/tests.py | 48 ++++++++++++++++++++++++++++++-- archaeological_finds/models_finds.py | 7 +++++ archaeological_operations/tests.py | 2 +- 4 files changed, 58 insertions(+), 6 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 490124342..4084ec05a 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -159,7 +159,7 @@ class CRBulkView(object): class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, - ValueGetter, ShortMenuItem): + ValueGetter, ShortMenuItem): SHOW_URL = 'show-contextrecord' SLUG = 'contextrecord' TABLE_COLS = ['label', 'operation__common_name', 'parcel__town__name', @@ -403,8 +403,9 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, return self.full_label() def _get_associated_cached_labels(self): - from archaeological_finds.models import Find - return list(Find.objects.filter(base_finds__context_record=self).all()) + from archaeological_finds.models import Find, BaseFind + return list(Find.objects.filter(base_finds__context_record=self).all())\ + + list(BaseFind.objects.filter(context_record=self).all()) @property def reference(self): diff --git a/archaeological_context_records/tests.py b/archaeological_context_records/tests.py index 6bb293e4d..14a5ae8d3 100644 --- a/archaeological_context_records/tests.py +++ b/archaeological_context_records/tests.py @@ -235,7 +235,7 @@ class ContextRecordTest(ContextRecordInit, TestCase): models.RecordRelations.objects.create( left_record=cr_1, right_record=cr_2, relation_type=sym_rel_type) - def testExternalID(self): + def test_external_id(self): cr = self.context_records[0] self.assertEqual( cr.external_id, @@ -255,7 +255,7 @@ class ContextRecordTest(ContextRecordInit, TestCase): cr.operation ) - def test_cache_update(self): + def test_upstream_cache_update(self): cr = self.create_context_record()[0] cr_pk = cr.pk # OP2010 - 1 | A | 1 | CR 1 @@ -288,6 +288,50 @@ class ContextRecordTest(ContextRecordInit, TestCase): ope_id, parcel_sec, parcel_nb, cr_label = cr.cached_label.split(' | ') self.assertEqual(ope_id, 'OP2017-1') + def test_downstream_cache_update(self): + cr = self.create_context_record()[0] + + from archaeological_finds.models import Find, BaseFind, MaterialType + + data = { + 'label': "Find me a reason", + 'context_record': cr, + 'history_modifier': self.get_default_user() + } + bf = BaseFind.objects.create(**data) + find = Find.objects.create( + history_modifier=self.get_default_user(), + label='Find me too' + ) + find.base_finds.add(bf) + + mat = MaterialType.objects.create( + label='Adamentium', txt_idx='admentium', code='ADA') + find.material_types.add(mat) + + class TestObj(object): + def __init__(self): + self.find_reached = [] + + def reached(self, sender, **kwargs): + instance = kwargs.get('instance') + if sender == Find: + self.find_reached.append(instance) + + test_obj = TestObj() + cr = models.ContextRecord.objects.get(pk=cr.pk) + cr.test_obj = test_obj + cr.label = "New label!" + cr.save() + + # verify the relevance of the update + bf = BaseFind.objects.get(pk=bf.pk) + self.assertIn("New label!", bf.cache_complete_id) + + # bulk update of find cached label gen don't have to be + # reached + self.assertEqual(len(test_obj.find_reached), 0) + class ContextRecordSearchTest(ContextRecordInit, TestCase): fixtures = ImportContextRecordTest.fixtures diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 1b492148a..68bc5269c 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -192,6 +192,7 @@ class BaseFind(BaseHistorizedItem, OwnPerms): help_text=_(u"Cached value - do not edit")) history = HistoricalRecords() RELATED_POST_PROCESS = ['find'] + CACHED_LABELS = ['cache_short_id', 'cache_complete_id'] class Meta: verbose_name = _(u"Base find") @@ -254,6 +255,9 @@ class BaseFind(BaseHistorizedItem, OwnPerms): ).format(self.index)) return settings.JOINT.join(c_id) + def _generate_cache_complete_id(self): + return self.complete_id() + def short_id(self): # OPE|FIND_index c_id = [self._ope_code()] @@ -261,6 +265,9 @@ class BaseFind(BaseHistorizedItem, OwnPerms): ).format(self.index)) return settings.JOINT.join(c_id) + def _generate_cache_short_id(self): + return self.short_id() + def full_label(self): return self._real_label() or self._temp_label() or u"" diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index e1ae68237..67f9454fa 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2012-2016 Étienne Loks +# Copyright (C) 2012-2017 Étienne Loks # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as -- cgit v1.2.3 From a0ef455fb3b477fbf03d9e8beee4bf7f122451d6 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 4 Apr 2017 12:13:04 +0200 Subject: Base finds: bulk update of finds on context record change (refs #3484) --- archaeological_context_records/models.py | 7 +++++++ archaeological_context_records/tests.py | 6 +++++- archaeological_finds/models_finds.py | 20 ++++++++++++++++++-- 3 files changed, 30 insertions(+), 3 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 4084ec05a..bb3afc899 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -407,6 +407,13 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, return list(Find.objects.filter(base_finds__context_record=self).all())\ + list(BaseFind.objects.filter(context_record=self).all()) + def _cached_labels_bulk_update(self): + if settings.TESTING and settings.USE_SPATIALITE_FOR_TESTS: + return + self.base_finds.model.cached_label_bulk_update( + context_record_id=self.pk) + return True + @property def reference(self): if not self.operation: diff --git a/archaeological_context_records/tests.py b/archaeological_context_records/tests.py index 14a5ae8d3..4226b42ea 100644 --- a/archaeological_context_records/tests.py +++ b/archaeological_context_records/tests.py @@ -289,6 +289,10 @@ class ContextRecordTest(ContextRecordInit, TestCase): self.assertEqual(ope_id, 'OP2017-1') def test_downstream_cache_update(self): + if settings.USE_SPATIALITE_FOR_TESTS: + # using views - can only be tested with postgresql + return + cr = self.create_context_record()[0] from archaeological_finds.models import Find, BaseFind, MaterialType @@ -315,7 +319,7 @@ class ContextRecordTest(ContextRecordInit, TestCase): def reached(self, sender, **kwargs): instance = kwargs.get('instance') - if sender == Find: + if sender in (Find, BaseFind): self.find_reached.append(instance) test_obj = TestObj() diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 68bc5269c..3e14aa592 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -330,7 +330,8 @@ class BaseFind(BaseHistorizedItem, OwnPerms): return returned @classmethod - def cached_label_bulk_update(cls, operation_id=None, parcel_id=None): + def cached_label_bulk_update(cls, operation_id=None, parcel_id=None, + context_record_id=None): if operation_id: filters = """ INNER JOIN archaeological_context_records_contextrecord acr @@ -345,6 +346,12 @@ class BaseFind(BaseHistorizedItem, OwnPerms): """ args = [int(parcel_id)] kwargs = {'parcel_id': parcel_id} + elif context_record_id: + filters = """ + WHERE mybf.context_record_id = %s + """ + args = [int(context_record_id)] + kwargs = {'context_record_id': context_record_id} else: return @@ -905,7 +912,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): return unicode(self) @classmethod - def cached_label_bulk_update(cls, operation_id=None, parcel_id=None): + def cached_label_bulk_update(cls, operation_id=None, parcel_id=None, + context_record_id=None): if operation_id: filters = """ INNER JOIN find_first_base_find myfbf @@ -926,6 +934,14 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): ON acr.parcel_id = %s AND acr.id = mybf.context_record_id """ args = [int(parcel_id)] + elif context_record_id: + filters = """ + INNER JOIN find_first_base_find myfbf + ON myfbf.find_id = myf.id + INNER JOIN archaeological_finds_basefind mybf + ON myfbf.basefind_id = mybf.id AND mybf.context_record_id = %s + """ + args = [int(parcel_id)] else: return -- cgit v1.2.3 From 3a5dbf688d058bd39aaae308cd7224ddd42c7890 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 4 Apr 2017 14:57:10 +0200 Subject: Base finds: fix bulk update of finds on context record change (refs #3484) --- archaeological_finds/models_finds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 3e14aa592..3785267b2 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -941,7 +941,7 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): INNER JOIN archaeological_finds_basefind mybf ON myfbf.basefind_id = mybf.id AND mybf.context_record_id = %s """ - args = [int(parcel_id)] + args = [int(context_record_id)] else: return -- cgit v1.2.3 From 2e512bc9dffca5624342aa75ca01b3ff7f390141 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 5 Apr 2017 11:33:54 +0200 Subject: Warehouse sheet: provide statistics (refs #3398) - Number of finds (total and by places) - Number of container (total and by places) --- archaeological_finds/models_finds.py | 8 +- archaeological_operations/models.py | 8 -- .../templates/ishtar/sheet_operation.html | 1 + archaeological_warehouse/models.py | 103 ++++++++++++++++++++- .../templates/ishtar/sheet_warehouse.html | 44 +++++++++ example_project/settings.py | 2 +- ishtar_common/models.py | 13 +++ ishtar_common/static/media/style.css | 6 ++ 8 files changed, 168 insertions(+), 17 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 3785267b2..52601c896 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -37,7 +37,6 @@ from archaeological_operations.models import AdministrativeAct from archaeological_context_records.models import ContextRecord, Dating from ishtar_common.models import PRIVATE_FIELDS, SpatialReferenceSystem -from archaeological_warehouse.models import Container, Collection class MaterialType(GeneralType): @@ -637,7 +636,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): datings = models.ManyToManyField(Dating, verbose_name=_(u"Dating"), related_name='find') container = models.ForeignKey( - Container, verbose_name=_(u"Container"), blank=True, null=True, + "archaeological_warehouse.Container", verbose_name=_(u"Container"), + blank=True, null=True, related_name='finds', on_delete=models.SET_NULL) is_complete = models.NullBooleanField(_(u"Is complete?"), blank=True, null=True) @@ -671,8 +671,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): estimated_value = models.FloatField(_(u"Estimated value"), blank=True, null=True) collection = models.ForeignKey( - Collection, verbose_name=_(u"Collection"), blank=True, null=True, - related_name='finds', on_delete=models.SET_NULL) + "archaeological_warehouse.Collection", verbose_name=_(u"Collection"), + blank=True, null=True, related_name='finds', on_delete=models.SET_NULL) cached_label = models.TextField(_(u"Cached name"), null=True, blank=True) history = HistoricalRecords() BASKET_MODEL = FindBasket diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index bef149b2c..3826678c3 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -593,14 +593,6 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, nb = self.parcels.count() return nb - def _get_or_set_stats(self, funcname, update): - key, val = get_cache(self.__class__, [funcname, self.pk]) - if not update and val is not None: - return val - val = getattr(self, funcname)() - cache.set(key, val, settings.CACHE_TIMEOUT) - return val - @property def nb_acts(self, update=False): _(u"Number of administrative acts") diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index 71f41d8c4..5051c4604 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -142,6 +142,7 @@ {% endif %}

    {% trans "Statistics" %}

    +{% trans "Theses number are updated hourly" %}

    {% trans "Administrative acts" %}

      diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index fe054a37b..2851e1df0 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -21,7 +21,7 @@ import datetime from django.conf import settings from django.contrib.gis.db import models -from django.db.models import Q +from django.db.models import Q, Count from django.db.models.signals import post_save, post_delete from django.template.defaultfilters import slugify from django.utils.translation import ugettext_lazy as _, ugettext @@ -29,7 +29,9 @@ from django.utils.translation import ugettext_lazy as _, ugettext from ishtar_common.utils import cached_label_changed from ishtar_common.models import GeneralType, get_external_id, \ - LightHistorizedItem, OwnPerms, Address, Person, post_save_cache, ImageModel + LightHistorizedItem, OwnPerms, Address, Person, post_save_cache, \ + ImageModel, DashboardFormItem +from archaeological_finds.models import Find class WarehouseType(GeneralType): @@ -41,7 +43,7 @@ post_save.connect(post_save_cache, sender=WarehouseType) post_delete.connect(post_save_cache, sender=WarehouseType) -class Warehouse(Address, OwnPerms): +class Warehouse(Address, DashboardFormItem, OwnPerms): SHOW_URL = 'show-warehouse' name = models.CharField(_(u"Name"), max_length=200) warehouse_type = models.ForeignKey(WarehouseType, @@ -83,6 +85,98 @@ class Warehouse(Address, OwnPerms): def get_query_owns(cls, user): return Q(person_in_charge__ishtaruser=user.ishtaruser) + @property + def number_of_finds(self): + return Find.objects.filter(container__responsible=self).count() + + @property + def number_of_finds_hosted(self): + return Find.objects.filter(container__location=self).count() + + @property + def number_of_containers(self): + return Container.objects.filter(location=self).count() + + def _get_divisions(self, current_path, remaining_division, depth=0): + if not remaining_division: + return [current_path] + current_division = remaining_division.pop(0) + q = ContainerLocalisation.objects.filter( + division=current_division, + ) + for div, ref in current_path: + q = q.filter( + container__division__division=div, + container__division__reference=ref + ) + res = [] + old_ref = None + for ref in q.values('reference').order_by('reference').all(): + if ref['reference'] == old_ref: + continue + old_ref = ref['reference'] + cpath = current_path[:] + cpath.append((current_division, ref['reference'])) + for r in self._get_divisions(cpath, remaining_division[:], + depth + 1): + res.append(r) + return res + + @property + def available_division_tuples(self): + """ + :return: ordered list of available paths. Each path is a list of + tuple with the WarehouseDivisionLink and the reference. + """ + divisions = list( + WarehouseDivisionLink.objects.filter(warehouse=self + ).order_by('order').all()) + return self._get_divisions([], divisions) + + def _number_of_items_by_place(self, model, division_key='division'): + res = {} + paths = self.available_division_tuples[:] + for path in paths: + q = model.objects + cpath = [] + for division, ref in path: + lbl = u"{} {}".format(division.division, ref) + cpath.append(lbl) + attrs = { + division_key + "__division": division, + division_key + "__reference": ref + } + q = q.filter(**attrs) + if tuple(cpath) not in res: + res[tuple(cpath)] = q.count() + res = [(k, res[k]) for k in res] + final_res, current_res, depth = [], [], 1 + for path, nb in sorted(res, key=lambda x: (len(x[0]), x[0])): + if depth != len(path): + final_res.append(current_res[:]) + current_res = [] + depth = len(path) + current_res.append((u" | ".join(path), nb)) + final_res.append(current_res[:]) + return final_res + + def _number_of_finds_by_place(self): + return self._number_of_items_by_place( + Find, division_key='container__division') + + @property + def number_of_finds_by_place(self, update=False): + return self._get_or_set_stats('_number_of_finds_by_place', update, + settings.CACHE_SMALLTIMEOUT) + + def _number_of_containers_by_place(self): + return self._number_of_items_by_place(Container) + + @property + def number_of_containers_by_place(self, update=False): + return self._get_or_set_stats('_number_of_containers_by_place', update, + settings.CACHE_SMALLTIMEOUT) + def save(self, *args, **kwargs): super(Warehouse, self).save(*args, **kwargs) for container in self.containers.all(): @@ -287,7 +381,8 @@ post_save.connect(cached_label_changed, sender=Container) class ContainerLocalisation(models.Model): - container = models.ForeignKey(Container, verbose_name=_(u"Container")) + container = models.ForeignKey(Container, verbose_name=_(u"Container"), + related_name='division') division = models.ForeignKey(WarehouseDivisionLink, verbose_name=_(u"Division")) reference = models.CharField(_(u"Reference"), max_length=200, default='') diff --git a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html index c31fc93b4..17a2c6c2b 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html +++ b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html @@ -26,4 +26,48 @@ {% dynamic_table_document '' 'containers' 'responsible' item.pk 'TABLE_COLS' output %} {% endif %} +

      {% trans "Statistics" %}

      +{% trans "Theses number are updated hourly" %} + +

      {% trans "Finds" %}

      +
        + {% field_li "Number of attached finds" item.number_of_finds %} + {% field_li "Number of hosted finds" item.number_of_finds_hosted %} +
      + +{% if item.number_of_finds_by_place %} +

      {% trans "Finds by location in the warehouse" %}

      +
        + {% for items in item.number_of_finds_by_place %} +
      • + + {% for item in items %} + + {% endfor %} +
        {{item.0}}{{item.1}}
        +
      • + {% endfor %} +
      +{% endif %} + +

      {% trans "Containers" %}

      +
        + {% field_li "Number of containers" item.number_of_containers %} +
      + +{% if item.number_of_containers_by_place %} +

      {% trans "Containers by location in the warehouse" %}

      +
        + {% for items in item.number_of_containers_by_place %} +
      • + + {% for item in items %} + + {% endfor %} +
        {{item.0}}{{item.1}}
        +
      • + {% endfor %} +
      +{% endif %} + {% endblock %} diff --git a/example_project/settings.py b/example_project/settings.py index efbf0297a..78d97f0ae 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -18,7 +18,7 @@ if "test" in sys.argv: IMAGE_MAX_SIZE = (1024, 768) THUMB_MAX_SIZE = (300, 300) -CACHE_SMALLTIMEOUT = 120 +CACHE_SMALLTIMEOUT = 60 CACHE_TIMEOUT = 3600 CACHE_BACKEND = 'memcached://127.0.0.1:11211/' diff --git a/ishtar_common/models.py b/ishtar_common/models.py index bf5c6056a..1632cbfb2 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1306,6 +1306,19 @@ class UserDashboard: class DashboardFormItem(object): + """ + Provide methods to manage statistics + """ + + def _get_or_set_stats(self, funcname, update, + timeout=settings.CACHE_TIMEOUT): + key, val = get_cache(self.__class__, [funcname, self.pk]) + if not update and val is not None: + return val + val = getattr(self, funcname)() + cache.set(key, val, timeout) + return val + @classmethod def get_periods(cls, slice='month', fltr={}, date_source='creation'): date_var = date_source + '_date' diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index fc840526e..011db3652 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -324,6 +324,12 @@ ul.list{ line-height:16px; } +.centered{ + text-align: center; + width: 100%; + display: inline-block; +} + div.nav-button{ cursor:pointer; width:15px; -- cgit v1.2.3 From b21ae8fae5b267f80a9e6a82e1ea96512e1e14d6 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 5 Apr 2017 12:25:34 +0200 Subject: Update translation files --- archaeological_context_records/locale/django.pot | 69 ++- archaeological_files/locale/django.pot | 58 +- archaeological_finds/locale/django.pot | 405 ++++++++------ archaeological_operations/locale/django.pot | 518 ++++++++--------- archaeological_warehouse/locale/django.pot | 112 ++-- ishtar_common/locale/django.pot | 634 +++++++++++---------- translations/fr/archaeological_context_records.po | 81 ++- translations/fr/archaeological_files.po | 66 +-- translations/fr/archaeological_files_pdl.po | 8 +- translations/fr/archaeological_finds.po | 439 +++++++++------ translations/fr/archaeological_operations.po | 529 ++++++++--------- translations/fr/archaeological_warehouse.po | 121 ++-- translations/fr/ishtar_common.po | 654 +++++++++++----------- 13 files changed, 2033 insertions(+), 1661 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_context_records/locale/django.pot b/archaeological_context_records/locale/django.pot index eedcad733..82c64ac4c 100644 --- a/archaeological_context_records/locale/django.pot +++ b/archaeological_context_records/locale/django.pot @@ -4,14 +4,15 @@ # Étienne Loks , 2010-2015. # Valérie-Emma Leroux , 2016. #zanata # Valérie-Emma Leroux , 2017. #zanata +# Étienne Loks , 2017. #zanata msgid "" msgstr "" -#: forms.py:47 forms.py:51 models.py:216 models.py:589 wizards.py:77 +#: forms.py:47 forms.py:51 models.py:216 models.py:599 wizards.py:77 msgid "Operation" msgstr "" -#: forms.py:59 forms.py:141 models.py:218 models.py:557 +#: forms.py:59 forms.py:141 models.py:218 models.py:567 msgid "ID" msgstr "" @@ -63,11 +64,11 @@ msgstr "" msgid "General" msgstr "" -#: forms.py:140 models.py:181 models.py:214 models.py:559 +#: forms.py:140 models.py:181 models.py:214 models.py:569 msgid "Parcel" msgstr "" -#: forms.py:143 models.py:219 models.py:560 +#: forms.py:143 models.py:219 models.py:570 #: templates/ishtar/sheet_contextrecord.html:30 msgid "Description" msgstr "" @@ -104,7 +105,7 @@ msgstr "" msgid "Depth of appearance (m)" msgstr "" -#: forms.py:156 forms.py:376 models.py:241 models.py:558 +#: forms.py:156 forms.py:376 models.py:241 models.py:568 msgid "Context record type" msgstr "" @@ -151,7 +152,7 @@ msgstr "" msgid "Dating type" msgstr "" -#: forms.py:285 ishtar_menu.py:29 models.py:619 +#: forms.py:285 ishtar_menu.py:29 models.py:641 msgid "Context record" msgstr "" @@ -320,7 +321,7 @@ msgstr "" msgid "Documentation types" msgstr "" -#: models.py:172 models.py:561 +#: models.py:172 models.py:571 msgid "Periods" msgstr "" @@ -425,74 +426,94 @@ msgctxt "short" msgid "Context record" msgstr "" -#: models.py:491 +#: models.py:501 msgid "Inverse relation" msgstr "" -#: models.py:495 models.py:518 models.py:556 +#: models.py:505 models.py:528 models.py:566 msgid "Relation type" msgstr "" -#: models.py:496 +#: models.py:506 msgid "Relation types" msgstr "" -#: models.py:513 +#: models.py:523 msgid "ID (left)" msgstr "" -#: models.py:514 +#: models.py:524 msgid "Context record type (left)" msgstr "" -#: models.py:515 +#: models.py:525 msgid "Parcel (left)" msgstr "" -#: models.py:516 +#: models.py:526 msgid "Description (left)" msgstr "" -#: models.py:517 +#: models.py:527 msgid "Periods (left)" msgstr "" -#: models.py:519 +#: models.py:529 msgid "ID (right)" msgstr "" -#: models.py:520 +#: models.py:530 msgid "Context record type (right)" msgstr "" -#: models.py:521 +#: models.py:531 msgid "Parcel (right)" msgstr "" -#: models.py:522 +#: models.py:532 msgid "Description (right)" msgstr "" -#: models.py:523 +#: models.py:533 msgid "Periods (right)" msgstr "" -#: models.py:532 +#: models.py:542 msgid "Record relation" msgstr "" -#: models.py:533 +#: models.py:543 msgid "Record relations" msgstr "" -#: models.py:616 +#: models.py:626 msgid "Context record documentation" msgstr "" -#: models.py:617 +#: models.py:627 msgid "Context record documentations" msgstr "" +#: models.py:630 +msgid "Can view all Context record sources" +msgstr "" + +#: models.py:632 +msgid "Can view own Context record source" +msgstr "" + +#: models.py:634 +msgid "Can add own Context record source" +msgstr "" + +#: models.py:636 +msgid "Can change own Context record source" +msgstr "" + +#: models.py:638 +msgid "Can delete own Context record source" +msgstr "" + #: views.py:102 msgid "New context record" msgstr "" diff --git a/archaeological_files/locale/django.pot b/archaeological_files/locale/django.pot index 1e513ae12..62dcf19ae 100644 --- a/archaeological_files/locale/django.pot +++ b/archaeological_files/locale/django.pot @@ -9,7 +9,7 @@ msgid "" msgstr "" -#: forms.py:47 forms.py:210 forms.py:255 forms.py:396 forms.py:423 +#: forms.py:47 forms.py:210 forms.py:255 forms.py:394 forms.py:421 #: models.py:108 templates/ishtar/sheet_file.html:144 msgid "Year" msgstr "" @@ -22,15 +22,15 @@ msgstr "" msgid "Other reference" msgstr "" -#: forms.py:52 forms.py:431 +#: forms.py:52 forms.py:429 msgid "Parcel (section/number/public domain)" msgstr "" -#: forms.py:55 forms.py:407 forms.py:434 models.py:558 +#: forms.py:55 forms.py:405 forms.py:432 models.py:558 msgid "Department" msgstr "" -#: forms.py:56 forms.py:443 +#: forms.py:56 forms.py:441 msgid "File name" msgstr "" @@ -54,7 +54,7 @@ msgstr "" msgid "Permit reference" msgstr "" -#: forms.py:63 forms.py:227 forms.py:364 models.py:180 +#: forms.py:63 forms.py:227 forms.py:362 models.py:180 #: templates/ishtar/sheet_file.html:97 msgid "Comment" msgstr "" @@ -63,19 +63,19 @@ msgstr "" msgid "In charge" msgstr "" -#: forms.py:72 forms.py:281 forms.py:445 models.py:126 +#: forms.py:72 forms.py:281 forms.py:443 models.py:126 msgid "General contractor" msgstr "" -#: forms.py:79 forms.py:453 +#: forms.py:79 forms.py:451 msgid "Organization of general contractor" msgstr "" -#: forms.py:87 forms.py:476 +#: forms.py:87 forms.py:474 msgid "Created by" msgstr "" -#: forms.py:94 forms.py:484 +#: forms.py:94 forms.py:482 msgid "Modified by" msgstr "" @@ -169,83 +169,83 @@ msgstr "" msgid "Research archaeology" msgstr "" -#: forms.py:341 models.py:183 templates/ishtar/sheet_file.html:88 +#: forms.py:340 models.py:183 templates/ishtar/sheet_file.html:88 msgid "Departments" msgstr "" -#: forms.py:351 models.py:192 +#: forms.py:349 models.py:192 msgid "Scientist in charge" msgstr "" -#: forms.py:353 models.py:186 templates/ishtar/sheet_file.html:90 +#: forms.py:351 models.py:186 templates/ishtar/sheet_file.html:90 msgid "Requested operation type" msgstr "" -#: forms.py:355 +#: forms.py:353 msgid "Lead organization" msgstr "" -#: forms.py:371 models.py:196 templates/ishtar/sheet_file.html:95 +#: forms.py:369 models.py:196 templates/ishtar/sheet_file.html:95 msgid "Classified area" msgstr "" -#: forms.py:373 models.py:198 templates/ishtar/sheet_file.html:96 +#: forms.py:371 models.py:198 templates/ishtar/sheet_file.html:96 msgid "Protected area" msgstr "" -#: forms.py:387 +#: forms.py:385 msgid "Would you like to close this archaeological file?" msgstr "" -#: forms.py:392 +#: forms.py:390 msgid "Would you like to delete this archaeological file ?" msgstr "" -#: forms.py:397 forms.py:424 forms.py:547 +#: forms.py:395 forms.py:422 forms.py:545 msgid "Index" msgstr "" -#: forms.py:401 forms.py:428 forms.py:533 +#: forms.py:399 forms.py:426 forms.py:531 msgid "Act type" msgstr "" -#: forms.py:402 +#: forms.py:400 msgid "Object (full text search)" msgstr "" -#: forms.py:429 +#: forms.py:427 msgid "Indexed?" msgstr "" -#: forms.py:435 +#: forms.py:433 msgid "Object" msgstr "" -#: forms.py:439 +#: forms.py:437 msgid "Signature date after" msgstr "" -#: forms.py:441 +#: forms.py:439 msgid "Signature date before" msgstr "" -#: forms.py:461 +#: forms.py:459 msgid "File numeric reference" msgstr "" -#: forms.py:462 +#: forms.py:460 msgid "File year" msgstr "" -#: forms.py:464 +#: forms.py:462 msgid "File other reference" msgstr "" -#: forms.py:466 +#: forms.py:464 msgid "File in charge" msgstr "" -#: forms.py:474 +#: forms.py:472 msgid "File permit reference" msgstr "" diff --git a/archaeological_finds/locale/django.pot b/archaeological_finds/locale/django.pot index d48cbe962..dcbf94fca 100644 --- a/archaeological_finds/locale/django.pot +++ b/archaeological_finds/locale/django.pot @@ -5,348 +5,349 @@ # Valérie-Emma Leroux , 2016. #zanata # Étienne Loks , 2016. #zanata # Valérie-Emma Leroux , 2017. #zanata +# Étienne Loks , 2017. #zanata msgid "" msgstr "" -#: forms.py:93 forms.py:97 models_finds.py:505 wizards.py:64 +#: forms.py:93 forms.py:97 models_finds.py:518 wizards.py:64 msgid "Context record" msgstr "" -#: forms.py:126 ishtar_menu.py:32 models_finds.py:668 models_finds.py:1071 -#: models_finds.py:1080 models_treatments.py:281 +#: forms.py:126 ishtar_menu.py:32 models_finds.py:682 models_finds.py:1113 +#: models_finds.py:1134 models_treatments.py:281 #: templates/ishtar/sheet_find.html:5 msgid "Find" msgstr "" -#: forms.py:140 forms.py:333 forms.py:601 models_finds.py:151 -#: models_finds.py:599 +#: forms.py:140 forms.py:337 forms.py:605 models_finds.py:150 +#: models_finds.py:612 msgid "Free ID" msgstr "" -#: forms.py:142 models_finds.py:651 +#: forms.py:142 models_finds.py:665 msgid "Previous ID" msgstr "" -#: forms.py:143 forms.py:364 forms_treatments.py:134 models_finds.py:155 -#: models_finds.py:600 models_treatments.py:127 +#: forms.py:143 forms.py:368 forms_treatments.py:134 models_finds.py:154 +#: models_finds.py:613 models_treatments.py:127 msgid "Description" msgstr "" -#: forms.py:146 forms.py:366 models_finds.py:164 +#: forms.py:146 forms.py:370 models_finds.py:163 msgid "Batch/object" msgstr "" -#: forms.py:148 models_finds.py:628 +#: forms.py:148 models_finds.py:642 msgid "Is complete?" msgstr "" -#: forms.py:151 forms.py:354 forms.py:605 models_finds.py:51 +#: forms.py:151 forms.py:358 forms.py:609 models_finds.py:50 msgid "Material type" msgstr "" -#: forms.py:152 forms.py:358 models_finds.py:63 models_finds.py:604 +#: forms.py:154 forms.py:362 models_finds.py:62 models_finds.py:617 msgid "Conservatory state" msgstr "" -#: forms.py:155 models_finds.py:606 +#: forms.py:157 models_finds.py:619 msgid "Conservatory comment" msgstr "" -#: forms.py:158 models_finds.py:113 models_finds.py:631 +#: forms.py:160 models_finds.py:112 models_finds.py:645 msgid "Object types" msgstr "" -#: forms.py:160 forms.py:357 models_finds.py:72 +#: forms.py:164 forms.py:361 models_finds.py:71 msgid "Preservation type" msgstr "" -#: forms.py:163 forms.py:360 models_finds.py:633 +#: forms.py:167 forms.py:364 models_finds.py:647 msgid "Integrity / interest" msgstr "" -#: forms.py:166 forms.py:362 models_finds.py:636 +#: forms.py:170 forms.py:366 models_finds.py:650 msgid "Remarkability" msgstr "" -#: forms.py:169 models_finds.py:169 +#: forms.py:173 models_finds.py:168 msgid "Point of topographic reference" msgstr "" -#: forms.py:172 models_finds.py:171 +#: forms.py:176 models_finds.py:170 msgid "X" msgstr "" -#: forms.py:173 models_finds.py:172 +#: forms.py:177 models_finds.py:171 msgid "Y" msgstr "" -#: forms.py:174 models_finds.py:173 +#: forms.py:178 models_finds.py:172 msgid "Z" msgstr "" -#: forms.py:176 models_finds.py:181 +#: forms.py:180 models_finds.py:180 msgid "Spatial Reference System" msgstr "" -#: forms.py:179 models_finds.py:174 +#: forms.py:183 models_finds.py:173 msgid "Estimated error for X" msgstr "" -#: forms.py:181 models_finds.py:176 +#: forms.py:185 models_finds.py:175 msgid "Estimated error for Y" msgstr "" -#: forms.py:183 models_finds.py:178 +#: forms.py:187 models_finds.py:177 msgid "Estimated error for Z" msgstr "" -#: forms.py:184 models_finds.py:640 +#: forms.py:188 models_finds.py:654 msgid "Length (cm)" msgstr "" -#: forms.py:185 models_finds.py:641 +#: forms.py:189 models_finds.py:655 msgid "Width (cm)" msgstr "" -#: forms.py:186 models_finds.py:642 +#: forms.py:190 models_finds.py:656 msgid "Height (cm)" msgstr "" -#: forms.py:187 models_finds.py:643 +#: forms.py:191 models_finds.py:657 msgid "Diameter (cm)" msgstr "" -#: forms.py:188 models_finds.py:644 +#: forms.py:192 models_finds.py:658 msgid "Thickness (cm)" msgstr "" -#: forms.py:189 forms.py:606 models_finds.py:611 +#: forms.py:193 forms.py:610 models_finds.py:624 msgid "Volume (l)" msgstr "" -#: forms.py:190 forms.py:607 models_finds.py:612 +#: forms.py:194 forms.py:611 models_finds.py:625 msgid "Weight (g)" msgstr "" -#: forms.py:192 models_finds.py:645 +#: forms.py:196 models_finds.py:659 msgid "Dimensions comment" msgstr "" -#: forms.py:193 forms.py:608 models_finds.py:615 +#: forms.py:197 forms.py:612 models_finds.py:628 msgid "Find number" msgstr "" -#: forms.py:195 models_finds.py:639 +#: forms.py:199 models_finds.py:653 msgid "Minimum number of individuals (MNI)" msgstr "" -#: forms.py:196 models_finds.py:647 +#: forms.py:200 models_finds.py:661 msgid "Mark" msgstr "" -#: forms.py:197 forms.py:367 models_finds.py:653 +#: forms.py:201 forms.py:371 models_finds.py:667 msgid "Check" msgstr "" -#: forms.py:199 models_finds.py:655 +#: forms.py:203 models_finds.py:669 msgid "Check date" msgstr "" -#: forms.py:200 forms_treatments.py:132 forms_treatments.py:434 -#: models_finds.py:156 models_finds.py:648 models_treatments.py:126 +#: forms.py:204 forms_treatments.py:132 forms_treatments.py:434 +#: models_finds.py:155 models_finds.py:662 models_treatments.py:126 #: models_treatments.py:494 msgid "Comment" msgstr "" -#: forms.py:203 models_finds.py:649 +#: forms.py:207 models_finds.py:663 msgid "Comment on dating" msgstr "" -#: forms.py:204 models_finds.py:657 +#: forms.py:208 models_finds.py:671 msgid "Estimated value" msgstr "" -#: forms.py:206 forms_treatments.py:151 +#: forms.py:210 forms_treatments.py:151 msgid "Image" msgstr "" -#: forms.py:207 forms_treatments.py:152 +#: forms.py:211 forms_treatments.py:152 #, python-format msgid "" "

      Heavy images are resized to: %(width)dx%(height)d (ratio is preserved)." msgstr "" -#: forms.py:281 +#: forms.py:285 msgid "You should at least provide X, Y and the spatial reference system used." msgstr "" -#: forms.py:290 +#: forms.py:294 msgid "Coordinates are not relevant for the spatial reference system used: {}." msgstr "" -#: forms.py:296 forms.py:327 models_finds.py:623 +#: forms.py:300 forms.py:331 models_finds.py:636 msgid "Dating" msgstr "" -#: forms.py:301 forms.py:353 +#: forms.py:305 forms.py:357 msgid "Period" msgstr "" -#: forms.py:302 forms_treatments.py:138 forms_treatments.py:436 -#: models_finds.py:1085 models_treatments.py:129 models_treatments.py:292 +#: forms.py:306 forms_treatments.py:138 forms_treatments.py:436 +#: models_finds.py:1139 models_treatments.py:129 models_treatments.py:292 #: templates/ishtar/sheet_find.html:91 templates/ishtar/sheet_find.html:133 msgid "Start date" msgstr "" -#: forms.py:304 models_finds.py:1086 models_treatments.py:293 +#: forms.py:308 models_finds.py:1140 models_treatments.py:293 #: templates/ishtar/sheet_find.html:92 templates/ishtar/sheet_find.html:134 msgid "End date" msgstr "" -#: forms.py:305 +#: forms.py:309 msgid "Quality" msgstr "" -#: forms.py:307 +#: forms.py:311 msgid "Dating type" msgstr "" -#: forms.py:309 +#: forms.py:313 msgid "Precise dating" msgstr "" -#: forms.py:331 models_finds.py:188 +#: forms.py:335 models_finds.py:187 msgid "Short ID" msgstr "" -#: forms.py:332 models_finds.py:191 +#: forms.py:336 models_finds.py:190 msgid "Complete ID" msgstr "" -#: forms.py:336 forms_treatments.py:54 forms_treatments.py:96 +#: forms.py:340 forms_treatments.py:54 forms_treatments.py:96 #: forms_treatments.py:284 forms_treatments.py:356 forms_treatments.py:406 #: forms_treatments.py:489 models_treatments.py:102 models_treatments.py:466 msgid "Year" msgstr "" -#: forms.py:338 +#: forms.py:342 msgid "Operation's number (index by year)" msgstr "" -#: forms.py:341 +#: forms.py:345 msgid "Code PATRIARCHE" msgstr "" -#: forms.py:345 +#: forms.py:349 msgid "Archaeological site" msgstr "" -#: forms.py:351 +#: forms.py:355 msgid "Search within related operations" msgstr "" -#: forms.py:355 models_finds.py:112 +#: forms.py:359 models_finds.py:111 msgid "Object type" msgstr "" -#: forms.py:368 forms_treatments.py:57 +#: forms.py:372 forms_treatments.py:57 msgid "Has an image?" msgstr "" -#: forms.py:417 +#: forms.py:421 msgid "Warehouse (location)" msgstr "" -#: forms.py:423 +#: forms.py:427 msgid "Warehouse (responsible)" msgstr "" -#: forms.py:428 +#: forms.py:432 msgid "Container ID" msgstr "" -#: forms.py:429 +#: forms.py:433 msgid "Container ref." msgstr "" -#: forms.py:433 forms.py:456 views.py:149 +#: forms.py:437 forms.py:460 views.py:149 msgid "Find search" msgstr "" -#: forms.py:481 templates/ishtar/sheet_treatment.html:46 +#: forms.py:485 templates/ishtar/sheet_treatment.html:46 msgid "Upstream finds" msgstr "" -#: forms.py:483 models_finds.py:669 +#: forms.py:487 models_finds.py:683 msgid "Finds" msgstr "" -#: forms.py:495 +#: forms.py:499 msgid "You should at least select one archaeological find." msgstr "" -#: forms.py:598 +#: forms.py:602 msgid "Resulting find" msgstr "" -#: forms.py:603 +#: forms.py:607 msgid "Precise description" msgstr "" -#: forms.py:618 +#: forms.py:622 msgid "Resulting finds" msgstr "" -#: forms.py:623 +#: forms.py:627 msgid "Would you like to delete this find?" msgstr "" -#: forms.py:627 models_treatments.py:90 +#: forms.py:631 models_treatments.py:90 msgid "Upstream find" msgstr "" -#: forms.py:640 +#: forms.py:644 msgid "Archaeological find search" msgstr "" -#: forms.py:642 +#: forms.py:646 msgid "You should select an archaeological find." msgstr "" -#: forms.py:647 +#: forms.py:651 msgid "Year of the operation" msgstr "" -#: forms.py:649 +#: forms.py:653 msgid "Numeric reference" msgstr "" -#: forms.py:656 +#: forms.py:660 msgid "Period of the archaeological find" msgstr "" -#: forms.py:658 +#: forms.py:662 msgid "Material type of the archaeological find" msgstr "" -#: forms.py:660 +#: forms.py:664 msgid "Description of the archaeological find" msgstr "" -#: forms.py:672 forms_treatments.py:590 forms_treatments.py:616 +#: forms.py:676 forms_treatments.py:590 forms_treatments.py:616 msgid "Documentation search" msgstr "" -#: forms.py:674 forms_treatments.py:592 forms_treatments.py:618 +#: forms.py:678 forms_treatments.py:592 forms_treatments.py:618 msgid "You should select a document." msgstr "" -#: forms.py:691 +#: forms.py:695 msgid "Another basket already exists with this name." msgstr "" -#: forms.py:701 forms.py:705 forms_treatments.py:175 ishtar_menu.py:57 +#: forms.py:705 forms.py:709 forms_treatments.py:175 ishtar_menu.py:57 msgid "Basket" msgstr "" @@ -465,7 +466,7 @@ msgid "Associated request" msgstr "" #: forms_treatments.py:266 forms_treatments.py:397 ishtar_menu.py:108 -#: models_treatments.py:499 models_treatments.py:521 models_treatments.py:584 +#: models_treatments.py:499 models_treatments.py:527 models_treatments.py:602 #: wizards.py:187 templates/ishtar/sheet_treatmentfile.html:5 msgid "Treatment request" msgstr "" @@ -628,7 +629,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1082 +#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1136 msgid "Administrative act" msgstr "" @@ -642,7 +643,7 @@ msgid "Source" msgstr "" #: ishtar_menu.py:185 models_treatments.py:147 models_treatments.py:283 -#: models_treatments.py:567 models_treatments.py:570 +#: models_treatments.py:573 models_treatments.py:576 #: templates/ishtar/sheet_treatment.html:5 msgid "Treatment" msgstr "" @@ -651,113 +652,113 @@ msgstr "" msgid "Simple treatments" msgstr "" -#: models_finds.py:44 +#: models_finds.py:43 msgid "Code" msgstr "" -#: models_finds.py:45 +#: models_finds.py:44 msgid "Recommendation" msgstr "" -#: models_finds.py:48 +#: models_finds.py:47 msgid "Parent material" msgstr "" -#: models_finds.py:52 models_finds.py:525 models_finds.py:602 +#: models_finds.py:51 models_finds.py:538 models_finds.py:615 msgid "Material types" msgstr "" -#: models_finds.py:60 +#: models_finds.py:59 msgid "Parent conservatory state" msgstr "" -#: models_finds.py:64 +#: models_finds.py:63 msgid "Conservatory states" msgstr "" -#: models_finds.py:73 +#: models_finds.py:72 msgid "Preservation types" msgstr "" -#: models_finds.py:81 +#: models_finds.py:80 msgid "Integrity / interest type" msgstr "" -#: models_finds.py:82 +#: models_finds.py:81 msgid "Integrity / interest types" msgstr "" -#: models_finds.py:90 +#: models_finds.py:89 msgid "Remarkability type" msgstr "" -#: models_finds.py:91 +#: models_finds.py:90 msgid "Remarkability types" msgstr "" -#: models_finds.py:98 models_finds.py:598 models_treatments.py:40 +#: models_finds.py:97 models_finds.py:611 models_treatments.py:40 #: models_treatments.py:287 msgid "Order" msgstr "" -#: models_finds.py:100 +#: models_finds.py:99 msgid "Batch type" msgstr "" -#: models_finds.py:101 +#: models_finds.py:100 msgid "Batch types" msgstr "" -#: models_finds.py:109 +#: models_finds.py:108 msgid "Parent" msgstr "" -#: models_finds.py:152 models_finds.py:595 models_treatments.py:124 +#: models_finds.py:151 models_finds.py:608 models_treatments.py:124 #: models_treatments.py:471 msgid "External ID" msgstr "" -#: models_finds.py:154 models_finds.py:597 +#: models_finds.py:153 models_finds.py:610 msgid "External ID is set automatically" msgstr "" -#: models_finds.py:157 +#: models_finds.py:156 msgid "Special interest" msgstr "" -#: models_finds.py:161 +#: models_finds.py:160 msgid "Context Record" msgstr "" -#: models_finds.py:162 +#: models_finds.py:161 msgid "Discovery date" msgstr "" -#: models_finds.py:167 +#: models_finds.py:166 msgid "Material index" msgstr "" -#: models_finds.py:183 +#: models_finds.py:182 msgid "Point (2D)" msgstr "" -#: models_finds.py:184 +#: models_finds.py:183 msgid "Point" msgstr "" -#: models_finds.py:185 +#: models_finds.py:184 msgid "Line" msgstr "" -#: models_finds.py:186 +#: models_finds.py:185 msgid "Polygon" msgstr "" -#: models_finds.py:189 models_finds.py:192 +#: models_finds.py:188 models_finds.py:191 msgid "Cached value - do not edit" msgstr "" -#: models_finds.py:197 models_finds.py:593 +#: models_finds.py:197 models_finds.py:606 msgid "Base find" msgstr "" @@ -785,149 +786,169 @@ msgstr "" msgid "Can delete own Base find" msgstr "" -#: models_finds.py:430 +#: models_finds.py:443 msgid "g" msgstr "" -#: models_finds.py:431 +#: models_finds.py:444 msgid "kg" msgstr "" -#: models_finds.py:433 +#: models_finds.py:446 msgid "Not checked" msgstr "" -#: models_finds.py:434 +#: models_finds.py:447 msgid "Checked but incorrect" msgstr "" -#: models_finds.py:435 +#: models_finds.py:448 msgid "Checked and correct" msgstr "" -#: models_finds.py:506 +#: models_finds.py:519 msgid "Base find - Short ID" msgstr "" -#: models_finds.py:507 +#: models_finds.py:520 msgid "Base find - Complete ID" msgstr "" -#: models_finds.py:509 +#: models_finds.py:522 msgid "Operation (code)" msgstr "" -#: models_finds.py:511 +#: models_finds.py:524 msgid "Town" msgstr "" -#: models_finds.py:513 +#: models_finds.py:526 msgid "Operation (name)" msgstr "" -#: models_finds.py:515 +#: models_finds.py:528 msgid "Parcel" msgstr "" -#: models_finds.py:516 +#: models_finds.py:529 msgid "Batch" msgstr "" -#: models_finds.py:517 +#: models_finds.py:530 msgid "Base find - Comment" msgstr "" -#: models_finds.py:518 +#: models_finds.py:531 msgid "Base find - Description" msgstr "" -#: models_finds.py:519 +#: models_finds.py:532 msgid "Base find - Topographic localisation" msgstr "" -#: models_finds.py:521 +#: models_finds.py:534 msgid "Base find - Special interest" msgstr "" -#: models_finds.py:522 +#: models_finds.py:535 msgid "Base find - Discovery date" msgstr "" -#: models_finds.py:523 models_finds.py:626 models_treatments.py:131 +#: models_finds.py:536 models_finds.py:639 models_treatments.py:131 #: models_treatments.py:295 templates/ishtar/sheet_find.html:90 #: templates/ishtar/sheet_find.html:132 msgid "Container" msgstr "" -#: models_finds.py:524 +#: models_finds.py:537 msgid "Periods" msgstr "" -#: models_finds.py:609 +#: models_finds.py:622 msgid "Type of preservation to consider" msgstr "" -#: models_finds.py:613 +#: models_finds.py:626 msgid "Weight unit" msgstr "" -#: models_finds.py:619 templates/ishtar/sheet_find.html:78 +#: models_finds.py:632 templates/ishtar/sheet_find.html:78 msgid "Upstream treatment" msgstr "" -#: models_finds.py:622 templates/ishtar/sheet_find.html:120 +#: models_finds.py:635 templates/ishtar/sheet_find.html:120 msgid "Downstream treatment" msgstr "" -#: models_finds.py:660 +#: models_finds.py:674 msgid "Collection" msgstr "" -#: models_finds.py:662 models_treatments.py:143 models_treatments.py:495 +#: models_finds.py:676 models_treatments.py:143 models_treatments.py:495 msgid "Cached name" msgstr "" -#: models_finds.py:671 +#: models_finds.py:685 msgid "Can view all Finds" msgstr "" -#: models_finds.py:672 +#: models_finds.py:686 msgid "Can view own Find" msgstr "" -#: models_finds.py:673 +#: models_finds.py:687 msgid "Can add own Find" msgstr "" -#: models_finds.py:674 +#: models_finds.py:688 msgid "Can change own Find" msgstr "" -#: models_finds.py:675 +#: models_finds.py:689 msgid "Can delete own Find" msgstr "" -#: models_finds.py:681 +#: models_finds.py:695 msgid "FIND" msgstr "" -#: models_finds.py:1069 +#: models_finds.py:1099 msgid "Find documentation" msgstr "" -#: models_finds.py:1070 +#: models_finds.py:1100 msgid "Find documentations" msgstr "" -#: models_finds.py:1083 +#: models_finds.py:1103 +msgid "Can view all Find sources" +msgstr "" + +#: models_finds.py:1105 +msgid "Can view own Find source" +msgstr "" + +#: models_finds.py:1107 +msgid "Can add own Find source" +msgstr "" + +#: models_finds.py:1109 +msgid "Can change own Find source" +msgstr "" + +#: models_finds.py:1111 +msgid "Can delete own Find source" +msgstr "" + +#: models_finds.py:1137 msgid "Person" msgstr "" -#: models_finds.py:1089 +#: models_finds.py:1143 msgid "Property" msgstr "" -#: models_finds.py:1090 +#: models_finds.py:1144 msgid "Properties" msgstr "" @@ -1062,41 +1083,105 @@ msgid "Can view all Treatment requests" msgstr "" #: models_treatments.py:506 -msgid "Can view own Treatment request" +msgid "Can add Treatment request" msgstr "" #: models_treatments.py:508 -msgid "Can add own Treatment request" +msgid "Can change Treatment request" msgstr "" #: models_treatments.py:510 -msgid "Can change own Treatment request" +msgid "Can delete Treatment request" msgstr "" #: models_treatments.py:512 +msgid "Can view own Treatment request" +msgstr "" + +#: models_treatments.py:514 +msgid "Can add own Treatment request" +msgstr "" + +#: models_treatments.py:516 +msgid "Can change own Treatment request" +msgstr "" + +#: models_treatments.py:518 msgid "Can delete own Treatment request" msgstr "" -#: models_treatments.py:574 +#: models_treatments.py:580 msgid "Treatment documentation" msgstr "" -#: models_treatments.py:575 +#: models_treatments.py:581 msgid "Treament documentations" msgstr "" +#: models_treatments.py:584 +msgid "Can view all Treatment source" +msgstr "" + +#: models_treatments.py:586 +msgid "Can view own Treatment source" +msgstr "" + #: models_treatments.py:588 -msgid "Treatment file" +msgid "Can add own Treatment source" +msgstr "" + +#: models_treatments.py:590 +msgid "Can change own Treatment source" msgstr "" #: models_treatments.py:592 +msgid "Can delete own Treatment source" +msgstr "" + +#: models_treatments.py:606 +msgid "Treatment file" +msgstr "" + +#: models_treatments.py:610 msgid "Treatment request documentation" msgstr "" -#: models_treatments.py:593 +#: models_treatments.py:611 msgid "Treatment request documentations" msgstr "" +#: models_treatments.py:614 +msgid "Can view all Treatment request source" +msgstr "" + +#: models_treatments.py:616 +msgid "Can add Treatment request source" +msgstr "" + +#: models_treatments.py:618 +msgid "Can change Treatment request source" +msgstr "" + +#: models_treatments.py:620 +msgid "Can delete Treatment request source" +msgstr "" + +#: models_treatments.py:622 +msgid "Can view own Treatment request source" +msgstr "" + +#: models_treatments.py:624 +msgid "Can add own Treatment request source" +msgstr "" + +#: models_treatments.py:626 +msgid "Can change own Treatment request source" +msgstr "" + +#: models_treatments.py:628 +msgid "Can delete own Treatment request source" +msgstr "" + #: views.py:138 msgid "New find" msgstr "" diff --git a/archaeological_operations/locale/django.pot b/archaeological_operations/locale/django.pot index 3323d638d..f875f6b9a 100644 --- a/archaeological_operations/locale/django.pot +++ b/archaeological_operations/locale/django.pot @@ -10,13 +10,13 @@ msgid "" msgstr "" -#: forms.py:69 forms.py:371 forms.py:1013 forms.py:1035 forms.py:1039 -#: models.py:1247 templates/ishtar/sheet_operation.html:151 +#: forms.py:69 forms.py:371 forms.py:1047 forms.py:1069 forms.py:1073 +#: models.py:1252 templates/ishtar/sheet_operation.html:153 #: templates/ishtar/blocks/window_tables/parcels.html:10 msgid "Parcels" msgstr "" -#: forms.py:72 forms.py:205 forms.py:989 models.py:1233 +#: forms.py:72 forms.py:205 forms.py:1023 models.py:1238 #: templates/ishtar/blocks/window_tables/parcels.html:7 #: templates/ishtar/dashboards/dashboard_operation.html:432 #: templates/ishtar/dashboards/dashboard_operation.html:446 @@ -25,22 +25,22 @@ msgstr "" msgid "Town" msgstr "" -#: forms.py:74 forms.py:455 forms.py:756 forms.py:1259 models.py:272 -#: models.py:1039 models.py:1231 +#: forms.py:74 forms.py:481 forms.py:783 forms.py:1293 models.py:276 +#: models.py:1044 models.py:1236 #: templates/ishtar/blocks/window_tables/parcels.html:8 msgid "Year" msgstr "" -#: forms.py:77 models.py:1234 +#: forms.py:77 models.py:1239 #: templates/ishtar/blocks/window_tables/parcels.html:9 msgid "Section" msgstr "" -#: forms.py:80 models.py:1236 +#: forms.py:80 models.py:1241 msgid "Parcel number" msgstr "" -#: forms.py:82 models.py:1238 models.py:1255 models.py:1304 +#: forms.py:82 models.py:1243 models.py:1260 models.py:1309 msgid "Public domain" msgstr "" @@ -76,45 +76,49 @@ msgstr "" msgid "Relation type" msgstr "" -#: forms.py:383 ishtar_menu.py:30 models.py:368 models.py:849 models.py:884 -#: models.py:917 models.py:1021 models.py:1230 wizards.py:344 wizards.py:355 +#: forms.py:383 ishtar_menu.py:30 models.py:372 models.py:847 models.py:882 +#: models.py:922 models.py:1026 models.py:1235 wizards.py:353 wizards.py:364 #: templates/ishtar/sheet_operation.html:4 msgid "Operation" msgstr "" -#: forms.py:403 +#: forms.py:406 msgid ":" msgstr "" -#: forms.py:411 forms.py:607 forms.py:1224 +#: forms.py:414 forms.py:633 forms.py:1258 msgid "You should select an operation." msgstr "" -#: forms.py:415 +#: forms.py:418 msgid "You should select a relation type." msgstr "" -#: forms.py:445 +#: forms.py:421 +msgid "An operation cannot be related to herself." +msgstr "" + +#: forms.py:451 msgid "Current relations" msgstr "" -#: forms.py:447 +#: forms.py:453 msgid "Deleted relations" msgstr "" -#: forms.py:451 templates/ishtar/sheet_operation.html:85 +#: forms.py:477 templates/ishtar/sheet_operation.html:86 msgid "Relations" msgstr "" -#: forms.py:456 forms.py:1230 models.py:273 +#: forms.py:482 forms.py:1264 models.py:277 msgid "Numeric reference" msgstr "" -#: forms.py:462 forms.py:1270 +#: forms.py:488 forms.py:1304 msgid "Parcel (section/number/public domain)" msgstr "" -#: forms.py:465 forms.py:1273 models.py:850 +#: forms.py:491 forms.py:1307 models.py:848 #: templates/ishtar/dashboards/dashboard_operation.html:390 #: templates/ishtar/dashboards/dashboard_operation.html:411 #: templates/ishtar/dashboards/dashboard_operation.html:643 @@ -123,454 +127,458 @@ msgstr "" msgid "Department" msgstr "" -#: forms.py:466 forms.py:1101 models.py:86 +#: forms.py:492 forms.py:1135 models.py:86 #: templates/ishtar/sheet_operation.html:22 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:8 msgid "Name" msgstr "" -#: forms.py:468 forms.py:752 models.py:334 +#: forms.py:494 forms.py:779 models.py:338 msgid "Address / Locality" msgstr "" -#: forms.py:470 forms.py:674 forms.py:754 forms.py:1236 models.py:280 +#: forms.py:496 forms.py:700 forms.py:781 forms.py:1270 models.py:284 msgid "Operation type" msgstr "" -#: forms.py:472 +#: forms.py:498 msgid "Is open?" msgstr "" -#: forms.py:480 forms.py:786 models.py:269 +#: forms.py:506 forms.py:813 models.py:269 msgid "In charge" msgstr "" -#: forms.py:487 models.py:1015 +#: forms.py:513 models.py:1020 msgid "Scientist in charge" msgstr "" -#: forms.py:489 forms.py:676 forms.py:776 models.py:267 +#: forms.py:515 forms.py:702 forms.py:803 models.py:267 msgid "Operator" msgstr "" -#: forms.py:498 forms.py:1106 models.py:90 models.py:282 +#: forms.py:524 forms.py:1140 models.py:90 models.py:286 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:10 msgid "Remains" msgstr "" -#: forms.py:499 forms.py:1084 forms.py:1103 models.py:88 models.py:288 +#: forms.py:525 forms.py:1118 forms.py:1137 models.py:88 models.py:292 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:9 msgid "Periods" msgstr "" -#: forms.py:500 +#: forms.py:526 msgid "Started before" msgstr "" -#: forms.py:502 +#: forms.py:528 msgid "Started after" msgstr "" -#: forms.py:504 +#: forms.py:530 msgid "Ended before" msgstr "" -#: forms.py:506 +#: forms.py:532 msgid "Ended after" msgstr "" -#: forms.py:509 +#: forms.py:535 msgid "Search within relations" msgstr "" -#: forms.py:511 forms.py:841 +#: forms.py:537 forms.py:867 msgid "Comment" msgstr "" -#: forms.py:512 +#: forms.py:538 msgid "Abstract (full text search)" msgstr "" -#: forms.py:514 forms.py:844 models.py:337 +#: forms.py:540 forms.py:870 models.py:341 msgid "Comment about scientific documentation" msgstr "" -#: forms.py:515 forms.py:846 models.py:349 +#: forms.py:541 forms.py:872 models.py:353 msgid "Record quality" msgstr "" -#: forms.py:516 forms.py:811 models.py:300 +#: forms.py:542 forms.py:837 models.py:304 msgid "Report processing" msgstr "" -#: forms.py:518 forms.py:849 models.py:344 +#: forms.py:544 forms.py:875 models.py:348 msgid "Virtual operation" msgstr "" -#: forms.py:520 forms.py:1146 forms.py:1150 models.py:94 +#: forms.py:546 forms.py:1180 forms.py:1184 models.py:94 msgid "Archaeological site" msgstr "" -#: forms.py:526 forms.py:1277 +#: forms.py:552 forms.py:1311 msgid "Created by" msgstr "" -#: forms.py:532 forms.py:1283 +#: forms.py:558 forms.py:1317 msgid "Modified by" msgstr "" -#: forms.py:539 +#: forms.py:565 msgid "Documentation deadline before" msgstr "" -#: forms.py:541 +#: forms.py:567 msgid "Documentation deadline after" msgstr "" -#: forms.py:543 forms.py:834 models.py:356 +#: forms.py:569 forms.py:860 models.py:360 msgid "Documentation received" msgstr "" -#: forms.py:545 +#: forms.py:571 msgid "Finds deadline before" msgstr "" -#: forms.py:547 +#: forms.py:573 msgid "Finds deadline after" msgstr "" -#: forms.py:549 forms.py:839 models.py:360 +#: forms.py:575 forms.py:865 models.py:364 msgid "Finds received" msgstr "" -#: forms.py:594 forms.py:1222 views.py:168 +#: forms.py:620 forms.py:1256 views.py:168 msgid "Operation search" msgstr "" -#: forms.py:638 +#: forms.py:664 msgid "Associated file" msgstr "" -#: forms.py:642 forms.py:937 models.py:516 models.py:916 models.py:1026 +#: forms.py:668 forms.py:971 models.py:520 models.py:921 models.py:1031 #: wizards.py:80 msgid "Archaeological file" msgstr "" -#: forms.py:649 forms.py:651 models.py:351 +#: forms.py:675 forms.py:677 models.py:355 msgid "Abstract" msgstr "" -#: forms.py:654 +#: forms.py:680 msgid "months" msgstr "" -#: forms.py:654 +#: forms.py:680 msgid "years" msgstr "" -#: forms.py:656 models.py:253 +#: forms.py:682 models.py:253 msgid "Creation date" msgstr "" -#: forms.py:657 +#: forms.py:683 msgid "Start of field work" msgstr "" -#: forms.py:659 +#: forms.py:685 msgid "All" msgstr "" -#: forms.py:660 +#: forms.py:686 msgid "Preventive" msgstr "" -#: forms.py:661 +#: forms.py:687 msgid "Research" msgstr "" -#: forms.py:665 +#: forms.py:691 msgid "Slicing" msgstr "" -#: forms.py:668 +#: forms.py:694 msgid "Department detail" msgstr "" -#: forms.py:670 +#: forms.py:696 msgid "Date get from" msgstr "" -#: forms.py:672 +#: forms.py:698 msgid "Preventive/Research" msgstr "" -#: forms.py:678 +#: forms.py:704 msgid "Date after" msgstr "" -#: forms.py:680 +#: forms.py:706 msgid "Date before" msgstr "" -#: forms.py:682 +#: forms.py:708 msgid "With reports" msgstr "" -#: forms.py:683 +#: forms.py:709 msgid "With finds" msgstr "" -#: forms.py:735 forms.py:1331 templates/ishtar/sheet_administrativeact.html:20 +#: forms.py:761 forms.py:1365 templates/ishtar/sheet_administrativeact.html:20 #: templates/ishtar/sheet_operation.html:26 msgid "General" msgstr "" -#: forms.py:750 models.py:333 +#: forms.py:777 models.py:337 msgid "Generic name" msgstr "" -#: forms.py:761 models.py:302 +#: forms.py:788 models.py:306 msgid "Old code" msgstr "" -#: forms.py:764 +#: forms.py:791 msgid "Head scientist" msgstr "" -#: forms.py:783 models.py:332 +#: forms.py:810 models.py:336 msgid "Operator reference" msgstr "" -#: forms.py:797 +#: forms.py:823 models.py:273 +msgid "Collaborators" +msgstr "" + +#: forms.py:826 msgid "Total surface (m2)" msgstr "" -#: forms.py:804 models.py:54 models.py:256 models.py:1443 +#: forms.py:830 models.py:54 models.py:256 models.py:1448 msgid "Start date" msgstr "" -#: forms.py:806 models.py:258 +#: forms.py:832 models.py:258 msgid "Excavation end date" msgstr "" -#: forms.py:809 models.py:259 +#: forms.py:835 models.py:259 msgid "Report delivery date" msgstr "" -#: forms.py:831 models.py:353 +#: forms.py:857 models.py:357 msgid "Deadline for submission of the documentation" msgstr "" -#: forms.py:836 models.py:358 +#: forms.py:862 models.py:362 msgid "Deadline for submission of the finds" msgstr "" -#: forms.py:851 +#: forms.py:877 msgid "Image" msgstr "" -#: forms.py:852 +#: forms.py:878 #, python-format msgid "" "

      Heavy images are resized to: %(width)dx%(height)d (ratio is preserved)." msgstr "" -#: forms.py:890 +#: forms.py:924 msgid "" "If you want to set an excavation end date you have to provide a start date." msgstr "" -#: forms.py:895 +#: forms.py:929 msgid "The excavation end date cannot be before the start date." msgstr "" -#: forms.py:923 +#: forms.py:957 #, python-format msgid "" "Operation code already exists for year: %(year)d - use a value bigger than " "%(last_val)d" msgstr "" -#: forms.py:927 +#: forms.py:961 msgid "Bad operation code" msgstr "" -#: forms.py:933 models.py:531 models.py:879 +#: forms.py:967 models.py:535 models.py:877 msgid "Operation code" msgstr "" -#: forms.py:959 +#: forms.py:993 msgid "Preventive informations - excavation" msgstr "" -#: forms.py:960 models.py:286 +#: forms.py:994 models.py:290 #: templates/ishtar/dashboards/dashboard_operation.html:701 msgid "Cost (euros)" msgstr "" -#: forms.py:961 models.py:291 +#: forms.py:995 models.py:295 msgid "Scheduled man-days" msgstr "" -#: forms.py:963 models.py:294 +#: forms.py:997 models.py:298 msgid "Optional man-days" msgstr "" -#: forms.py:965 models.py:297 +#: forms.py:999 models.py:301 msgid "Effective man-days" msgstr "" -#: forms.py:975 +#: forms.py:1009 msgid "Preventive informations - diagnostic" msgstr "" -#: forms.py:978 models.py:316 +#: forms.py:1012 models.py:320 msgid "Prescription on zoning" msgstr "" -#: forms.py:980 models.py:319 +#: forms.py:1014 models.py:323 msgid "Prescription on large area" msgstr "" -#: forms.py:983 models.py:321 +#: forms.py:1017 models.py:325 msgid "Prescription on geoarchaeological context" msgstr "" -#: forms.py:987 forms.py:1009 models.py:284 models.py:1049 +#: forms.py:1021 forms.py:1043 models.py:288 models.py:1054 msgid "Towns" msgstr "" -#: forms.py:1016 models.py:1246 models.py:1441 +#: forms.py:1050 models.py:1251 models.py:1446 msgid "Parcel" msgstr "" -#: forms.py:1068 models.py:46 +#: forms.py:1102 models.py:46 msgid "Remain types" msgstr "" -#: forms.py:1072 models.py:45 +#: forms.py:1106 models.py:45 msgid "Remain type" msgstr "" -#: forms.py:1088 templates/ishtar/sheet_operation.html:171 -#: templates/ishtar/sheet_operation.html:202 +#: forms.py:1122 templates/ishtar/sheet_operation.html:173 +#: templates/ishtar/sheet_operation.html:204 msgid "Period" msgstr "" -#: forms.py:1100 models.py:85 +#: forms.py:1134 models.py:85 msgid "Reference" msgstr "" -#: forms.py:1129 +#: forms.py:1163 msgid "This reference already exists." msgstr "" -#: forms.py:1161 models.py:95 models.py:341 -#: templates/ishtar/sheet_operation.html:96 +#: forms.py:1195 models.py:95 models.py:345 +#: templates/ishtar/sheet_operation.html:97 msgid "Archaeological sites" msgstr "" -#: forms.py:1165 +#: forms.py:1199 msgid "Associated archaeological sites" msgstr "" -#: forms.py:1171 ishtar_menu.py:34 ishtar_menu.py:64 ishtar_menu.py:93 +#: forms.py:1205 ishtar_menu.py:34 ishtar_menu.py:64 ishtar_menu.py:93 msgid "Search" msgstr "" -#: forms.py:1176 +#: forms.py:1210 msgid "Would you like to close this operation?" msgstr "" -#: forms.py:1181 +#: forms.py:1215 msgid "Would you like to delete this operation?" msgstr "" -#: forms.py:1190 forms.py:1260 forms.py:1396 models.py:886 models.py:1006 +#: forms.py:1224 forms.py:1294 forms.py:1430 models.py:884 models.py:1011 msgid "Index" msgstr "" -#: forms.py:1216 +#: forms.py:1250 #, python-format msgid "" "Index already exists for operation: %(operation)s - use a value bigger than " "%(last_val)d" msgstr "" -#: forms.py:1228 +#: forms.py:1262 msgid "Operation's year" msgstr "" -#: forms.py:1235 +#: forms.py:1269 msgid "Operation's town" msgstr "" -#: forms.py:1248 +#: forms.py:1282 msgid "Documentation search" msgstr "" -#: forms.py:1250 +#: forms.py:1284 msgid "You should select a document." msgstr "" -#: forms.py:1267 forms.py:1334 models.py:930 models.py:1000 +#: forms.py:1301 forms.py:1368 models.py:935 models.py:1005 msgid "Act type" msgstr "" -#: forms.py:1268 forms.py:1466 +#: forms.py:1302 forms.py:1500 msgid "Indexed?" msgstr "" -#: forms.py:1274 forms.py:1339 models.py:1040 +#: forms.py:1308 forms.py:1373 models.py:1045 #: templates/ishtar/blocks/window_tables/administrativacts.html:10 msgid "Object" msgstr "" -#: forms.py:1311 views.py:333 +#: forms.py:1345 views.py:348 msgid "Administrative act search" msgstr "" -#: forms.py:1326 forms.py:1424 forms.py:1491 +#: forms.py:1360 forms.py:1458 forms.py:1525 msgid "You should select an administrative act." msgstr "" -#: forms.py:1342 models.py:1037 +#: forms.py:1376 models.py:1042 msgid "Signature date" msgstr "" -#: forms.py:1384 +#: forms.py:1418 #, python-format msgid "" "This index already exists for year: %(year)d - use a value bigger than " "%(last_val)d" msgstr "" -#: forms.py:1388 +#: forms.py:1422 msgid "Bad index" msgstr "" -#: forms.py:1401 +#: forms.py:1435 msgid "Would you like to delete this administrative act?" msgstr "" -#: forms.py:1406 +#: forms.py:1440 msgid "Template" msgstr "" -#: forms.py:1430 forms.py:1434 +#: forms.py:1464 forms.py:1468 msgid "This document is not intended for this type of act." msgstr "" -#: forms.py:1452 +#: forms.py:1486 msgid "Doc generation" msgstr "" -#: forms.py:1454 +#: forms.py:1488 msgid "Generate the associated doc?" msgstr "" -#: forms.py:1475 ishtar_menu.py:123 views.py:386 +#: forms.py:1509 ishtar_menu.py:123 views.py:401 msgctxt "admin act register" msgid "Register" msgstr "" @@ -591,7 +599,7 @@ msgstr "" msgid "Deletion" msgstr "" -#: ishtar_menu.py:59 models.py:1056 +#: ishtar_menu.py:59 models.py:1061 #: templates/ishtar/sheet_administrativeact.html:4 msgid "Administrative act" msgstr "" @@ -616,16 +624,16 @@ msgstr "" msgid "General informations" msgstr "" -#: ishtar_menu.py:139 models.py:369 +#: ishtar_menu.py:139 models.py:373 #: templates/ishtar/dashboards/dashboard_operation.html:8 msgid "Operations" msgstr "" -#: models.py:53 models.py:71 models.py:1913 +#: models.py:53 models.py:71 models.py:1918 msgid "Order" msgstr "" -#: models.py:55 models.py:1444 +#: models.py:55 models.py:1449 msgid "End date" msgstr "" @@ -741,357 +749,357 @@ msgstr "" msgid "In charge scientist" msgstr "" -#: models.py:277 models.py:1226 +#: models.py:281 models.py:1231 msgid "File" msgstr "" -#: models.py:281 +#: models.py:285 msgid "Surface (m2)" msgstr "" -#: models.py:335 +#: models.py:339 msgid "General comment" msgstr "" -#: models.py:338 +#: models.py:342 msgid "Cached name" msgstr "" -#: models.py:346 +#: models.py:350 msgid "" "If checked, it means that this operation have not been officialy registered." msgstr "" -#: models.py:362 +#: models.py:366 msgid "Point" msgstr "" -#: models.py:363 +#: models.py:367 msgid "Multi polygon" msgstr "" -#: models.py:371 +#: models.py:375 msgid "Can view all Operations" msgstr "" -#: models.py:372 +#: models.py:376 msgid "Can view own Operation" msgstr "" -#: models.py:373 +#: models.py:377 msgid "Can add own Operation" msgstr "" -#: models.py:374 +#: models.py:378 msgid "Can change own Operation" msgstr "" -#: models.py:375 +#: models.py:379 msgid "Can delete own Operation" msgstr "" -#: models.py:376 +#: models.py:380 msgid "Can close Operation" msgstr "" -#: models.py:405 +#: models.py:409 msgid "OPE" msgstr "" -#: models.py:479 +#: models.py:483 msgid "Intercommunal" msgstr "" -#: models.py:517 +#: models.py:521 msgid "Code patriarche" msgstr "" -#: models.py:557 +#: models.py:561 msgid "This operation code already exists for this year" msgstr "" -#: models.py:582 +#: models.py:588 msgid "Number of parcels" msgstr "" -#: models.py:600 +#: models.py:598 msgid "Number of administrative acts" msgstr "" -#: models.py:608 +#: models.py:606 msgid "Number of indexed administrative acts" msgstr "" -#: models.py:616 +#: models.py:614 msgid "Number of context records" msgstr "" -#: models.py:652 +#: models.py:650 msgid "Number of finds" msgstr "" -#: models.py:697 +#: models.py:695 msgid "No type" msgstr "" -#: models.py:728 +#: models.py:726 msgid "Number of sources" msgstr "" -#: models.py:770 templates/ishtar/dashboards/dashboard_operation.html:309 +#: models.py:768 templates/ishtar/dashboards/dashboard_operation.html:309 #: templates/ishtar/dashboards/dashboard_operation.html:575 #: templates/ishtar/dashboards/dashboard_operation.html:611 msgid "Mean" msgstr "" -#: models.py:820 +#: models.py:818 msgid "Inverse relation" msgstr "" -#: models.py:824 +#: models.py:822 msgid "Operation relation type" msgstr "" -#: models.py:825 +#: models.py:823 msgid "Operation relation types" msgstr "" -#: models.py:838 +#: models.py:836 msgid "Operation record relation" msgstr "" -#: models.py:839 +#: models.py:837 msgid "Operation record relations" msgstr "" -#: models.py:878 +#: models.py:876 msgid "Operation year" msgstr "" -#: models.py:880 +#: models.py:878 msgid "Document code" msgstr "" -#: models.py:890 +#: models.py:888 msgid "Operation documentation" msgstr "" -#: models.py:891 +#: models.py:889 msgid "Operation documentations" msgstr "" -#: models.py:894 +#: models.py:892 msgid "Can view all Operation sources" msgstr "" -#: models.py:896 +#: models.py:894 msgid "Can view own Operation source" msgstr "" -#: models.py:898 +#: models.py:896 msgid "Can add own Operation source" msgstr "" -#: models.py:900 +#: models.py:898 msgid "Can change own Operation source" msgstr "" -#: models.py:902 +#: models.py:900 msgid "Can delete own Operation source" msgstr "" -#: models.py:918 models.py:1031 +#: models.py:923 models.py:1036 msgid "Treatment request" msgstr "" -#: models.py:919 models.py:1036 +#: models.py:924 models.py:1041 msgid "Treatment" msgstr "" -#: models.py:921 +#: models.py:926 msgid "Intended to" msgstr "" -#: models.py:923 +#: models.py:928 msgid "Code" msgstr "" -#: models.py:926 +#: models.py:931 msgid "Associated template" msgstr "" -#: models.py:927 +#: models.py:932 msgid "Indexed" msgstr "" -#: models.py:931 +#: models.py:936 msgid "Act types" msgstr "" -#: models.py:997 models.py:1077 +#: models.py:1002 models.py:1082 #: templates/ishtar/blocks/window_tables/administrativacts.html:7 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:7 msgid "Ref." msgstr "" -#: models.py:1004 +#: models.py:1009 msgid "Person in charge of the operation" msgstr "" -#: models.py:1010 +#: models.py:1015 msgid "Archaeological preventive operator" msgstr "" -#: models.py:1018 +#: models.py:1023 msgid "Signatory" msgstr "" -#: models.py:1046 +#: models.py:1051 msgid "Departments" msgstr "" -#: models.py:1047 +#: models.py:1052 msgid "Cached values get from associated departments" msgstr "" -#: models.py:1050 +#: models.py:1055 msgid "Cached values get from associated towns" msgstr "" -#: models.py:1057 templates/ishtar/sheet_operation.html:104 -#: templates/ishtar/sheet_operation.html:145 +#: models.py:1062 templates/ishtar/sheet_operation.html:105 +#: templates/ishtar/sheet_operation.html:147 msgid "Administrative acts" msgstr "" -#: models.py:1060 +#: models.py:1065 msgid "Can view all Administrative acts" msgstr "" -#: models.py:1062 +#: models.py:1067 msgid "Can view own Administrative act" msgstr "" -#: models.py:1064 +#: models.py:1069 msgid "Can add own Administrative act" msgstr "" -#: models.py:1066 +#: models.py:1071 msgid "Can change own Administrative act" msgstr "" -#: models.py:1068 +#: models.py:1073 msgid "Can delete own Administrative act" msgstr "" -#: models.py:1171 +#: models.py:1176 msgid "This index already exists for this year" msgstr "" -#: models.py:1239 +#: models.py:1244 msgid "External ID" msgstr "" -#: models.py:1242 +#: models.py:1247 msgid "External ID is set automatically" msgstr "" -#: models.py:1243 +#: models.py:1248 msgid "Address - Locality" msgstr "" -#: models.py:1439 +#: models.py:1444 msgid "Owner" msgstr "" -#: models.py:1447 +#: models.py:1452 msgid "Parcel owner" msgstr "" -#: models.py:1448 +#: models.py:1453 msgid "Parcel owners" msgstr "" -#: models.py:1474 +#: models.py:1479 msgid "Recorded" msgstr "" -#: models.py:1475 +#: models.py:1480 msgid "Effective" msgstr "" -#: models.py:1476 +#: models.py:1481 msgid "Active" msgstr "" -#: models.py:1477 +#: models.py:1482 msgid "Field completed" msgstr "" -#: models.py:1478 +#: models.py:1483 msgid "Associated report" msgstr "" -#: models.py:1479 +#: models.py:1484 msgid "Closed" msgstr "" -#: models.py:1480 +#: models.py:1485 msgid "Documented and closed" msgstr "" -#: models.py:1914 +#: models.py:1919 msgid "Is preventive" msgstr "" -#: models.py:1917 +#: models.py:1922 msgid "Operation type old" msgstr "" -#: models.py:1918 +#: models.py:1923 msgid "Operation types old" msgstr "" -#: views.py:214 +#: views.py:223 msgid "New operation" msgstr "" -#: views.py:237 +#: views.py:267 msgid "Operation modification" msgstr "" -#: views.py:280 +#: views.py:295 msgid "Operation closing" msgstr "" -#: views.py:291 +#: views.py:306 msgid "Operation deletion" msgstr "" -#: views.py:296 +#: views.py:311 msgid "Operation: source search" msgstr "" -#: views.py:304 +#: views.py:319 msgid "Operation: source creation" msgstr "" -#: views.py:312 +#: views.py:327 msgid "Operation: source modification" msgstr "" -#: views.py:327 +#: views.py:342 msgid "Operation: source deletion" msgstr "" -#: views.py:346 +#: views.py:361 msgid "Operation: new administrative act" msgstr "" -#: views.py:356 +#: views.py:371 msgid "Operation: administrative act modification" msgstr "" -#: views.py:380 +#: views.py:395 msgid "Operation: administrative act deletion" msgstr "" @@ -1106,7 +1114,7 @@ msgid "" msgstr "" #: templates/ishtar/sheet_administrativeact.html:36 -#: templates/ishtar/sheet_operation.html:40 +#: templates/ishtar/sheet_operation.html:41 msgid "Surface:" msgstr "" @@ -1126,92 +1134,96 @@ msgstr "" msgid "Begining date" msgstr "" -#: templates/ishtar/sheet_operation.html:36 +#: templates/ishtar/sheet_operation.html:37 msgid "State:" msgstr "" -#: templates/ishtar/sheet_operation.html:36 +#: templates/ishtar/sheet_operation.html:37 msgid "Active file" msgstr "" -#: templates/ishtar/sheet_operation.html:37 +#: templates/ishtar/sheet_operation.html:38 msgid "Closed operation" msgstr "" -#: templates/ishtar/sheet_operation.html:38 +#: templates/ishtar/sheet_operation.html:39 msgid "Closing date:" msgstr "" -#: templates/ishtar/sheet_operation.html:38 +#: templates/ishtar/sheet_operation.html:39 msgid "by" msgstr "" -#: templates/ishtar/sheet_operation.html:41 +#: templates/ishtar/sheet_operation.html:42 msgid "Cost:" msgstr "" -#: templates/ishtar/sheet_operation.html:42 +#: templates/ishtar/sheet_operation.html:43 msgid "Duration:" msgstr "" -#: templates/ishtar/sheet_operation.html:42 +#: templates/ishtar/sheet_operation.html:43 msgid "Day" msgstr "" -#: templates/ishtar/sheet_operation.html:75 +#: templates/ishtar/sheet_operation.html:76 msgid "Localisation" msgstr "" -#: templates/ishtar/sheet_operation.html:100 +#: templates/ishtar/sheet_operation.html:101 msgid "Associated parcels" msgstr "" -#: templates/ishtar/sheet_operation.html:108 +#: templates/ishtar/sheet_operation.html:109 msgid "Document from this operation" msgstr "" -#: templates/ishtar/sheet_operation.html:114 -#: templates/ishtar/sheet_operation.html:156 +#: templates/ishtar/sheet_operation.html:115 +#: templates/ishtar/sheet_operation.html:158 msgid "Context records" msgstr "" -#: templates/ishtar/sheet_operation.html:119 +#: templates/ishtar/sheet_operation.html:120 msgid "Context record relations" msgstr "" -#: templates/ishtar/sheet_operation.html:124 +#: templates/ishtar/sheet_operation.html:125 msgid "Documents from associated context records" msgstr "" -#: templates/ishtar/sheet_operation.html:129 -#: templates/ishtar/sheet_operation.html:179 +#: templates/ishtar/sheet_operation.html:130 +#: templates/ishtar/sheet_operation.html:181 msgid "Finds" msgstr "" -#: templates/ishtar/sheet_operation.html:134 +#: templates/ishtar/sheet_operation.html:135 msgid "Documents from associated finds" msgstr "" -#: templates/ishtar/sheet_operation.html:139 +#: templates/ishtar/sheet_operation.html:140 msgid "Associated containers" msgstr "" -#: templates/ishtar/sheet_operation.html:143 +#: templates/ishtar/sheet_operation.html:144 msgid "Statistics" msgstr "" -#: templates/ishtar/sheet_operation.html:163 -#: templates/ishtar/sheet_operation.html:217 +#: templates/ishtar/sheet_operation.html:145 +msgid "Theses number are updated hourly" +msgstr "" + +#: templates/ishtar/sheet_operation.html:165 +#: templates/ishtar/sheet_operation.html:219 #: templates/ishtar/blocks/window_tables/administrativacts.html:8 msgid "Type" msgstr "" -#: templates/ishtar/sheet_operation.html:163 -#: templates/ishtar/sheet_operation.html:171 -#: templates/ishtar/sheet_operation.html:186 -#: templates/ishtar/sheet_operation.html:194 -#: templates/ishtar/sheet_operation.html:202 -#: templates/ishtar/sheet_operation.html:217 +#: templates/ishtar/sheet_operation.html:165 +#: templates/ishtar/sheet_operation.html:173 +#: templates/ishtar/sheet_operation.html:188 +#: templates/ishtar/sheet_operation.html:196 +#: templates/ishtar/sheet_operation.html:204 +#: templates/ishtar/sheet_operation.html:219 #: templates/ishtar/dashboards/dashboard_operation.html:18 #: templates/ishtar/dashboards/dashboard_operation.html:164 #: templates/ishtar/dashboards/dashboard_operation.html:432 @@ -1220,19 +1232,19 @@ msgstr "" msgid "Number" msgstr "" -#: templates/ishtar/sheet_operation.html:186 +#: templates/ishtar/sheet_operation.html:188 msgid "Material type" msgstr "" -#: templates/ishtar/sheet_operation.html:194 +#: templates/ishtar/sheet_operation.html:196 msgid "Object type" msgstr "" -#: templates/ishtar/sheet_operation.html:210 +#: templates/ishtar/sheet_operation.html:212 msgid "Sources" msgstr "" -#: templates/ishtar/sheet_operation.html:226 +#: templates/ishtar/sheet_operation.html:228 msgid "Finds by context records" msgstr "" diff --git a/archaeological_warehouse/locale/django.pot b/archaeological_warehouse/locale/django.pot index d5d6e9b63..f5893af41 100644 --- a/archaeological_warehouse/locale/django.pot +++ b/archaeological_warehouse/locale/django.pot @@ -4,19 +4,20 @@ # Étienne Loks , 2010-2011. # Valérie-Emma Leroux , 2016. #zanata # Valérie-Emma Leroux , 2017. #zanata +# Étienne Loks , 2017. #zanata msgid "" msgstr "" -#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:63 models.py:103 +#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:66 models.py:202 #: templates/ishtar/sheet_warehouse.html:4 msgid "Warehouse" msgstr "" -#: forms.py:45 forms.py:50 models.py:281 +#: forms.py:45 forms.py:50 models.py:387 msgid "Division" msgstr "" -#: forms.py:52 models.py:127 +#: forms.py:52 models.py:226 msgid "Order" msgstr "" @@ -24,15 +25,15 @@ msgstr "" msgid "There are identical divisions." msgstr "" -#: forms.py:70 models.py:53 +#: forms.py:70 models.py:56 msgid "Divisions" msgstr "" -#: forms.py:74 forms.py:103 models.py:45 models.py:100 +#: forms.py:74 forms.py:103 models.py:48 models.py:199 msgid "Name" msgstr "" -#: forms.py:75 forms.py:105 models.py:36 models.py:47 +#: forms.py:75 forms.py:105 models.py:39 models.py:50 msgid "Warehouse type" msgstr "" @@ -44,11 +45,11 @@ msgstr "" msgid "Warehouse search" msgstr "" -#: forms.py:108 models.py:50 +#: forms.py:108 models.py:53 msgid "Person in charge" msgstr "" -#: forms.py:114 forms.py:184 models.py:51 models.py:181 +#: forms.py:114 forms.py:184 models.py:54 models.py:280 msgid "Comment" msgstr "" @@ -80,16 +81,16 @@ msgstr "" msgid "Would you like to delete this warehouse?" msgstr "" -#: forms.py:158 models.py:192 models.py:279 +#: forms.py:158 models.py:291 models.py:384 #: templates/ishtar/sheet_container.html:4 msgid "Container" msgstr "" -#: forms.py:163 forms.py:237 models.py:142 +#: forms.py:163 forms.py:237 models.py:241 msgid "Ref." msgstr "" -#: forms.py:164 forms.py:236 models.py:145 models.py:179 +#: forms.py:164 forms.py:236 models.py:244 models.py:278 msgid "Container type" msgstr "" @@ -97,7 +98,7 @@ msgstr "" msgid "Current location (warehouse)" msgstr "" -#: forms.py:172 models.py:176 +#: forms.py:172 models.py:275 msgid "Responsible warehouse" msgstr "" @@ -148,7 +149,7 @@ msgstr "" msgid "Packaged finds" msgstr "" -#: forms.py:280 models.py:182 +#: forms.py:280 models.py:281 msgid "Localisation" msgstr "" @@ -176,115 +177,116 @@ msgstr "" msgid "Deletion" msgstr "" -#: ishtar_menu.py:57 models.py:193 templates/ishtar/sheet_warehouse.html:20 +#: ishtar_menu.py:57 models.py:292 templates/ishtar/sheet_warehouse.html:20 +#: templates/ishtar/sheet_warehouse.html:53 msgid "Containers" msgstr "" -#: models.py:37 +#: models.py:40 msgid "Warehouse types" msgstr "" -#: models.py:56 models.py:187 +#: models.py:59 models.py:286 msgid "External ID" msgstr "" -#: models.py:58 models.py:189 +#: models.py:61 models.py:288 msgid "External ID is set automatically" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Warehouses" msgstr "" -#: models.py:66 +#: models.py:69 msgid "Can view all Warehouses" msgstr "" -#: models.py:67 +#: models.py:70 msgid "Can view own Warehouse" msgstr "" -#: models.py:68 +#: models.py:71 msgid "Can add own Warehouse" msgstr "" -#: models.py:69 +#: models.py:72 msgid "Can change own Warehouse" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Can delete own Warehouse" msgstr "" -#: models.py:102 +#: models.py:201 msgid "Description" msgstr "" -#: models.py:107 models.py:108 +#: models.py:206 models.py:207 msgid "Collection" msgstr "" -#: models.py:117 +#: models.py:216 msgid "Warehouse division type" msgstr "" -#: models.py:118 +#: models.py:217 msgid "Warehouse division types" msgstr "" -#: models.py:138 +#: models.py:237 msgid "Length (mm)" msgstr "" -#: models.py:139 +#: models.py:238 msgid "Width (mm)" msgstr "" -#: models.py:140 +#: models.py:239 msgid "Height (mm)" msgstr "" -#: models.py:141 +#: models.py:240 msgid "Volume (l)" msgstr "" -#: models.py:146 +#: models.py:245 msgid "Container types" msgstr "" -#: models.py:165 +#: models.py:264 msgid "Location - index" msgstr "" -#: models.py:166 +#: models.py:265 msgid "Precise localisation" msgstr "" -#: models.py:167 +#: models.py:266 msgid "Type" msgstr "" -#: models.py:173 +#: models.py:272 msgid "Location (warehouse)" msgstr "" -#: models.py:180 +#: models.py:279 msgid "Container ref." msgstr "" -#: models.py:184 +#: models.py:283 msgid "Cached location" msgstr "" -#: models.py:282 +#: models.py:388 msgid "Reference" msgstr "" -#: models.py:285 +#: models.py:391 msgid "Container localisation" msgstr "" -#: models.py:286 +#: models.py:392 msgid "Container localisations" msgstr "" @@ -320,8 +322,34 @@ msgstr "" msgid "Attached containers" msgstr "" -#: templates/ishtar/wizard/wizard_containerlocalisation.html:6 +#: templates/ishtar/sheet_warehouse.html:29 +msgid "Statistics" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:30 +msgid "Theses number are updated hourly" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:32 +msgid "Finds" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:39 +msgid "Finds by location in the warehouse" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:59 +msgid "Containers by location in the warehouse" +msgstr "" + +#: templates/ishtar/wizard/wizard_containerlocalisation.html:8 msgid "" "No division set for this warehouse. Define at least one division to localise " "containers in this warehouse." msgstr "" + +#: templates/ishtar/wizard/wizard_warehouse_divisions.html:8 +msgid "" +"Containers with localisation are associated to this warehouse. You cannot " +"change divisions." +msgstr "" diff --git a/ishtar_common/locale/django.pot b/ishtar_common/locale/django.pot index d56b7cbcd..bf9b6bca0 100644 --- a/ishtar_common/locale/django.pot +++ b/ishtar_common/locale/django.pot @@ -148,40 +148,40 @@ msgstr "" msgid "\"%(value)s\" not in %(values)s" msgstr "" -#: forms.py:73 +#: forms.py:74 msgid "Enter a valid name consisting of letters, spaces and hyphens." msgstr "" -#: forms.py:89 forms_common.py:626 +#: forms.py:90 forms_common.py:626 msgid "Confirm" msgstr "" -#: forms.py:94 +#: forms.py:95 msgid "Are you sure you want to delete?" msgstr "" -#: forms.py:103 +#: forms.py:129 msgid "There are identical items." msgstr "" -#: forms.py:141 forms.py:142 +#: forms.py:176 forms.py:177 msgid "Closing date" msgstr "" -#: forms.py:155 +#: forms.py:190 msgid "You should select an item." msgstr "" -#: forms.py:156 +#: forms.py:191 msgid "Add a new item" msgstr "" -#: forms.py:262 models.py:1482 +#: forms.py:297 models.py:1501 msgid "Template" msgstr "" #: forms_common.py:41 forms_common.py:59 forms_common.py:184 -#: forms_common.py:408 models.py:1548 models.py:2989 +#: forms_common.py:408 models.py:1567 models.py:3033 #: templates/blocks/JQueryAdvancedTown.html:19 #: templates/ishtar/sheet_organization.html:13 msgid "Town" @@ -197,8 +197,8 @@ msgid "" "french town Saint-Denis in the Seine-Saint-Denis department.

      " msgstr "" -#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2610 -#: models.py:2791 models.py:2856 templates/ishtar/sheet_person.html:4 +#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2629 +#: models.py:2822 models.py:2888 templates/ishtar/sheet_person.html:4 msgid "Person" msgstr "" @@ -209,64 +209,64 @@ msgid "" msgstr "" #: forms_common.py:172 forms_common.py:329 forms_common.py:453 -#: ishtar_menu.py:75 models.py:2493 models.py:2584 +#: ishtar_menu.py:75 models.py:2512 models.py:2603 #: templates/ishtar/sheet_organization.html:4 msgid "Organization" msgstr "" #: forms_common.py:175 forms_common.py:212 forms_common.py:324 -#: forms_common.py:378 forms_common.py:448 models.py:1103 models.py:1481 -#: models.py:1750 models.py:1766 models.py:2003 models.py:2279 models.py:2487 -#: models.py:2596 models.py:2975 templates/ishtar/import_list.html:13 +#: forms_common.py:378 forms_common.py:448 models.py:1109 models.py:1500 +#: models.py:1769 models.py:1785 models.py:2022 models.py:2298 models.py:2506 +#: models.py:2615 models.py:3019 templates/ishtar/import_list.html:13 #: templates/ishtar/sheet_organization.html:8 #: templates/ishtar/sheet_organization.html:21 msgid "Name" msgstr "" -#: forms_common.py:176 models.py:1703 models.py:2134 +#: forms_common.py:176 models.py:1722 models.py:2153 msgid "Organization type" msgstr "" -#: forms_common.py:178 forms_common.py:402 models.py:1543 +#: forms_common.py:178 forms_common.py:402 models.py:1562 #: templates/ishtar/sheet_organization.html:10 msgid "Address" msgstr "" -#: forms_common.py:180 forms_common.py:405 models.py:1544 +#: forms_common.py:180 forms_common.py:405 models.py:1563 #: templates/ishtar/sheet_organization.html:11 msgid "Address complement" msgstr "" -#: forms_common.py:182 forms_common.py:406 models.py:1546 +#: forms_common.py:182 forms_common.py:406 models.py:1565 #: templates/ishtar/sheet_organization.html:12 msgid "Postal code" msgstr "" -#: forms_common.py:185 forms_common.py:409 models.py:1549 +#: forms_common.py:185 forms_common.py:409 models.py:1568 msgid "Country" msgstr "" #: forms_common.py:187 forms_common.py:326 forms_common.py:382 -#: forms_common.py:450 forms_common.py:574 models.py:1576 +#: forms_common.py:450 forms_common.py:574 models.py:1595 msgid "Email" msgstr "" -#: forms_common.py:188 forms_common.py:385 models.py:1561 +#: forms_common.py:188 forms_common.py:385 models.py:1580 #: templates/ishtar/sheet_organization.html:14 #: templates/ishtar/sheet_person.html:21 #: templates/ishtar/wizard/wizard_person.html:17 msgid "Phone" msgstr "" -#: forms_common.py:189 forms_common.py:394 models.py:1573 +#: forms_common.py:189 forms_common.py:394 models.py:1592 #: templates/ishtar/sheet_organization.html:15 #: templates/ishtar/sheet_person.html:39 #: templates/ishtar/wizard/wizard_person.html:35 msgid "Mobile phone" msgstr "" -#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2170 -#: models.py:2489 models.py:2910 templates/sheet_ope.html:85 +#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2189 +#: models.py:2508 models.py:2954 templates/sheet_ope.html:85 #: templates/sheet_ope.html.py:105 templates/sheet_ope.html:126 #: templates/ishtar/import_list.html:14 #: templates/ishtar/sheet_organization.html:23 @@ -290,7 +290,7 @@ msgstr "" msgid "Organization to merge" msgstr "" -#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2594 +#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2613 #: templates/ishtar/sheet_organization.html:22 msgid "Surname" msgstr "" @@ -308,25 +308,25 @@ msgstr "" msgid "Identity" msgstr "" -#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2135 -#: models.py:2588 models.py:2590 models.py:2907 templates/sheet_ope.html:104 +#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2154 +#: models.py:2607 models.py:2609 models.py:2951 templates/sheet_ope.html:104 #: templates/ishtar/blocks/window_tables/documents.html:7 msgid "Title" msgstr "" -#: forms_common.py:374 models.py:2592 +#: forms_common.py:374 models.py:2611 msgid "Salutation" msgstr "" -#: forms_common.py:380 models.py:2598 +#: forms_common.py:380 models.py:2617 msgid "Raw name" msgstr "" -#: forms_common.py:383 models.py:1562 +#: forms_common.py:383 models.py:1581 msgid "Phone description" msgstr "" -#: forms_common.py:386 models.py:1564 models.py:1566 +#: forms_common.py:386 models.py:1583 models.py:1585 msgid "Phone description 2" msgstr "" @@ -334,11 +334,11 @@ msgstr "" msgid "Phone 2" msgstr "" -#: forms_common.py:390 models.py:1570 +#: forms_common.py:390 models.py:1589 msgid "Phone description 3" msgstr "" -#: forms_common.py:392 models.py:1568 +#: forms_common.py:392 models.py:1587 msgid "Phone 3" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "Current organization" msgstr "" -#: forms_common.py:411 models.py:1551 +#: forms_common.py:411 models.py:1570 msgid "Other address: address" msgstr "" -#: forms_common.py:414 models.py:1554 +#: forms_common.py:414 models.py:1573 msgid "Other address: address complement" msgstr "" -#: forms_common.py:416 models.py:1555 +#: forms_common.py:416 models.py:1574 msgid "Other address: postal code" msgstr "" -#: forms_common.py:418 models.py:1557 +#: forms_common.py:418 models.py:1576 msgid "Other address: town" msgstr "" -#: forms_common.py:420 models.py:1559 +#: forms_common.py:420 models.py:1578 msgid "Other address: country" msgstr "" @@ -378,7 +378,7 @@ msgstr "" msgid "Account search" msgstr "" -#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2541 +#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2560 msgid "Person type" msgstr "" @@ -386,7 +386,7 @@ msgstr "" msgid "Account" msgstr "" -#: forms_common.py:577 wizards.py:1339 +#: forms_common.py:577 wizards.py:1347 msgid "New password" msgstr "" @@ -410,7 +410,7 @@ msgstr "" msgid "Send the new password by email?" msgstr "" -#: forms_common.py:636 forms_common.py:649 models.py:2990 +#: forms_common.py:636 forms_common.py:649 models.py:3034 msgid "Towns" msgstr "" @@ -426,7 +426,7 @@ msgstr "" msgid "Documentation informations" msgstr "" -#: forms_common.py:783 forms_common.py:831 models.py:2136 models.py:2882 +#: forms_common.py:783 forms_common.py:831 models.py:2155 models.py:2926 msgid "Source type" msgstr "" @@ -438,37 +438,37 @@ msgstr "" msgid "Internal reference" msgstr "" -#: forms_common.py:791 models.py:2921 +#: forms_common.py:791 models.py:2965 msgid "Numerical ressource (web address)" msgstr "" -#: forms_common.py:792 models.py:2923 +#: forms_common.py:792 models.py:2967 msgid "Receipt date" msgstr "" -#: forms_common.py:794 models.py:2304 models.py:2925 +#: forms_common.py:794 models.py:2323 models.py:2969 msgid "Creation date" msgstr "" -#: forms_common.py:797 models.py:2928 +#: forms_common.py:797 models.py:2972 msgid "Receipt date in documentation" msgstr "" -#: forms_common.py:799 forms_common.py:835 models.py:379 models.py:696 -#: models.py:2030 models.py:2602 models.py:2935 +#: forms_common.py:799 forms_common.py:835 models.py:381 models.py:698 +#: models.py:2049 models.py:2621 models.py:2979 msgid "Comment" msgstr "" -#: forms_common.py:801 forms_common.py:834 models.py:1105 models.py:1770 -#: models.py:1957 models.py:2004 models.py:2934 templates/sheet_ope.html:128 +#: forms_common.py:801 forms_common.py:834 models.py:1111 models.py:1789 +#: models.py:1976 models.py:2023 models.py:2978 templates/sheet_ope.html:128 msgid "Description" msgstr "" -#: forms_common.py:804 models.py:2936 +#: forms_common.py:804 models.py:2980 msgid "Additional information" msgstr "" -#: forms_common.py:806 forms_common.py:838 models.py:2938 +#: forms_common.py:806 forms_common.py:838 models.py:2982 msgid "Has a duplicate" msgstr "" @@ -483,7 +483,7 @@ msgid "" "p>" msgstr "" -#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2861 +#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2893 #: templates/ishtar/wizard/wizard_person_deletion.html:124 msgid "Author" msgstr "" @@ -496,7 +496,7 @@ msgstr "" msgid "Would you like to delete this documentation?" msgstr "" -#: forms_common.py:864 models.py:2137 models.py:2848 models.py:2858 +#: forms_common.py:864 models.py:2156 models.py:2880 models.py:2890 msgid "Author type" msgstr "" @@ -508,7 +508,7 @@ msgstr "" msgid "There are identical authors." msgstr "" -#: forms_common.py:901 models.py:2862 models.py:2917 +#: forms_common.py:901 models.py:2894 models.py:2961 #: templates/sheet_ope.html:106 #: templates/ishtar/blocks/window_tables/documents.html:9 msgid "Authors" @@ -526,7 +526,7 @@ msgstr "" msgid "Deletion" msgstr "" -#: ishtar_menu.py:39 models.py:1277 views.py:1608 +#: ishtar_menu.py:39 models.py:1283 views.py:1632 msgid "Global variables" msgstr "" @@ -554,19 +554,19 @@ msgstr "" msgid "Manual merge" msgstr "" -#: ishtar_menu.py:109 models.py:2315 +#: ishtar_menu.py:109 models.py:2334 msgid "Imports" msgstr "" -#: ishtar_menu.py:112 views.py:1616 +#: ishtar_menu.py:112 views.py:1640 msgid "New import" msgstr "" -#: ishtar_menu.py:116 views.py:1630 +#: ishtar_menu.py:116 views.py:1654 msgid "Current imports" msgstr "" -#: ishtar_menu.py:120 views.py:1669 +#: ishtar_menu.py:120 views.py:1693 msgid "Old imports" msgstr "" @@ -574,258 +574,258 @@ msgstr "" msgid "Not a valid item." msgstr "" -#: models.py:199 +#: models.py:201 msgid "A selected item is not a valid item." msgstr "" -#: models.py:210 +#: models.py:212 msgid "This item already exists." msgstr "" -#: models.py:375 models.py:695 models.py:1516 models.py:1528 models.py:1954 +#: models.py:377 models.py:697 models.py:1535 models.py:1547 models.py:1973 msgid "Label" msgstr "" -#: models.py:377 +#: models.py:379 msgid "Textual ID" msgstr "" -#: models.py:380 models.py:698 models.py:1485 +#: models.py:382 models.py:700 models.py:1504 msgid "Available" msgstr "" -#: models.py:722 models.py:2076 +#: models.py:724 models.py:2095 msgid "Key" msgstr "" -#: models.py:728 +#: models.py:730 msgid "Specific key to an import" msgstr "" -#: models.py:820 +#: models.py:826 msgid "Last editor" msgstr "" -#: models.py:823 +#: models.py:829 msgid "Creator" msgstr "" -#: models.py:965 models.py:2846 models.py:3001 models.py:3057 +#: models.py:971 models.py:2877 models.py:3045 models.py:3101 msgid "Order" msgstr "" -#: models.py:966 +#: models.py:972 msgid "Symmetrical" msgstr "" -#: models.py:967 +#: models.py:973 msgid "Tiny label" msgstr "" -#: models.py:981 +#: models.py:987 msgid "Cannot have symmetrical and an inverse_relation" msgstr "" -#: models.py:1097 +#: models.py:1103 msgid "Euro" msgstr "" -#: models.py:1098 +#: models.py:1104 msgid "US dollar" msgstr "" -#: models.py:1104 models.py:1768 +#: models.py:1110 models.py:1787 msgid "Slug" msgstr "" -#: models.py:1107 +#: models.py:1113 msgid "CSS color code for base module" msgstr "" -#: models.py:1109 +#: models.py:1115 msgid "Files module" msgstr "" -#: models.py:1111 +#: models.py:1117 msgid "CSS color code for files module" msgstr "" -#: models.py:1113 +#: models.py:1119 msgid "Context records module" msgstr "" -#: models.py:1116 +#: models.py:1122 msgid "CSS color code for context record module" msgstr "" -#: models.py:1118 +#: models.py:1124 msgid "Finds module" msgstr "" -#: models.py:1119 +#: models.py:1125 msgid "Need context records module" msgstr "" -#: models.py:1121 +#: models.py:1127 msgid "CSS color code for find module" msgstr "" -#: models.py:1124 +#: models.py:1130 msgid "Warehouses module" msgstr "" -#: models.py:1125 +#: models.py:1131 msgid "Need finds module" msgstr "" -#: models.py:1127 +#: models.py:1133 msgid "CSS code for warehouse module" msgstr "" -#: models.py:1129 +#: models.py:1135 msgid "Mapping module" msgstr "" -#: models.py:1131 +#: models.py:1137 msgid "CSS code for mapping module" msgstr "" -#: models.py:1134 +#: models.py:1140 msgid "Home page" msgstr "" -#: models.py:1135 +#: models.py:1141 #, python-brace-format msgid "" "Homepage of Ishtar - if not defined a default homepage will appear. Use the " "markdown syntax. {random_image} can be used to display a random image." msgstr "" -#: models.py:1139 +#: models.py:1145 msgid "File external id" msgstr "" -#: models.py:1141 +#: models.py:1147 msgid "" "Formula to manage file external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1146 +#: models.py:1152 msgid "Parcel external id" msgstr "" -#: models.py:1149 +#: models.py:1155 msgid "" "Formula to manage parcel external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1154 +#: models.py:1160 msgid "Context record external id" msgstr "" -#: models.py:1156 +#: models.py:1162 msgid "" "Formula to manage context record external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1161 +#: models.py:1167 msgid "Base find external id" msgstr "" -#: models.py:1163 +#: models.py:1169 msgid "" "Formula to manage base find external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1168 +#: models.py:1174 msgid "Find external id" msgstr "" -#: models.py:1170 +#: models.py:1176 msgid "" "Formula to manage find external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1175 +#: models.py:1181 msgid "Container external id" msgstr "" -#: models.py:1177 +#: models.py:1183 msgid "" "Formula to manage container external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1182 +#: models.py:1188 msgid "Warehouse external id" msgstr "" -#: models.py:1184 +#: models.py:1190 msgid "" "Formula to manage warehouse external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1189 +#: models.py:1195 msgid "Raw name for person" msgstr "" -#: models.py:1191 +#: models.py:1197 msgid "" "Formula to manage person raw_name. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1195 +#: models.py:1201 msgid "Current active" msgstr "" -#: models.py:1196 +#: models.py:1202 msgid "Currency" msgstr "" -#: models.py:1200 +#: models.py:1206 msgid "Ishtar site profile" msgstr "" -#: models.py:1201 +#: models.py:1207 msgid "Ishtar site profiles" msgstr "" -#: models.py:1270 +#: models.py:1276 msgid "Variable name" msgstr "" -#: models.py:1271 +#: models.py:1277 msgid "Description of the variable" msgstr "" -#: models.py:1273 models.py:2077 +#: models.py:1279 models.py:2096 msgid "Value" msgstr "" -#: models.py:1276 +#: models.py:1282 msgid "Global variable" msgstr "" -#: models.py:1386 models.py:1416 +#: models.py:1405 models.py:1435 msgid "Total" msgstr "" -#: models.py:1393 models.py:1517 models.py:1529 +#: models.py:1412 models.py:1536 models.py:1548 #: templates/ishtar/sheet_person.html:24 #: templates/ishtar/dashboards/dashboard_main_detail.html:141 #: templates/ishtar/dashboards/dashboard_main_detail_users.html:26 @@ -833,643 +833,663 @@ msgstr "" msgid "Number" msgstr "" -#: models.py:1480 +#: models.py:1499 msgid "Administrative Act" msgstr "" -#: models.py:1484 +#: models.py:1503 msgid "Associated object" msgstr "" -#: models.py:1488 +#: models.py:1507 msgid "Document template" msgstr "" -#: models.py:1489 +#: models.py:1508 msgid "Document templates" msgstr "" -#: models.py:1520 models.py:1530 models.py:2299 +#: models.py:1539 models.py:1549 models.py:2318 msgid "State" msgstr "" -#: models.py:1534 templates/blocks/JQueryAdvancedTown.html:12 +#: models.py:1553 templates/blocks/JQueryAdvancedTown.html:12 msgid "Department" msgstr "" -#: models.py:1535 +#: models.py:1554 msgid "Departments" msgstr "" -#: models.py:1572 +#: models.py:1591 msgid "Raw phone" msgstr "" -#: models.py:1578 +#: models.py:1597 msgid "Alternative address is prefered" msgstr "" -#: models.py:1617 +#: models.py:1636 msgid "Tel: " msgstr "" -#: models.py:1621 +#: models.py:1640 msgid "Mobile: " msgstr "" -#: models.py:1625 +#: models.py:1644 msgid "Email: " msgstr "" -#: models.py:1630 +#: models.py:1649 msgid "Merge key" msgstr "" -#: models.py:1704 +#: models.py:1723 msgid "Organization types" msgstr "" -#: models.py:1751 +#: models.py:1770 msgid "Class name" msgstr "" -#: models.py:1754 +#: models.py:1773 msgid "Importer - Model" msgstr "" -#: models.py:1755 +#: models.py:1774 msgid "Importer - Models" msgstr "" -#: models.py:1772 templates/ishtar/dashboards/dashboard_main.html:25 +#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:25 msgid "Users" msgstr "" -#: models.py:1775 +#: models.py:1794 msgid "Associated model" msgstr "" -#: models.py:1778 +#: models.py:1797 msgid "Models that can accept new items" msgstr "" -#: models.py:1779 +#: models.py:1798 msgid "Leave blank for no restrictions" msgstr "" -#: models.py:1781 +#: models.py:1800 msgid "Is template" msgstr "" -#: models.py:1782 +#: models.py:1801 msgid "Unicity keys (separator \";\")" msgstr "" -#: models.py:1786 +#: models.py:1805 msgid "Importer - Type" msgstr "" -#: models.py:1787 +#: models.py:1806 msgid "Importer - Types" msgstr "" -#: models.py:1886 +#: models.py:1905 msgid "Importer - Default" msgstr "" -#: models.py:1887 +#: models.py:1906 msgid "Importer - Defaults" msgstr "" -#: models.py:1922 +#: models.py:1941 msgid "Importer - Default value" msgstr "" -#: models.py:1923 +#: models.py:1942 msgid "Importer - Default values" msgstr "" -#: models.py:1956 +#: models.py:1975 msgid "Column number" msgstr "" -#: models.py:1959 +#: models.py:1978 msgid "Required" msgstr "" -#: models.py:1961 +#: models.py:1980 msgid "Export field name" msgstr "" -#: models.py:1962 +#: models.py:1981 msgid "" "Fill this field if the field name is ambiguous for export. For instance: " "concatenated fields." msgstr "" -#: models.py:1967 +#: models.py:1986 msgid "Importer - Column" msgstr "" -#: models.py:1968 +#: models.py:1987 msgid "Importer - Columns" msgstr "" -#: models.py:1988 +#: models.py:2007 msgid "Field name" msgstr "" -#: models.py:1990 models.py:2024 +#: models.py:2009 models.py:2043 msgid "Force creation of new items" msgstr "" -#: models.py:1992 models.py:2026 +#: models.py:2011 models.py:2045 msgid "Concatenate with existing" msgstr "" -#: models.py:1994 models.py:2028 +#: models.py:2013 models.py:2047 msgid "Concatenate character" msgstr "" -#: models.py:1998 +#: models.py:2017 msgid "Importer - Duplicate field" msgstr "" -#: models.py:1999 +#: models.py:2018 msgid "Importer - Duplicate fields" msgstr "" -#: models.py:2006 +#: models.py:2025 msgid "Regular expression" msgstr "" -#: models.py:2009 +#: models.py:2028 msgid "Importer - Regular expression" msgstr "" -#: models.py:2010 +#: models.py:2029 msgid "Importer - Regular expressions" msgstr "" -#: models.py:2033 +#: models.py:2052 msgid "Importer - Target" msgstr "" -#: models.py:2034 +#: models.py:2053 msgid "Importer - Targets" msgstr "" -#: models.py:2058 views.py:549 +#: models.py:2077 views.py:568 msgid "True" msgstr "" -#: models.py:2059 views.py:551 +#: models.py:2078 views.py:570 msgid "False" msgstr "" -#: models.py:2078 +#: models.py:2097 msgid "Is set" msgstr "" -#: models.py:2085 +#: models.py:2104 msgid "Importer - Target key" msgstr "" -#: models.py:2086 +#: models.py:2105 msgid "Importer - Targets keys" msgstr "" -#: models.py:2138 models.py:2913 +#: models.py:2157 models.py:2957 msgid "Format" msgstr "" -#: models.py:2139 models.py:3005 +#: models.py:2158 models.py:3049 msgid "Operation type" msgstr "" -#: models.py:2140 +#: models.py:2159 msgid "Period" msgstr "" -#: models.py:2141 +#: models.py:2160 msgid "Report state" msgstr "" -#: models.py:2142 +#: models.py:2161 msgid "Remain type" msgstr "" -#: models.py:2143 +#: models.py:2162 msgid "Unit" msgstr "" -#: models.py:2144 +#: models.py:2163 msgid "Activity type" msgstr "" -#: models.py:2145 +#: models.py:2164 msgid "Material" msgstr "" -#: models.py:2147 +#: models.py:2166 msgid "Conservatory state" msgstr "" -#: models.py:2148 +#: models.py:2167 msgid "Container type" msgstr "" -#: models.py:2149 +#: models.py:2168 msgid "Preservation type" msgstr "" -#: models.py:2150 +#: models.py:2169 msgid "Object type" msgstr "" -#: models.py:2151 +#: models.py:2170 msgid "Integrity type" msgstr "" -#: models.py:2152 +#: models.py:2171 msgid "Remarkability type" msgstr "" -#: models.py:2153 +#: models.py:2172 msgid "Batch type" msgstr "" -#: models.py:2155 +#: models.py:2174 msgid "Identification type" msgstr "" -#: models.py:2157 +#: models.py:2176 msgid "Context record relation type" msgstr "" -#: models.py:2158 models.py:3063 +#: models.py:2177 models.py:3107 msgid "Spatial reference system" msgstr "" -#: models.py:2159 models.py:2891 +#: models.py:2178 models.py:2935 msgid "Support type" msgstr "" -#: models.py:2160 models.py:2553 +#: models.py:2179 models.py:2572 msgid "Title type" msgstr "" -#: models.py:2166 +#: models.py:2185 msgid "Integer" msgstr "" -#: models.py:2167 +#: models.py:2186 msgid "Float" msgstr "" -#: models.py:2168 +#: models.py:2187 msgid "String" msgstr "" -#: models.py:2169 templates/sheet_ope.html:86 +#: models.py:2188 templates/sheet_ope.html:86 msgid "Date" msgstr "" -#: models.py:2171 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 +#: models.py:2190 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 #: templates/ishtar/dashboards/dashboard_main_detail.html:126 msgid "Year" msgstr "" -#: models.py:2172 +#: models.py:2191 msgid "String to boolean" msgstr "" -#: models.py:2173 +#: models.py:2192 msgctxt "filesystem" msgid "File" msgstr "" -#: models.py:2174 +#: models.py:2193 msgid "Unknow type" msgstr "" -#: models.py:2190 +#: models.py:2209 msgid "4 digit year. e.g.: \"2015\"" msgstr "" -#: models.py:2191 +#: models.py:2210 msgid "4 digit year/month/day. e.g.: \"2015/02/04\"" msgstr "" -#: models.py:2192 +#: models.py:2211 msgid "Day/month/4 digit year. e.g.: \"04/02/2015\"" msgstr "" -#: models.py:2202 +#: models.py:2221 msgid "Options" msgstr "" -#: models.py:2204 +#: models.py:2223 msgid "Split character(s)" msgstr "" -#: models.py:2208 +#: models.py:2227 msgid "Importer - Formater type" msgstr "" -#: models.py:2209 +#: models.py:2228 msgid "Importer - Formater types" msgstr "" -#: models.py:2261 templates/ishtar/dashboards/dashboard_main_detail.html:63 +#: models.py:2280 templates/ishtar/dashboards/dashboard_main_detail.html:63 msgid "Created" msgstr "" -#: models.py:2262 +#: models.py:2281 msgid "Analyse in progress" msgstr "" -#: models.py:2263 +#: models.py:2282 msgid "Analysed" msgstr "" -#: models.py:2264 +#: models.py:2283 msgid "Import pending" msgstr "" -#: models.py:2265 +#: models.py:2284 msgid "Import in progress" msgstr "" -#: models.py:2266 +#: models.py:2285 msgid "Finished with errors" msgstr "" -#: models.py:2267 +#: models.py:2286 msgid "Finished" msgstr "" -#: models.py:2268 +#: models.py:2287 msgid "Archived" msgstr "" -#: models.py:2283 +#: models.py:2302 msgid "Imported file" msgstr "" -#: models.py:2285 +#: models.py:2304 msgid "Associated images (zip file)" msgstr "" -#: models.py:2287 +#: models.py:2306 msgid "Encoding" msgstr "" -#: models.py:2289 +#: models.py:2308 msgid "Skip lines" msgstr "" -#: models.py:2290 templates/ishtar/import_list.html:51 +#: models.py:2309 templates/ishtar/import_list.html:51 msgid "Error file" msgstr "" -#: models.py:2293 +#: models.py:2312 msgid "Result file" msgstr "" -#: models.py:2296 templates/ishtar/import_list.html:57 +#: models.py:2315 templates/ishtar/import_list.html:57 msgid "Match file" msgstr "" -#: models.py:2302 +#: models.py:2321 msgid "Conservative import" msgstr "" -#: models.py:2307 +#: models.py:2326 msgid "End date" msgstr "" -#: models.py:2309 +#: models.py:2328 msgid "Remaining seconds" msgstr "" -#: models.py:2314 +#: models.py:2333 msgid "Import" msgstr "" -#: models.py:2343 +#: models.py:2362 msgid "Analyse" msgstr "" -#: models.py:2345 models.py:2348 +#: models.py:2364 models.py:2367 msgid "Re-analyse" msgstr "" -#: models.py:2346 +#: models.py:2365 msgid "Launch import" msgstr "" -#: models.py:2349 +#: models.py:2368 msgid "Re-import" msgstr "" -#: models.py:2350 +#: models.py:2369 msgid "Archive" msgstr "" -#: models.py:2352 +#: models.py:2371 msgid "Unarchive" msgstr "" -#: models.py:2353 widgets.py:130 templates/ishtar/form_delete.html:11 +#: models.py:2372 widgets.py:184 templates/ishtar/form_delete.html:11 msgid "Delete" msgstr "" -#: models.py:2494 +#: models.py:2513 msgid "Organizations" msgstr "" -#: models.py:2496 +#: models.py:2515 msgid "Can view all Organizations" msgstr "" -#: models.py:2497 +#: models.py:2516 msgid "Can view own Organization" msgstr "" -#: models.py:2498 +#: models.py:2517 msgid "Can add own Organization" msgstr "" -#: models.py:2500 +#: models.py:2519 msgid "Can change own Organization" msgstr "" -#: models.py:2502 +#: models.py:2521 msgid "Can delete own Organization" msgstr "" -#: models.py:2537 +#: models.py:2556 msgid "Groups" msgstr "" -#: models.py:2542 +#: models.py:2561 msgid "Person types" msgstr "" -#: models.py:2554 +#: models.py:2573 msgid "Title types" msgstr "" -#: models.py:2563 +#: models.py:2582 msgid "Mr" msgstr "" -#: models.py:2564 +#: models.py:2583 msgid "Miss" msgstr "" -#: models.py:2565 +#: models.py:2584 msgid "Mr and Mrs" msgstr "" -#: models.py:2566 +#: models.py:2585 msgid "Mrs" msgstr "" -#: models.py:2567 +#: models.py:2586 msgid "Doctor" msgstr "" -#: models.py:2600 +#: models.py:2619 msgid "Contact type" msgstr "" -#: models.py:2603 models.py:2667 +#: models.py:2622 models.py:2686 msgid "Types" msgstr "" -#: models.py:2606 +#: models.py:2625 msgid "Is attached to" msgstr "" -#: models.py:2611 +#: models.py:2630 msgid "Persons" msgstr "" -#: models.py:2613 +#: models.py:2632 msgid "Can view all Persons" msgstr "" -#: models.py:2614 +#: models.py:2633 msgid "Can view own Person" msgstr "" -#: models.py:2615 +#: models.py:2634 msgid "Can add own Person" msgstr "" -#: models.py:2616 +#: models.py:2635 msgid "Can change own Person" msgstr "" -#: models.py:2617 +#: models.py:2636 msgid "Can delete own Person" msgstr "" -#: models.py:2794 +#: models.py:2825 msgid "Advanced shortcut menu" msgstr "" -#: models.py:2797 +#: models.py:2828 msgid "Ishtar user" msgstr "" -#: models.py:2798 +#: models.py:2829 msgid "Ishtar users" msgstr "" -#: models.py:2842 +#: models.py:2873 msgid "To modify the password use the form in Auth > User" msgstr "" -#: models.py:2849 +#: models.py:2881 msgid "Author types" msgstr "" -#: models.py:2883 +#: models.py:2898 +msgid "Can view all Authors" +msgstr "" + +#: models.py:2900 +msgid "Can view own Author" +msgstr "" + +#: models.py:2902 +msgid "Can add own Author" +msgstr "" + +#: models.py:2904 +msgid "Can change own Author" +msgstr "" + +#: models.py:2906 +msgid "Can delete own Author" +msgstr "" + +#: models.py:2927 msgid "Source types" msgstr "" -#: models.py:2892 +#: models.py:2936 msgid "Support types" msgstr "" -#: models.py:2899 +#: models.py:2943 msgid "Format type" msgstr "" -#: models.py:2900 +#: models.py:2944 msgid "Format types" msgstr "" -#: models.py:2908 +#: models.py:2952 msgid "External ID" msgstr "" -#: models.py:2911 +#: models.py:2955 msgid "Support" msgstr "" -#: models.py:2915 +#: models.py:2959 msgid "Scale" msgstr "" -#: models.py:2929 +#: models.py:2973 msgid "Item number" msgstr "" -#: models.py:2930 +#: models.py:2974 msgid "Ref." msgstr "" -#: models.py:2933 +#: models.py:2977 msgid "Internal ref." msgstr "" -#: models.py:2976 +#: models.py:3020 msgid "Surface (m2)" msgstr "" -#: models.py:2977 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 +#: models.py:3021 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 msgid "Localisation" msgstr "" -#: models.py:3002 +#: models.py:3046 msgid "Is preventive" msgstr "" -#: models.py:3006 +#: models.py:3050 msgid "Operation types" msgstr "" -#: models.py:3035 +#: models.py:3079 msgid "Preventive" msgstr "" -#: models.py:3036 +#: models.py:3080 msgid "Research" msgstr "" -#: models.py:3059 +#: models.py:3103 msgid "Authority name" msgstr "" -#: models.py:3060 +#: models.py:3104 msgid "Authority SRID" msgstr "" -#: models.py:3064 +#: models.py:3108 msgid "Spatial reference systems" msgstr "" @@ -1513,108 +1533,108 @@ msgstr "" msgid "Account deletion" msgstr "" -#: views.py:241 +#: views.py:251 msgid "Archaeological file" msgstr "" -#: views.py:242 +#: views.py:252 msgid "Operation" msgstr "" -#: views.py:244 +#: views.py:254 msgid "Context record" msgstr "" -#: views.py:246 +#: views.py:256 msgid "Find" msgstr "" -#: views.py:248 +#: views.py:258 msgid "Treatment request" msgstr "" -#: views.py:249 +#: views.py:259 msgid "Treatment" msgstr "" -#: views.py:1363 views.py:1406 +#: views.py:1387 views.py:1430 msgid "Operation not permitted." msgstr "" -#: views.py:1365 +#: views.py:1389 #, python-format msgid "New %s" msgstr "" -#: views.py:1424 views.py:1474 +#: views.py:1448 views.py:1498 msgid "Archaeological files" msgstr "" -#: views.py:1425 views.py:1478 +#: views.py:1449 views.py:1502 msgid "Operations" msgstr "" -#: views.py:1427 views.py:1482 +#: views.py:1451 views.py:1506 msgid "Context records" msgstr "" -#: views.py:1429 views.py:1485 +#: views.py:1453 views.py:1509 msgid "Finds" msgstr "" -#: views.py:1683 templates/ishtar/import_list.html:47 +#: views.py:1707 templates/ishtar/import_list.html:47 msgid "Link unmatched items" msgstr "" -#: views.py:1698 +#: views.py:1722 msgid "Delete import" msgstr "" -#: views.py:1737 +#: views.py:1761 msgid "Merge persons" msgstr "" -#: views.py:1761 +#: views.py:1785 msgid "Select the main person" msgstr "" -#: views.py:1770 +#: views.py:1794 msgid "Merge organization" msgstr "" -#: views.py:1780 +#: views.py:1804 msgid "Select the main organization" msgstr "" -#: views.py:1820 views.py:1836 +#: views.py:1844 views.py:1860 msgid "Corporation manager" msgstr "" -#: widgets.py:259 widgets.py:366 widgets.py:481 +#: widgets.py:313 widgets.py:420 widgets.py:535 msgid "Search..." msgstr "" -#: widgets.py:670 templatetags/window_tables.py:96 +#: widgets.py:724 templatetags/window_tables.py:96 msgid "No results" msgstr "" -#: widgets.py:671 templatetags/window_tables.py:97 +#: widgets.py:725 templatetags/window_tables.py:97 msgid "Loading..." msgstr "" -#: widgets.py:672 +#: widgets.py:726 msgid "Remove" msgstr "" -#: wizards.py:374 templates/ishtar/import_delete.html:21 +#: wizards.py:380 templates/ishtar/import_delete.html:21 msgid "Yes" msgstr "" -#: wizards.py:376 +#: wizards.py:382 msgid "No" msgstr "" -#: wizards.py:1396 +#: wizards.py:1404 #, python-format msgid "[%(app_name)s] Account creation/modification" msgstr "" @@ -1689,19 +1709,19 @@ msgstr "" msgid ":" msgstr "" -#: templates/base.html:120 +#: templates/base.html:123 msgid "Processing..." msgstr "" -#: templates/base.html:121 +#: templates/base.html:124 msgid "This can be long." msgstr "" -#: templates/base.html:122 +#: templates/base.html:125 msgid "Time to take a coffee?" msgstr "" -#: templates/base.html:123 +#: templates/base.html:126 msgid "Time to take another coffee?" msgstr "" diff --git a/translations/fr/archaeological_context_records.po b/translations/fr/archaeological_context_records.po index 3b0762092..d9d2f3506 100644 --- a/translations/fr/archaeological_context_records.po +++ b/translations/fr/archaeological_context_records.po @@ -7,21 +7,23 @@ # Étienne Loks , 2017. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2017-03-21 06:22-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:47 forms.py:51 models.py:216 models.py:589 wizards.py:77 +#: forms.py:47 forms.py:51 models.py:216 models.py:599 wizards.py:77 msgid "Operation" msgstr "Opération" -#: forms.py:59 forms.py:141 models.py:218 models.py:557 +#: forms.py:59 forms.py:141 models.py:218 models.py:567 msgid "ID" msgstr "Identifiant" @@ -73,11 +75,11 @@ msgstr "Vous devez sélectionner au moins une Unité d'Enregistrement." msgid "General" msgstr "Général" -#: forms.py:140 models.py:181 models.py:214 models.py:559 +#: forms.py:140 models.py:181 models.py:214 models.py:569 msgid "Parcel" msgstr "Parcelle" -#: forms.py:143 models.py:219 models.py:560 +#: forms.py:143 models.py:219 models.py:570 #: templates/ishtar/sheet_contextrecord.html:30 msgid "Description" msgstr "Description" @@ -114,7 +116,7 @@ msgstr "Profondeur (m)" msgid "Depth of appearance (m)" msgstr "Profondeur d'apparition" -#: forms.py:156 forms.py:376 models.py:241 models.py:558 +#: forms.py:156 forms.py:376 models.py:241 models.py:568 msgid "Context record type" msgstr "Type d'Unité d'Enregistrement" @@ -163,7 +165,7 @@ msgstr "Qualité" msgid "Dating type" msgstr "Type de datation" -#: forms.py:285 ishtar_menu.py:29 models.py:619 +#: forms.py:285 ishtar_menu.py:29 models.py:641 msgid "Context record" msgstr "Unité d'Enregistrement" @@ -332,7 +334,7 @@ msgstr "Type de documentation" msgid "Documentation types" msgstr "Types de documentation" -#: models.py:172 models.py:561 +#: models.py:172 models.py:571 msgid "Periods" msgstr "Périodes" @@ -441,74 +443,99 @@ msgctxt "short" msgid "Context record" msgstr "UE" -#: models.py:491 +#: models.py:501 msgid "Inverse relation" msgstr "Relation inverse" -#: models.py:495 models.py:518 models.py:556 +#: models.py:505 models.py:528 models.py:566 msgid "Relation type" msgstr "Type de relation" -#: models.py:496 +#: models.py:506 msgid "Relation types" msgstr "Types de relation" -#: models.py:513 +#: models.py:523 msgid "ID (left)" msgstr "ID (gauche)" -#: models.py:514 +#: models.py:524 msgid "Context record type (left)" msgstr "Type d'UE (gauche)" -#: models.py:515 +#: models.py:525 msgid "Parcel (left)" msgstr "Parcelle (gauche)" -#: models.py:516 +#: models.py:526 msgid "Description (left)" msgstr "Description (gauche)" -#: models.py:517 +#: models.py:527 msgid "Periods (left)" msgstr "Périodes (gauche)" -#: models.py:519 +#: models.py:529 msgid "ID (right)" msgstr "ID (droit)" -#: models.py:520 +#: models.py:530 msgid "Context record type (right)" msgstr "Type d'UE (droite)" -#: models.py:521 +#: models.py:531 msgid "Parcel (right)" msgstr "Parcelle (droite)" -#: models.py:522 +#: models.py:532 msgid "Description (right)" msgstr "Description (droite)" -#: models.py:523 +#: models.py:533 msgid "Periods (right)" msgstr "Périodes (droite)" -#: models.py:532 +#: models.py:542 msgid "Record relation" msgstr "Relation entre Unités d'Enregistrement" -#: models.py:533 +#: models.py:543 msgid "Record relations" msgstr "Relations entre Unités d'Enregistrement" -#: models.py:616 +#: models.py:626 msgid "Context record documentation" msgstr "Documentation d'une Unité d'Enregistrement" -#: models.py:617 +#: models.py:627 msgid "Context record documentations" msgstr "Documentations des Unités d'Enregistrement" +#: models.py:630 +#, fuzzy +msgid "Can view all Context record sources" +msgstr "Peut voir toutes les Unités d'Enregistrement" + +#: models.py:632 +#, fuzzy +msgid "Can view own Context record source" +msgstr "Peut voir sa propre Unité d'Enregistrement" + +#: models.py:634 +#, fuzzy +msgid "Can add own Context record source" +msgstr "Peut ajouter sa propre Unité d'Enregistrement" + +#: models.py:636 +#, fuzzy +msgid "Can change own Context record source" +msgstr "Peut modifier sa propre Unité d'Enregistrement" + +#: models.py:638 +#, fuzzy +msgid "Can delete own Context record source" +msgstr "Peut supprimer sa propre Unité d'Enregistrement" + #: views.py:102 msgid "New context record" msgstr "Ajouter une Unité d'Enregistrement" diff --git a/translations/fr/archaeological_files.po b/translations/fr/archaeological_files.po index 23d75e0d0..2b2804547 100644 --- a/translations/fr/archaeological_files.po +++ b/translations/fr/archaeological_files.po @@ -8,17 +8,19 @@ # Valérie-Emma Leroux , 2017. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2017-02-05 05:21-0500\n" "Last-Translator: Valérie-Emma Leroux \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:47 forms.py:210 forms.py:255 forms.py:396 forms.py:423 +#: forms.py:47 forms.py:210 forms.py:255 forms.py:394 forms.py:421 #: models.py:108 templates/ishtar/sheet_file.html:144 msgid "Year" msgstr "Année" @@ -31,15 +33,15 @@ msgstr "Référence numérique" msgid "Other reference" msgstr "Autre référence" -#: forms.py:52 forms.py:431 +#: forms.py:52 forms.py:429 msgid "Parcel (section/number/public domain)" msgstr "Parcelle (section/numéro/domaine public)" -#: forms.py:55 forms.py:407 forms.py:434 models.py:558 +#: forms.py:55 forms.py:405 forms.py:432 models.py:558 msgid "Department" msgstr "Département" -#: forms.py:56 forms.py:443 +#: forms.py:56 forms.py:441 msgid "File name" msgstr "Nom du dossier" @@ -63,7 +65,7 @@ msgstr "Type de permis" msgid "Permit reference" msgstr "Référence du permis" -#: forms.py:63 forms.py:227 forms.py:364 models.py:180 +#: forms.py:63 forms.py:227 forms.py:362 models.py:180 #: templates/ishtar/sheet_file.html:97 msgid "Comment" msgstr "Commentaire" @@ -72,19 +74,19 @@ msgstr "Commentaire" msgid "In charge" msgstr "Responsable" -#: forms.py:72 forms.py:281 forms.py:445 models.py:126 +#: forms.py:72 forms.py:281 forms.py:443 models.py:126 msgid "General contractor" msgstr "Aménageur" -#: forms.py:79 forms.py:453 +#: forms.py:79 forms.py:451 msgid "Organization of general contractor" msgstr "Organisation de l'aménageur" -#: forms.py:87 forms.py:476 +#: forms.py:87 forms.py:474 msgid "Created by" msgstr "Créé par" -#: forms.py:94 forms.py:484 +#: forms.py:94 forms.py:482 msgid "Modified by" msgstr "Modifié par" @@ -178,83 +180,83 @@ msgstr "Surface totale aménagée (m2)" msgid "Research archaeology" msgstr "Archéologie programmée" -#: forms.py:341 models.py:183 templates/ishtar/sheet_file.html:88 +#: forms.py:340 models.py:183 templates/ishtar/sheet_file.html:88 msgid "Departments" msgstr "Départements" -#: forms.py:351 models.py:192 +#: forms.py:349 models.py:192 msgid "Scientist in charge" msgstr "Responsable scientifique" -#: forms.py:353 models.py:186 templates/ishtar/sheet_file.html:90 +#: forms.py:351 models.py:186 templates/ishtar/sheet_file.html:90 msgid "Requested operation type" msgstr "Type d'opération demandée" -#: forms.py:355 +#: forms.py:353 msgid "Lead organization" msgstr "Organisation porteuse du projet" -#: forms.py:371 models.py:196 templates/ishtar/sheet_file.html:95 +#: forms.py:369 models.py:196 templates/ishtar/sheet_file.html:95 msgid "Classified area" msgstr "Au sein d'un site classé" -#: forms.py:373 models.py:198 templates/ishtar/sheet_file.html:96 +#: forms.py:371 models.py:198 templates/ishtar/sheet_file.html:96 msgid "Protected area" msgstr "Au sein d'un secteur sauvegardé" -#: forms.py:387 +#: forms.py:385 msgid "Would you like to close this archaeological file?" msgstr "Voulez-vous clore ce dossier archéologique ?" -#: forms.py:392 +#: forms.py:390 msgid "Would you like to delete this archaeological file ?" msgstr "Voulez-vous supprimer ce dossier archéologique ?" -#: forms.py:397 forms.py:424 forms.py:547 +#: forms.py:395 forms.py:422 forms.py:545 msgid "Index" msgstr "Index" -#: forms.py:401 forms.py:428 forms.py:533 +#: forms.py:399 forms.py:426 forms.py:531 msgid "Act type" msgstr "Type d'acte" -#: forms.py:402 +#: forms.py:400 msgid "Object (full text search)" msgstr "Objet (recherche texte intégral)" -#: forms.py:429 +#: forms.py:427 msgid "Indexed?" msgstr "Indexé ?" -#: forms.py:435 +#: forms.py:433 msgid "Object" msgstr "Objet" -#: forms.py:439 +#: forms.py:437 msgid "Signature date after" msgstr "Date de signature après" -#: forms.py:441 +#: forms.py:439 msgid "Signature date before" msgstr "Date de signature avant" -#: forms.py:461 +#: forms.py:459 msgid "File numeric reference" msgstr "Dossier : réf. numérique" -#: forms.py:462 +#: forms.py:460 msgid "File year" msgstr "Dossier : année" -#: forms.py:464 +#: forms.py:462 msgid "File other reference" msgstr "Dossier : autre référence" -#: forms.py:466 +#: forms.py:464 msgid "File in charge" msgstr "Dossier : responsable" -#: forms.py:474 +#: forms.py:472 msgid "File permit reference" msgstr "Dossier : réf. du permis" diff --git a/translations/fr/archaeological_files_pdl.po b/translations/fr/archaeological_files_pdl.po index 949555adc..6b026d72e 100644 --- a/translations/fr/archaeological_files_pdl.po +++ b/translations/fr/archaeological_files_pdl.po @@ -5,13 +5,15 @@ # Valérie-Emma Leroux , 2016. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2016-11-14 05:33-0500\n" "Last-Translator: Copied by Zanata \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" "X-Generator: Zanata 3.9.6\n" diff --git a/translations/fr/archaeological_finds.po b/translations/fr/archaeological_finds.po index 32c8a4861..6446c4f38 100644 --- a/translations/fr/archaeological_finds.po +++ b/translations/fr/archaeological_finds.po @@ -8,179 +8,181 @@ # Étienne Loks , 2017. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2017-03-21 06:23-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:93 forms.py:97 models_finds.py:505 wizards.py:64 +#: forms.py:93 forms.py:97 models_finds.py:518 wizards.py:64 msgid "Context record" msgstr "Unité d'Enregistrement" -#: forms.py:126 ishtar_menu.py:32 models_finds.py:668 models_finds.py:1071 -#: models_finds.py:1080 models_treatments.py:281 +#: forms.py:126 ishtar_menu.py:32 models_finds.py:682 models_finds.py:1113 +#: models_finds.py:1134 models_treatments.py:281 #: templates/ishtar/sheet_find.html:5 msgid "Find" msgstr "Mobilier" -#: forms.py:140 forms.py:333 forms.py:601 models_finds.py:151 -#: models_finds.py:599 +#: forms.py:140 forms.py:337 forms.py:605 models_finds.py:150 +#: models_finds.py:612 msgid "Free ID" msgstr "ID libre" -#: forms.py:142 models_finds.py:651 +#: forms.py:142 models_finds.py:665 msgid "Previous ID" msgstr "Identifiant précédent" -#: forms.py:143 forms.py:364 forms_treatments.py:134 models_finds.py:155 -#: models_finds.py:600 models_treatments.py:127 +#: forms.py:143 forms.py:368 forms_treatments.py:134 models_finds.py:154 +#: models_finds.py:613 models_treatments.py:127 msgid "Description" msgstr "Description" -#: forms.py:146 forms.py:366 models_finds.py:164 +#: forms.py:146 forms.py:370 models_finds.py:163 msgid "Batch/object" msgstr "Lot/objet" -#: forms.py:148 models_finds.py:628 +#: forms.py:148 models_finds.py:642 msgid "Is complete?" msgstr "Est complet ?" -#: forms.py:151 forms.py:354 forms.py:605 models_finds.py:51 +#: forms.py:151 forms.py:358 forms.py:609 models_finds.py:50 msgid "Material type" msgstr "Type de matériau" -#: forms.py:152 forms.py:358 models_finds.py:63 models_finds.py:604 +#: forms.py:154 forms.py:362 models_finds.py:62 models_finds.py:617 msgid "Conservatory state" msgstr "État sanitaire" -#: forms.py:155 models_finds.py:606 +#: forms.py:157 models_finds.py:619 msgid "Conservatory comment" msgstr "Commentaire relatif à la conservation" -#: forms.py:158 models_finds.py:113 models_finds.py:631 +#: forms.py:160 models_finds.py:112 models_finds.py:645 msgid "Object types" msgstr "Types d'objet" -#: forms.py:160 forms.py:357 models_finds.py:72 +#: forms.py:164 forms.py:361 models_finds.py:71 msgid "Preservation type" msgstr "Type de conservation" -#: forms.py:163 forms.py:360 models_finds.py:633 +#: forms.py:167 forms.py:364 models_finds.py:647 msgid "Integrity / interest" msgstr "Intégrité / intérêt" -#: forms.py:166 forms.py:362 models_finds.py:636 +#: forms.py:170 forms.py:366 models_finds.py:650 msgid "Remarkability" msgstr "Remarquabilité" -#: forms.py:169 models_finds.py:169 +#: forms.py:173 models_finds.py:168 msgid "Point of topographic reference" msgstr "Point de référence topographique" -#: forms.py:172 models_finds.py:171 +#: forms.py:176 models_finds.py:170 msgid "X" msgstr "X" -#: forms.py:173 models_finds.py:172 +#: forms.py:177 models_finds.py:171 msgid "Y" msgstr "Y" -#: forms.py:174 models_finds.py:173 +#: forms.py:178 models_finds.py:172 msgid "Z" msgstr "Z" -#: forms.py:176 models_finds.py:181 +#: forms.py:180 models_finds.py:180 msgid "Spatial Reference System" msgstr "Système de référence spatiale" -#: forms.py:179 models_finds.py:174 +#: forms.py:183 models_finds.py:173 msgid "Estimated error for X" msgstr "Erreur estimée pour X" -#: forms.py:181 models_finds.py:176 +#: forms.py:185 models_finds.py:175 msgid "Estimated error for Y" msgstr "Erreur estimée pour Y" -#: forms.py:183 models_finds.py:178 +#: forms.py:187 models_finds.py:177 msgid "Estimated error for Z" msgstr "Erreur estimée pour Z" -#: forms.py:184 models_finds.py:640 +#: forms.py:188 models_finds.py:654 msgid "Length (cm)" msgstr "Longueur (cm)" -#: forms.py:185 models_finds.py:641 +#: forms.py:189 models_finds.py:655 msgid "Width (cm)" msgstr "Largeur (cm)" -#: forms.py:186 models_finds.py:642 +#: forms.py:190 models_finds.py:656 msgid "Height (cm)" msgstr "Hauteur (cm)" -#: forms.py:187 models_finds.py:643 +#: forms.py:191 models_finds.py:657 msgid "Diameter (cm)" msgstr "Diamètre (cm)" -#: forms.py:188 models_finds.py:644 +#: forms.py:192 models_finds.py:658 msgid "Thickness (cm)" msgstr "Épaisseur (cm)" -#: forms.py:189 forms.py:606 models_finds.py:611 +#: forms.py:193 forms.py:610 models_finds.py:624 msgid "Volume (l)" msgstr "Volume (l)" -#: forms.py:190 forms.py:607 models_finds.py:612 +#: forms.py:194 forms.py:611 models_finds.py:625 msgid "Weight (g)" msgstr "Poids (g)" -#: forms.py:192 models_finds.py:645 +#: forms.py:196 models_finds.py:659 msgid "Dimensions comment" msgstr "Commentaire concernant les dimensions" -#: forms.py:193 forms.py:608 models_finds.py:615 +#: forms.py:197 forms.py:612 models_finds.py:628 msgid "Find number" msgstr "Mobilier (en nombre)" -#: forms.py:195 models_finds.py:639 +#: forms.py:199 models_finds.py:653 msgid "Minimum number of individuals (MNI)" msgstr "Nombre minimum d'individus (NMI)" -#: forms.py:196 models_finds.py:647 +#: forms.py:200 models_finds.py:661 msgid "Mark" msgstr "Marque" -#: forms.py:197 forms.py:367 models_finds.py:653 +#: forms.py:201 forms.py:371 models_finds.py:667 msgid "Check" msgstr "Vérification" -#: forms.py:199 models_finds.py:655 +#: forms.py:203 models_finds.py:669 msgid "Check date" msgstr "Date de vérification" -#: forms.py:200 forms_treatments.py:132 forms_treatments.py:434 -#: models_finds.py:156 models_finds.py:648 models_treatments.py:126 +#: forms.py:204 forms_treatments.py:132 forms_treatments.py:434 +#: models_finds.py:155 models_finds.py:662 models_treatments.py:126 #: models_treatments.py:494 msgid "Comment" msgstr "Commentaires" -#: forms.py:203 models_finds.py:649 +#: forms.py:207 models_finds.py:663 msgid "Comment on dating" msgstr "Commentaire général sur les datations" -#: forms.py:204 models_finds.py:657 +#: forms.py:208 models_finds.py:671 msgid "Estimated value" msgstr "Valeur estimée" -#: forms.py:206 forms_treatments.py:151 +#: forms.py:210 forms_treatments.py:151 msgid "Image" msgstr "Image" -#: forms.py:207 forms_treatments.py:152 +#: forms.py:211 forms_treatments.py:152 #, python-format msgid "" "

      Heavy images are resized to: %(width)dx%(height)d (ratio is preserved).Les images trop grandes sont retaillées en : %(width)dx%(height)d (le " "ratio est conservé).

      " -#: forms.py:281 -msgid "" -"You should at least provide X, Y and the spatial reference system used." +#: forms.py:285 +msgid "You should at least provide X, Y and the spatial reference system used." msgstr "" "Vous devez au minimum fournir X, Y et le système de référence spatiale " "utilisé." -#: forms.py:290 -msgid "" -"Coordinates are not relevant for the spatial reference system used: {}." +#: forms.py:294 +msgid "Coordinates are not relevant for the spatial reference system used: {}." msgstr "" "Les coordonnées ne sont pas pertinentes pour le système de référence " "spatiale utilisé : {}." -#: forms.py:296 forms.py:327 models_finds.py:623 +#: forms.py:300 forms.py:331 models_finds.py:636 msgid "Dating" msgstr "Datation" -#: forms.py:301 forms.py:353 +#: forms.py:305 forms.py:357 msgid "Period" msgstr "Période" -#: forms.py:302 forms_treatments.py:138 forms_treatments.py:436 -#: models_finds.py:1085 models_treatments.py:129 models_treatments.py:292 +#: forms.py:306 forms_treatments.py:138 forms_treatments.py:436 +#: models_finds.py:1139 models_treatments.py:129 models_treatments.py:292 #: templates/ishtar/sheet_find.html:91 templates/ishtar/sheet_find.html:133 msgid "Start date" msgstr "Date de début" -#: forms.py:304 models_finds.py:1086 models_treatments.py:293 +#: forms.py:308 models_finds.py:1140 models_treatments.py:293 #: templates/ishtar/sheet_find.html:92 templates/ishtar/sheet_find.html:134 msgid "End date" msgstr "Date de fin" -#: forms.py:305 +#: forms.py:309 msgid "Quality" msgstr "Qualité" -#: forms.py:307 +#: forms.py:311 msgid "Dating type" msgstr "Type de datation" -#: forms.py:309 +#: forms.py:313 msgid "Precise dating" msgstr "Datation précise" -#: forms.py:331 models_finds.py:188 +#: forms.py:335 models_finds.py:187 msgid "Short ID" msgstr "ID court" -#: forms.py:332 models_finds.py:191 +#: forms.py:336 models_finds.py:190 msgid "Complete ID" msgstr "ID complet" -#: forms.py:336 forms_treatments.py:54 forms_treatments.py:96 +#: forms.py:340 forms_treatments.py:54 forms_treatments.py:96 #: forms_treatments.py:284 forms_treatments.py:356 forms_treatments.py:406 #: forms_treatments.py:489 models_treatments.py:102 models_treatments.py:466 msgid "Year" msgstr "Année" -#: forms.py:338 +#: forms.py:342 msgid "Operation's number (index by year)" msgstr "Numéro de l'opération (index par année)" -#: forms.py:341 +#: forms.py:345 msgid "Code PATRIARCHE" msgstr "Code PATRIARCHE" -#: forms.py:345 +#: forms.py:349 msgid "Archaeological site" msgstr "Entité archéologique" -#: forms.py:351 +#: forms.py:355 msgid "Search within related operations" msgstr "Rechercher parmi les opérations liées" -#: forms.py:355 models_finds.py:112 +#: forms.py:359 models_finds.py:111 msgid "Object type" msgstr "Type d'objet" -#: forms.py:368 forms_treatments.py:57 +#: forms.py:372 forms_treatments.py:57 msgid "Has an image?" msgstr "Dispose d'une image ?" -#: forms.py:417 +#: forms.py:421 msgid "Warehouse (location)" msgstr "Dépôt (lieu)" -#: forms.py:423 +#: forms.py:427 msgid "Warehouse (responsible)" msgstr "Dépôt (responsable)" -#: forms.py:428 +#: forms.py:432 msgid "Container ID" msgstr "Identifiant du contenant" -#: forms.py:429 +#: forms.py:433 msgid "Container ref." msgstr "Réf. contenant" -#: forms.py:433 forms.py:456 views.py:149 +#: forms.py:437 forms.py:460 views.py:149 msgid "Find search" msgstr "Rechercher un mobilier" -#: forms.py:481 templates/ishtar/sheet_treatment.html:46 +#: forms.py:485 templates/ishtar/sheet_treatment.html:46 msgid "Upstream finds" msgstr "Mobilier amont" -#: forms.py:483 models_finds.py:669 +#: forms.py:487 models_finds.py:683 msgid "Finds" msgstr "Mobilier" -#: forms.py:495 +#: forms.py:499 msgid "You should at least select one archaeological find." msgstr "Vous devez sélectionner au moins un mobilier archéologique." -#: forms.py:598 +#: forms.py:602 msgid "Resulting find" msgstr "Mobilier résultant" -#: forms.py:603 +#: forms.py:607 msgid "Precise description" msgstr "Description précise" -#: forms.py:618 +#: forms.py:622 msgid "Resulting finds" msgstr "Mobiliers résultants" -#: forms.py:623 +#: forms.py:627 msgid "Would you like to delete this find?" msgstr "Voulez-vous supprimer ce mobilier ?" -#: forms.py:627 models_treatments.py:90 +#: forms.py:631 models_treatments.py:90 msgid "Upstream find" msgstr "Mobilier amont" -#: forms.py:640 +#: forms.py:644 msgid "Archaeological find search" msgstr "Rechercher un mobilier" -#: forms.py:642 +#: forms.py:646 msgid "You should select an archaeological find." msgstr "Vous devez sélectionner du mobilier." -#: forms.py:647 +#: forms.py:651 msgid "Year of the operation" msgstr "Année de l'opération" -#: forms.py:649 +#: forms.py:653 msgid "Numeric reference" msgstr "Référence numérique" -#: forms.py:656 +#: forms.py:660 msgid "Period of the archaeological find" msgstr "Période du mobilier" -#: forms.py:658 +#: forms.py:662 msgid "Material type of the archaeological find" msgstr "Type de matériau du mobilier" -#: forms.py:660 +#: forms.py:664 msgid "Description of the archaeological find" msgstr "Description du mobilier" -#: forms.py:672 forms_treatments.py:590 forms_treatments.py:616 +#: forms.py:676 forms_treatments.py:590 forms_treatments.py:616 msgid "Documentation search" msgstr "Rechercher une documentation" -#: forms.py:674 forms_treatments.py:592 forms_treatments.py:618 +#: forms.py:678 forms_treatments.py:592 forms_treatments.py:618 msgid "You should select a document." msgstr "Vous devez sélectionner un document." -#: forms.py:691 +#: forms.py:695 msgid "Another basket already exists with this name." msgstr "Un autre panier existant utilise déjà ce nom." -#: forms.py:701 forms.py:705 forms_treatments.py:175 ishtar_menu.py:57 +#: forms.py:705 forms.py:709 forms_treatments.py:175 ishtar_menu.py:57 msgid "Basket" msgstr "Panier" @@ -486,7 +486,7 @@ msgid "Associated request" msgstr "Demande associée" #: forms_treatments.py:266 forms_treatments.py:397 ishtar_menu.py:108 -#: models_treatments.py:499 models_treatments.py:521 models_treatments.py:584 +#: models_treatments.py:499 models_treatments.py:527 models_treatments.py:602 #: wizards.py:187 templates/ishtar/sheet_treatmentfile.html:5 msgid "Treatment request" msgstr "Demande de traitement" @@ -652,7 +652,7 @@ msgstr "Gestion des éléments" msgid "Documentation" msgstr "Documentation" -#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1082 +#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1136 msgid "Administrative act" msgstr "Acte administratif" @@ -666,7 +666,7 @@ msgid "Source" msgstr "Documentation" #: ishtar_menu.py:185 models_treatments.py:147 models_treatments.py:283 -#: models_treatments.py:567 models_treatments.py:570 +#: models_treatments.py:573 models_treatments.py:576 #: templates/ishtar/sheet_treatment.html:5 msgid "Treatment" msgstr "Traitement" @@ -675,113 +675,113 @@ msgstr "Traitement" msgid "Simple treatments" msgstr "Traitements simples" -#: models_finds.py:44 +#: models_finds.py:43 msgid "Code" msgstr "Code" -#: models_finds.py:45 +#: models_finds.py:44 msgid "Recommendation" msgstr "Recommandation" -#: models_finds.py:48 +#: models_finds.py:47 msgid "Parent material" msgstr "Matériau parent" -#: models_finds.py:52 models_finds.py:525 models_finds.py:602 +#: models_finds.py:51 models_finds.py:538 models_finds.py:615 msgid "Material types" msgstr "Types de matériau" -#: models_finds.py:60 +#: models_finds.py:59 msgid "Parent conservatory state" msgstr "État sanitaire - parent" -#: models_finds.py:64 +#: models_finds.py:63 msgid "Conservatory states" msgstr "États sanitaires" -#: models_finds.py:73 +#: models_finds.py:72 msgid "Preservation types" msgstr "Types de conservation" -#: models_finds.py:81 +#: models_finds.py:80 msgid "Integrity / interest type" msgstr "Type d'intégrité / intérêt" -#: models_finds.py:82 +#: models_finds.py:81 msgid "Integrity / interest types" msgstr "Types d'intégrité / intérêt" -#: models_finds.py:90 +#: models_finds.py:89 msgid "Remarkability type" msgstr "Type de remarquabilité" -#: models_finds.py:91 +#: models_finds.py:90 msgid "Remarkability types" msgstr "Types de remarquabilité" -#: models_finds.py:98 models_finds.py:598 models_treatments.py:40 +#: models_finds.py:97 models_finds.py:611 models_treatments.py:40 #: models_treatments.py:287 msgid "Order" msgstr "Ordre" -#: models_finds.py:100 +#: models_finds.py:99 msgid "Batch type" msgstr "Type de lot" -#: models_finds.py:101 +#: models_finds.py:100 msgid "Batch types" msgstr "Types de lot" -#: models_finds.py:109 +#: models_finds.py:108 msgid "Parent" msgstr "Parent" -#: models_finds.py:152 models_finds.py:595 models_treatments.py:124 +#: models_finds.py:151 models_finds.py:608 models_treatments.py:124 #: models_treatments.py:471 msgid "External ID" msgstr "ID externe" -#: models_finds.py:154 models_finds.py:597 +#: models_finds.py:153 models_finds.py:610 msgid "External ID is set automatically" msgstr "L'identifiant externe est configuré automatiquement" -#: models_finds.py:157 +#: models_finds.py:156 msgid "Special interest" msgstr "Intérêt spécifique" -#: models_finds.py:161 +#: models_finds.py:160 msgid "Context Record" msgstr "Unité d'Enregistrement" -#: models_finds.py:162 +#: models_finds.py:161 msgid "Discovery date" msgstr "Date de découverte" -#: models_finds.py:167 +#: models_finds.py:166 msgid "Material index" msgstr "Index matériel" -#: models_finds.py:183 +#: models_finds.py:182 msgid "Point (2D)" msgstr "Point (2D)" -#: models_finds.py:184 +#: models_finds.py:183 msgid "Point" msgstr "Point" -#: models_finds.py:185 +#: models_finds.py:184 msgid "Line" msgstr "Ligne" -#: models_finds.py:186 +#: models_finds.py:185 msgid "Polygon" msgstr "Polygon" -#: models_finds.py:189 models_finds.py:192 +#: models_finds.py:188 models_finds.py:191 msgid "Cached value - do not edit" msgstr "Valeur en cache - ne pas éditer" -#: models_finds.py:197 models_finds.py:593 +#: models_finds.py:197 models_finds.py:606 msgid "Base find" msgstr "Mobilier de base" @@ -809,149 +809,174 @@ msgstr "Peut modifier son propre Mobilier de base" msgid "Can delete own Base find" msgstr "Peut supprimer son propre Mobilier de base" -#: models_finds.py:430 +#: models_finds.py:443 msgid "g" msgstr "g" -#: models_finds.py:431 +#: models_finds.py:444 msgid "kg" msgstr "kg" -#: models_finds.py:433 +#: models_finds.py:446 msgid "Not checked" msgstr "Non vérifié" -#: models_finds.py:434 +#: models_finds.py:447 msgid "Checked but incorrect" msgstr "Vérifié mais incorrect" -#: models_finds.py:435 +#: models_finds.py:448 msgid "Checked and correct" msgstr "Vérifié et correct" -#: models_finds.py:506 +#: models_finds.py:519 msgid "Base find - Short ID" msgstr "Mobilier de base - ID court" -#: models_finds.py:507 +#: models_finds.py:520 msgid "Base find - Complete ID" msgstr "Mobilier de base - ID complet" -#: models_finds.py:509 +#: models_finds.py:522 msgid "Operation (code)" msgstr "Opération (code)" -#: models_finds.py:511 +#: models_finds.py:524 msgid "Town" msgstr "Ville" -#: models_finds.py:513 +#: models_finds.py:526 msgid "Operation (name)" msgstr "Opération (nom)" -#: models_finds.py:515 +#: models_finds.py:528 msgid "Parcel" msgstr "Parcelle" -#: models_finds.py:516 +#: models_finds.py:529 msgid "Batch" msgstr "Lot" -#: models_finds.py:517 +#: models_finds.py:530 msgid "Base find - Comment" msgstr "Mobilier de base - Commentaires" -#: models_finds.py:518 +#: models_finds.py:531 msgid "Base find - Description" msgstr "Mobilier de base - Description" -#: models_finds.py:519 +#: models_finds.py:532 msgid "Base find - Topographic localisation" msgstr "Mobilier de base - Localisation topographique" -#: models_finds.py:521 +#: models_finds.py:534 msgid "Base find - Special interest" msgstr "Mobilier de base - Intérêt spécifique" -#: models_finds.py:522 +#: models_finds.py:535 msgid "Base find - Discovery date" msgstr "Mobilier de base - Date de découverte" -#: models_finds.py:523 models_finds.py:626 models_treatments.py:131 +#: models_finds.py:536 models_finds.py:639 models_treatments.py:131 #: models_treatments.py:295 templates/ishtar/sheet_find.html:90 #: templates/ishtar/sheet_find.html:132 msgid "Container" msgstr "Contenant" -#: models_finds.py:524 +#: models_finds.py:537 msgid "Periods" msgstr "Périodes" -#: models_finds.py:609 +#: models_finds.py:622 msgid "Type of preservation to consider" msgstr "Mesures de conservation à envisager" -#: models_finds.py:613 +#: models_finds.py:626 msgid "Weight unit" msgstr "Unité de poids" -#: models_finds.py:619 templates/ishtar/sheet_find.html:78 +#: models_finds.py:632 templates/ishtar/sheet_find.html:78 msgid "Upstream treatment" msgstr "Traitement amont" -#: models_finds.py:622 templates/ishtar/sheet_find.html:120 +#: models_finds.py:635 templates/ishtar/sheet_find.html:120 msgid "Downstream treatment" msgstr "Traitement aval" -#: models_finds.py:660 +#: models_finds.py:674 msgid "Collection" msgstr "Collection" -#: models_finds.py:662 models_treatments.py:143 models_treatments.py:495 +#: models_finds.py:676 models_treatments.py:143 models_treatments.py:495 msgid "Cached name" msgstr "Nom en cache" -#: models_finds.py:671 +#: models_finds.py:685 msgid "Can view all Finds" msgstr "Peut voir tout le Mobilier" -#: models_finds.py:672 +#: models_finds.py:686 msgid "Can view own Find" msgstr "Peut voir son propre Mobilier" -#: models_finds.py:673 +#: models_finds.py:687 msgid "Can add own Find" msgstr "Peut ajouter son propre Mobilier" -#: models_finds.py:674 +#: models_finds.py:688 msgid "Can change own Find" msgstr "Peut modifier son propre Mobilier" -#: models_finds.py:675 +#: models_finds.py:689 msgid "Can delete own Find" msgstr "Peut supprimer son propre Mobilier" -#: models_finds.py:681 +#: models_finds.py:695 msgid "FIND" msgstr "MOBILIER" -#: models_finds.py:1069 +#: models_finds.py:1099 msgid "Find documentation" msgstr "Documentation de mobilier" -#: models_finds.py:1070 +#: models_finds.py:1100 msgid "Find documentations" msgstr "Documentations de mobilier" -#: models_finds.py:1083 +#: models_finds.py:1103 +#, fuzzy +msgid "Can view all Find sources" +msgstr "Peut voir tout le Mobilier" + +#: models_finds.py:1105 +#, fuzzy +msgid "Can view own Find source" +msgstr "Peut voir son propre Mobilier" + +#: models_finds.py:1107 +#, fuzzy +msgid "Can add own Find source" +msgstr "Peut ajouter son propre Mobilier" + +#: models_finds.py:1109 +#, fuzzy +msgid "Can change own Find source" +msgstr "Peut modifier son propre Mobilier" + +#: models_finds.py:1111 +#, fuzzy +msgid "Can delete own Find source" +msgstr "Peut supprimer son propre Mobilier" + +#: models_finds.py:1137 msgid "Person" msgstr "Individu" -#: models_finds.py:1089 +#: models_finds.py:1143 msgid "Property" msgstr "Propriété" -#: models_finds.py:1090 +#: models_finds.py:1144 msgid "Properties" msgstr "Propriétés" @@ -1092,41 +1117,121 @@ msgid "Can view all Treatment requests" msgstr "Peut voir toutes les Demandes de traitement" #: models_treatments.py:506 +#, fuzzy +msgid "Can add Treatment request" +msgstr "Peut ajouter sa propre Demande de traitement" + +#: models_treatments.py:508 +#, fuzzy +msgid "Can change Treatment request" +msgstr "Peut modifier sa propre Demande de traitement" + +#: models_treatments.py:510 +#, fuzzy +msgid "Can delete Treatment request" +msgstr "Peut supprimer sa propre Demande de traitement" + +#: models_treatments.py:512 msgid "Can view own Treatment request" msgstr "Peut voir sa propre Demande de traitement" -#: models_treatments.py:508 +#: models_treatments.py:514 msgid "Can add own Treatment request" msgstr "Peut ajouter sa propre Demande de traitement" -#: models_treatments.py:510 +#: models_treatments.py:516 msgid "Can change own Treatment request" msgstr "Peut modifier sa propre Demande de traitement" -#: models_treatments.py:512 +#: models_treatments.py:518 msgid "Can delete own Treatment request" msgstr "Peut supprimer sa propre Demande de traitement" -#: models_treatments.py:574 +#: models_treatments.py:580 msgid "Treatment documentation" msgstr "Documentation de traitement" -#: models_treatments.py:575 +#: models_treatments.py:581 msgid "Treament documentations" msgstr "Documentations de traitement" +#: models_treatments.py:584 +#, fuzzy +msgid "Can view all Treatment source" +msgstr "Peut voir tous les Traitements" + +#: models_treatments.py:586 +#, fuzzy +msgid "Can view own Treatment source" +msgstr "Peut voir son propre Traitement" + #: models_treatments.py:588 +#, fuzzy +msgid "Can add own Treatment source" +msgstr "Peut ajouter son propre Traitement" + +#: models_treatments.py:590 +#, fuzzy +msgid "Can change own Treatment source" +msgstr "Peut modifier son propre Traitement" + +#: models_treatments.py:592 +#, fuzzy +msgid "Can delete own Treatment source" +msgstr "Peut supprimer son propre Traitement" + +#: models_treatments.py:606 msgid "Treatment file" msgstr "Dossier de traitement" -#: models_treatments.py:592 +#: models_treatments.py:610 msgid "Treatment request documentation" msgstr "Documentation de demande de traitement" -#: models_treatments.py:593 +#: models_treatments.py:611 msgid "Treatment request documentations" msgstr "Documentations de demande de traitement" +#: models_treatments.py:614 +#, fuzzy +msgid "Can view all Treatment request source" +msgstr "Peut voir toutes les Demandes de traitement" + +#: models_treatments.py:616 +#, fuzzy +msgid "Can add Treatment request source" +msgstr "Documentation de demande de traitement" + +#: models_treatments.py:618 +#, fuzzy +msgid "Can change Treatment request source" +msgstr "Peut modifier sa propre Demande de traitement" + +#: models_treatments.py:620 +#, fuzzy +msgid "Can delete Treatment request source" +msgstr "Peut supprimer sa propre Demande de traitement" + +#: models_treatments.py:622 +#, fuzzy +msgid "Can view own Treatment request source" +msgstr "Peut voir sa propre Demande de traitement" + +#: models_treatments.py:624 +#, fuzzy +msgid "Can add own Treatment request source" +msgstr "Peut ajouter sa propre Demande de traitement" + +#: models_treatments.py:626 +#, fuzzy +msgid "Can change own Treatment request source" +msgstr "Peut modifier sa propre Demande de traitement" + +#: models_treatments.py:628 +#, fuzzy +msgid "Can delete own Treatment request source" +msgstr "Peut supprimer sa propre Demande de traitement" + #: views.py:138 msgid "New find" msgstr "Ajouter un mobilier" diff --git a/translations/fr/archaeological_operations.po b/translations/fr/archaeological_operations.po index af55782dc..67c09a4fb 100644 --- a/translations/fr/archaeological_operations.po +++ b/translations/fr/archaeological_operations.po @@ -9,23 +9,25 @@ # Étienne Loks , 2017. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2017-03-16 05:04-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:69 forms.py:371 forms.py:1013 forms.py:1035 forms.py:1039 -#: models.py:1247 templates/ishtar/sheet_operation.html:151 +#: forms.py:69 forms.py:371 forms.py:1047 forms.py:1069 forms.py:1073 +#: models.py:1252 templates/ishtar/sheet_operation.html:153 #: templates/ishtar/blocks/window_tables/parcels.html:10 msgid "Parcels" msgstr "Parcelles" -#: forms.py:72 forms.py:205 forms.py:989 models.py:1233 +#: forms.py:72 forms.py:205 forms.py:1023 models.py:1238 #: templates/ishtar/blocks/window_tables/parcels.html:7 #: templates/ishtar/dashboards/dashboard_operation.html:432 #: templates/ishtar/dashboards/dashboard_operation.html:446 @@ -34,22 +36,22 @@ msgstr "Parcelles" msgid "Town" msgstr "Commune" -#: forms.py:74 forms.py:455 forms.py:756 forms.py:1259 models.py:272 -#: models.py:1039 models.py:1231 +#: forms.py:74 forms.py:481 forms.py:783 forms.py:1293 models.py:276 +#: models.py:1044 models.py:1236 #: templates/ishtar/blocks/window_tables/parcels.html:8 msgid "Year" msgstr "Année" -#: forms.py:77 models.py:1234 +#: forms.py:77 models.py:1239 #: templates/ishtar/blocks/window_tables/parcels.html:9 msgid "Section" msgstr "Section" -#: forms.py:80 models.py:1236 +#: forms.py:80 models.py:1241 msgid "Parcel number" msgstr "Numéro de parcelle" -#: forms.py:82 models.py:1238 models.py:1255 models.py:1304 +#: forms.py:82 models.py:1243 models.py:1260 models.py:1309 msgid "Public domain" msgstr "Domaine public" @@ -85,45 +87,49 @@ msgstr "Il y a des parcelles identiques." msgid "Relation type" msgstr "Type de relation" -#: forms.py:383 ishtar_menu.py:30 models.py:368 models.py:849 models.py:884 -#: models.py:917 models.py:1021 models.py:1230 wizards.py:344 wizards.py:355 +#: forms.py:383 ishtar_menu.py:30 models.py:372 models.py:847 models.py:882 +#: models.py:922 models.py:1026 models.py:1235 wizards.py:353 wizards.py:364 #: templates/ishtar/sheet_operation.html:4 msgid "Operation" msgstr "Opération" -#: forms.py:403 +#: forms.py:406 msgid ":" msgstr ": " -#: forms.py:411 forms.py:607 forms.py:1224 +#: forms.py:414 forms.py:633 forms.py:1258 msgid "You should select an operation." msgstr "Vous devez sélectionner une opération." -#: forms.py:415 +#: forms.py:418 msgid "You should select a relation type." msgstr "Vous devez sélectionner un type de relation." -#: forms.py:445 +#: forms.py:421 +msgid "An operation cannot be related to herself." +msgstr "" + +#: forms.py:451 msgid "Current relations" msgstr "Relations actuelles" -#: forms.py:447 +#: forms.py:453 msgid "Deleted relations" msgstr "Relations supprimées" -#: forms.py:451 templates/ishtar/sheet_operation.html:85 +#: forms.py:477 templates/ishtar/sheet_operation.html:86 msgid "Relations" msgstr "Relations" -#: forms.py:456 forms.py:1230 models.py:273 +#: forms.py:482 forms.py:1264 models.py:277 msgid "Numeric reference" msgstr "Identifiant numérique" -#: forms.py:462 forms.py:1270 +#: forms.py:488 forms.py:1304 msgid "Parcel (section/number/public domain)" msgstr "Parcelle (section/numéro/domaine public)" -#: forms.py:465 forms.py:1273 models.py:850 +#: forms.py:491 forms.py:1307 models.py:848 #: templates/ishtar/dashboards/dashboard_operation.html:390 #: templates/ishtar/dashboards/dashboard_operation.html:411 #: templates/ishtar/dashboards/dashboard_operation.html:643 @@ -132,253 +138,257 @@ msgstr "Parcelle (section/numéro/domaine public)" msgid "Department" msgstr "Département" -#: forms.py:466 forms.py:1101 models.py:86 +#: forms.py:492 forms.py:1135 models.py:86 #: templates/ishtar/sheet_operation.html:22 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:8 msgid "Name" msgstr "Nom" -#: forms.py:468 forms.py:752 models.py:334 +#: forms.py:494 forms.py:779 models.py:338 msgid "Address / Locality" msgstr "Adresse / Lieu-dit" -#: forms.py:470 forms.py:674 forms.py:754 forms.py:1236 models.py:280 +#: forms.py:496 forms.py:700 forms.py:781 forms.py:1270 models.py:284 msgid "Operation type" msgstr "Type d'opération" -#: forms.py:472 +#: forms.py:498 msgid "Is open?" msgstr "Est ouvert ?" -#: forms.py:480 forms.py:786 models.py:269 +#: forms.py:506 forms.py:813 models.py:269 msgid "In charge" msgstr "Responsable du suivi scientifique" -#: forms.py:487 models.py:1015 +#: forms.py:513 models.py:1020 msgid "Scientist in charge" msgstr "Responsable scientifique" -#: forms.py:489 forms.py:676 forms.py:776 models.py:267 +#: forms.py:515 forms.py:702 forms.py:803 models.py:267 msgid "Operator" msgstr "Opérateur" -#: forms.py:498 forms.py:1106 models.py:90 models.py:282 +#: forms.py:524 forms.py:1140 models.py:90 models.py:286 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:10 msgid "Remains" msgstr "Vestiges" -#: forms.py:499 forms.py:1084 forms.py:1103 models.py:88 models.py:288 +#: forms.py:525 forms.py:1118 forms.py:1137 models.py:88 models.py:292 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:9 msgid "Periods" msgstr "Périodes" -#: forms.py:500 +#: forms.py:526 msgid "Started before" msgstr "Commencé avant" -#: forms.py:502 +#: forms.py:528 msgid "Started after" msgstr "Commencé après" -#: forms.py:504 +#: forms.py:530 msgid "Ended before" msgstr "Terminé avant" -#: forms.py:506 +#: forms.py:532 msgid "Ended after" msgstr "Terminé après" -#: forms.py:509 +#: forms.py:535 msgid "Search within relations" msgstr "Rechercher parmi les relations" -#: forms.py:511 forms.py:841 +#: forms.py:537 forms.py:867 msgid "Comment" msgstr "Commentaire" -#: forms.py:512 +#: forms.py:538 msgid "Abstract (full text search)" msgstr "Résumé (recherche texte intégral)" -#: forms.py:514 forms.py:844 models.py:337 +#: forms.py:540 forms.py:870 models.py:341 msgid "Comment about scientific documentation" msgstr "Commentaire concernant la documentation scientifique" -#: forms.py:515 forms.py:846 models.py:349 +#: forms.py:541 forms.py:872 models.py:353 msgid "Record quality" msgstr "Qualité d'enregistrement" -#: forms.py:516 forms.py:811 models.py:300 +#: forms.py:542 forms.py:837 models.py:304 msgid "Report processing" msgstr "Traitement du rapport" -#: forms.py:518 forms.py:849 models.py:344 +#: forms.py:544 forms.py:875 models.py:348 msgid "Virtual operation" msgstr "Opération virtuelle" -#: forms.py:520 forms.py:1146 forms.py:1150 models.py:94 +#: forms.py:546 forms.py:1180 forms.py:1184 models.py:94 msgid "Archaeological site" msgstr "Entité archéologique" -#: forms.py:526 forms.py:1277 +#: forms.py:552 forms.py:1311 msgid "Created by" msgstr "Créé par" -#: forms.py:532 forms.py:1283 +#: forms.py:558 forms.py:1317 msgid "Modified by" msgstr "Modifié par" -#: forms.py:539 +#: forms.py:565 msgid "Documentation deadline before" msgstr "Date limite de rendu de la documentation avant" -#: forms.py:541 +#: forms.py:567 msgid "Documentation deadline after" msgstr "Date limite de rendu de la documentation après" -#: forms.py:543 forms.py:834 models.py:356 +#: forms.py:569 forms.py:860 models.py:360 msgid "Documentation received" msgstr "Documentation reçue" -#: forms.py:545 +#: forms.py:571 msgid "Finds deadline before" msgstr "Date limite de rendu du mobilier avant" -#: forms.py:547 +#: forms.py:573 msgid "Finds deadline after" msgstr "Date limite de rendu du mobilier après" -#: forms.py:549 forms.py:839 models.py:360 +#: forms.py:575 forms.py:865 models.py:364 msgid "Finds received" msgstr "Mobilier reçu" -#: forms.py:594 forms.py:1222 views.py:168 +#: forms.py:620 forms.py:1256 views.py:168 msgid "Operation search" msgstr "Rechercher une opération" -#: forms.py:638 +#: forms.py:664 msgid "Associated file" msgstr "Dossier associé" -#: forms.py:642 forms.py:937 models.py:516 models.py:916 models.py:1026 +#: forms.py:668 forms.py:971 models.py:520 models.py:921 models.py:1031 #: wizards.py:80 msgid "Archaeological file" msgstr "Dossier archéologique" -#: forms.py:649 forms.py:651 models.py:351 +#: forms.py:675 forms.py:677 models.py:355 msgid "Abstract" msgstr "Résumé" -#: forms.py:654 +#: forms.py:680 msgid "months" msgstr "mois" -#: forms.py:654 +#: forms.py:680 msgid "years" msgstr "années" -#: forms.py:656 models.py:253 +#: forms.py:682 models.py:253 msgid "Creation date" msgstr "Date de création" -#: forms.py:657 +#: forms.py:683 msgid "Start of field work" msgstr "Début du travail de terrain" -#: forms.py:659 +#: forms.py:685 msgid "All" msgstr "Tout" -#: forms.py:660 +#: forms.py:686 msgid "Preventive" msgstr "Préventif" -#: forms.py:661 +#: forms.py:687 msgid "Research" msgstr "Programmé" -#: forms.py:665 +#: forms.py:691 msgid "Slicing" msgstr "Découpage" -#: forms.py:668 +#: forms.py:694 msgid "Department detail" msgstr "Détail par département" -#: forms.py:670 +#: forms.py:696 msgid "Date get from" msgstr "Date obtenue depuis" -#: forms.py:672 +#: forms.py:698 msgid "Preventive/Research" msgstr "Préventif/Programmé" -#: forms.py:678 +#: forms.py:704 msgid "Date after" msgstr "Date après" -#: forms.py:680 +#: forms.py:706 msgid "Date before" msgstr "Date avant" -#: forms.py:682 +#: forms.py:708 msgid "With reports" msgstr "Avec un rapport" -#: forms.py:683 +#: forms.py:709 msgid "With finds" msgstr "Avec du mobilier" -#: forms.py:735 forms.py:1331 templates/ishtar/sheet_administrativeact.html:20 +#: forms.py:761 forms.py:1365 templates/ishtar/sheet_administrativeact.html:20 #: templates/ishtar/sheet_operation.html:26 msgid "General" msgstr "Général" -#: forms.py:750 models.py:333 +#: forms.py:777 models.py:337 msgid "Generic name" msgstr "Nom générique" -#: forms.py:761 models.py:302 +#: forms.py:788 models.py:306 msgid "Old code" msgstr "Ancien code" -#: forms.py:764 +#: forms.py:791 msgid "Head scientist" msgstr "Responsable scientifique" -#: forms.py:783 models.py:332 +#: forms.py:810 models.py:336 msgid "Operator reference" msgstr "Référence de l'opérateur" -#: forms.py:797 +#: forms.py:823 models.py:273 +msgid "Collaborators" +msgstr "" + +#: forms.py:826 msgid "Total surface (m2)" msgstr "Surface totale (m2)" -#: forms.py:804 models.py:54 models.py:256 models.py:1443 +#: forms.py:830 models.py:54 models.py:256 models.py:1448 msgid "Start date" msgstr "Date de début" -#: forms.py:806 models.py:258 +#: forms.py:832 models.py:258 msgid "Excavation end date" msgstr "Date de fin de chantier" -#: forms.py:809 models.py:259 +#: forms.py:835 models.py:259 msgid "Report delivery date" msgstr "Date de livraison du rapport" -#: forms.py:831 models.py:353 +#: forms.py:857 models.py:357 msgid "Deadline for submission of the documentation" msgstr "Date limite de rendu de la documentation" -#: forms.py:836 models.py:358 +#: forms.py:862 models.py:362 msgid "Deadline for submission of the finds" msgstr "Date limite de rendu du mobilier" -#: forms.py:851 +#: forms.py:877 msgid "Image" msgstr "Image" -#: forms.py:852 +#: forms.py:878 #, python-format msgid "" "

      Heavy images are resized to: %(width)dx%(height)d (ratio is preserved).Les images trop grandes sont retaillées en : %(width)dx%(height)d (le " "ratio est conservé).

      " -#: forms.py:890 +#: forms.py:924 msgid "" "If you want to set an excavation end date you have to provide a start date." msgstr "" "Avant de renseigner la date de fin de chantier, il est nécessaire de " "renseigner une date de début." -#: forms.py:895 +#: forms.py:929 msgid "The excavation end date cannot be before the start date." -msgstr "" -"La date de fin de chantier ne peut être antérieure à la date de début." +msgstr "La date de fin de chantier ne peut être antérieure à la date de début." -#: forms.py:923 +#: forms.py:957 #, python-format msgid "" "Operation code already exists for year: %(year)d - use a value bigger than " @@ -408,106 +417,106 @@ msgstr "" "Ce code d'opération existe déjà pour l'année %(year)d - utilisez une valeur " "plus grande que %(last_val)d" -#: forms.py:927 +#: forms.py:961 msgid "Bad operation code" msgstr "Mauvais code d'opération" -#: forms.py:933 models.py:531 models.py:879 +#: forms.py:967 models.py:535 models.py:877 msgid "Operation code" msgstr "Code de l'opération" -#: forms.py:959 +#: forms.py:993 msgid "Preventive informations - excavation" msgstr "Information archéologie préventive - fouille" -#: forms.py:960 models.py:286 +#: forms.py:994 models.py:290 #: templates/ishtar/dashboards/dashboard_operation.html:701 msgid "Cost (euros)" msgstr "Coût (euros)" -#: forms.py:961 models.py:291 +#: forms.py:995 models.py:295 msgid "Scheduled man-days" msgstr "Jours-hommes prévus" -#: forms.py:963 models.py:294 +#: forms.py:997 models.py:298 msgid "Optional man-days" msgstr "Jours-hommes optionnels" -#: forms.py:965 models.py:297 +#: forms.py:999 models.py:301 msgid "Effective man-days" msgstr "Jours-hommes effectifs" -#: forms.py:975 +#: forms.py:1009 msgid "Preventive informations - diagnostic" msgstr "Information archéologie préventive - diagnostic" -#: forms.py:978 models.py:316 +#: forms.py:1012 models.py:320 msgid "Prescription on zoning" msgstr "Prescription sur zonage" -#: forms.py:980 models.py:319 +#: forms.py:1014 models.py:323 msgid "Prescription on large area" msgstr "Prescription sur une vaste surface" -#: forms.py:983 models.py:321 +#: forms.py:1017 models.py:325 msgid "Prescription on geoarchaeological context" msgstr "Prescription sur un contexte géoarchéologique" -#: forms.py:987 forms.py:1009 models.py:284 models.py:1049 +#: forms.py:1021 forms.py:1043 models.py:288 models.py:1054 msgid "Towns" msgstr "Communes" -#: forms.py:1016 models.py:1246 models.py:1441 +#: forms.py:1050 models.py:1251 models.py:1446 msgid "Parcel" msgstr "Parcelle" -#: forms.py:1068 models.py:46 +#: forms.py:1102 models.py:46 msgid "Remain types" msgstr "Types de vestige" -#: forms.py:1072 models.py:45 +#: forms.py:1106 models.py:45 msgid "Remain type" msgstr "Type de vestige" -#: forms.py:1088 templates/ishtar/sheet_operation.html:171 -#: templates/ishtar/sheet_operation.html:202 +#: forms.py:1122 templates/ishtar/sheet_operation.html:173 +#: templates/ishtar/sheet_operation.html:204 msgid "Period" msgstr "Période" -#: forms.py:1100 models.py:85 +#: forms.py:1134 models.py:85 msgid "Reference" msgstr "Référence" -#: forms.py:1129 +#: forms.py:1163 msgid "This reference already exists." msgstr "Cette référence existe déjà." -#: forms.py:1161 models.py:95 models.py:341 -#: templates/ishtar/sheet_operation.html:96 +#: forms.py:1195 models.py:95 models.py:345 +#: templates/ishtar/sheet_operation.html:97 msgid "Archaeological sites" msgstr "Entités archéologiques" -#: forms.py:1165 +#: forms.py:1199 msgid "Associated archaeological sites" msgstr "Entités archéologiques associées" -#: forms.py:1171 ishtar_menu.py:34 ishtar_menu.py:64 ishtar_menu.py:93 +#: forms.py:1205 ishtar_menu.py:34 ishtar_menu.py:64 ishtar_menu.py:93 msgid "Search" msgstr "Recherche" -#: forms.py:1176 +#: forms.py:1210 msgid "Would you like to close this operation?" msgstr "Voulez-vous clore cette opération ?" -#: forms.py:1181 +#: forms.py:1215 msgid "Would you like to delete this operation?" msgstr "Voulez-vous supprimer cette opération ?" -#: forms.py:1190 forms.py:1260 forms.py:1396 models.py:886 models.py:1006 +#: forms.py:1224 forms.py:1294 forms.py:1430 models.py:884 models.py:1011 msgid "Index" msgstr "Index" -#: forms.py:1216 +#: forms.py:1250 #, python-format msgid "" "Index already exists for operation: %(operation)s - use a value bigger than " @@ -516,48 +525,48 @@ msgstr "" "Cet index existe déjà pour l'opération : %(operation)s, utilisez une valeur " "plus grande que %(last_val)d" -#: forms.py:1228 +#: forms.py:1262 msgid "Operation's year" msgstr "Année de l'opération" -#: forms.py:1235 +#: forms.py:1269 msgid "Operation's town" msgstr "Commune de l'opération" -#: forms.py:1248 +#: forms.py:1282 msgid "Documentation search" msgstr "Rechercher une documentation" -#: forms.py:1250 +#: forms.py:1284 msgid "You should select a document." msgstr "Vous devez sélectionner un document." -#: forms.py:1267 forms.py:1334 models.py:930 models.py:1000 +#: forms.py:1301 forms.py:1368 models.py:935 models.py:1005 msgid "Act type" msgstr "Type d'acte" -#: forms.py:1268 forms.py:1466 +#: forms.py:1302 forms.py:1500 msgid "Indexed?" msgstr "Indexé ?" -#: forms.py:1274 forms.py:1339 models.py:1040 +#: forms.py:1308 forms.py:1373 models.py:1045 #: templates/ishtar/blocks/window_tables/administrativacts.html:10 msgid "Object" msgstr "Objet" -#: forms.py:1311 views.py:333 +#: forms.py:1345 views.py:348 msgid "Administrative act search" msgstr "Rechercher un acte administratif" -#: forms.py:1326 forms.py:1424 forms.py:1491 +#: forms.py:1360 forms.py:1458 forms.py:1525 msgid "You should select an administrative act." msgstr "Vous devez sélectionner un acte administratif." -#: forms.py:1342 models.py:1037 +#: forms.py:1376 models.py:1042 msgid "Signature date" msgstr "Date de signature" -#: forms.py:1384 +#: forms.py:1418 #, python-format msgid "" "This index already exists for year: %(year)d - use a value bigger than " @@ -566,31 +575,31 @@ msgstr "" "Cet index existe déjà pour l'année : %(year)d, utilisez une valeur plus " "grande que %(last_val)d" -#: forms.py:1388 +#: forms.py:1422 msgid "Bad index" msgstr "Mauvais index" -#: forms.py:1401 +#: forms.py:1435 msgid "Would you like to delete this administrative act?" msgstr "Voulez-vous supprimer cet acte administratif ?" -#: forms.py:1406 +#: forms.py:1440 msgid "Template" msgstr "Patron" -#: forms.py:1430 forms.py:1434 +#: forms.py:1464 forms.py:1468 msgid "This document is not intended for this type of act." msgstr "Ce document n'est pas destiné à ce type d'acte." -#: forms.py:1452 +#: forms.py:1486 msgid "Doc generation" msgstr "Génération de document" -#: forms.py:1454 +#: forms.py:1488 msgid "Generate the associated doc?" msgstr "Générer le document associé ?" -#: forms.py:1475 ishtar_menu.py:123 views.py:386 +#: forms.py:1509 ishtar_menu.py:123 views.py:401 msgctxt "admin act register" msgid "Register" msgstr "Registre" @@ -611,7 +620,7 @@ msgstr "Clôture" msgid "Deletion" msgstr "Suppression" -#: ishtar_menu.py:59 models.py:1056 +#: ishtar_menu.py:59 models.py:1061 #: templates/ishtar/sheet_administrativeact.html:4 msgid "Administrative act" msgstr "Acte administratif" @@ -636,16 +645,16 @@ msgstr "Tableau de bord" msgid "General informations" msgstr "Informations générales" -#: ishtar_menu.py:139 models.py:369 +#: ishtar_menu.py:139 models.py:373 #: templates/ishtar/dashboards/dashboard_operation.html:8 msgid "Operations" msgstr "Opérations" -#: models.py:53 models.py:71 models.py:1913 +#: models.py:53 models.py:71 models.py:1918 msgid "Order" msgstr "Ordre" -#: models.py:55 models.py:1444 +#: models.py:55 models.py:1449 msgid "End date" msgstr "Date de fin" @@ -761,359 +770,359 @@ msgstr "Date de clôture" msgid "In charge scientist" msgstr "Responsable du suivi scientifique" -#: models.py:277 models.py:1226 +#: models.py:281 models.py:1231 msgid "File" msgstr "Dossier" -#: models.py:281 +#: models.py:285 msgid "Surface (m2)" msgstr "Surface (m2)" -#: models.py:335 +#: models.py:339 msgid "General comment" msgstr "Commentaire général" -#: models.py:338 +#: models.py:342 msgid "Cached name" msgstr "Nom en cache" -#: models.py:346 +#: models.py:350 msgid "" "If checked, it means that this operation have not been officialy registered." msgstr "" "Si coché, cela signifie que cette opération n'a pas été officiellement " "enregistrée." -#: models.py:362 +#: models.py:366 msgid "Point" msgstr "Point" -#: models.py:363 +#: models.py:367 msgid "Multi polygon" msgstr "Polygones multi-parties" -#: models.py:371 +#: models.py:375 msgid "Can view all Operations" msgstr "Peut voir toutes les Opérations" -#: models.py:372 +#: models.py:376 msgid "Can view own Operation" msgstr "Peut voir sa propre Opération" -#: models.py:373 +#: models.py:377 msgid "Can add own Operation" msgstr "Peut ajouter sa propre Opération" -#: models.py:374 +#: models.py:378 msgid "Can change own Operation" msgstr "Peut modifier sa propre Opération" -#: models.py:375 +#: models.py:379 msgid "Can delete own Operation" msgstr "Peut supprimer sa propre Opération" -#: models.py:376 +#: models.py:380 msgid "Can close Operation" msgstr "Peut clore une Opération" -#: models.py:405 +#: models.py:409 msgid "OPE" msgstr "OPE" -#: models.py:479 +#: models.py:483 msgid "Intercommunal" msgstr "Intercommunal" -#: models.py:517 +#: models.py:521 msgid "Code patriarche" msgstr "Code patriarche" -#: models.py:557 +#: models.py:561 msgid "This operation code already exists for this year" msgstr "Ce code d'opération existe déjà pour cette année." -#: models.py:582 +#: models.py:588 msgid "Number of parcels" msgstr "Nombre de parcelles" -#: models.py:600 +#: models.py:598 msgid "Number of administrative acts" msgstr "Nombre d'actes administratifs" -#: models.py:608 +#: models.py:606 msgid "Number of indexed administrative acts" msgstr "Nombre d'actes administratifs indexés" -#: models.py:616 +#: models.py:614 msgid "Number of context records" msgstr "Nombre d'Unités d'Enregistrement" -#: models.py:652 +#: models.py:650 msgid "Number of finds" msgstr "Nombre d'éléments de mobilier" -#: models.py:697 +#: models.py:695 msgid "No type" msgstr "Pas de type" -#: models.py:728 +#: models.py:726 msgid "Number of sources" msgstr "Nombre de documents" -#: models.py:770 templates/ishtar/dashboards/dashboard_operation.html:309 +#: models.py:768 templates/ishtar/dashboards/dashboard_operation.html:309 #: templates/ishtar/dashboards/dashboard_operation.html:575 #: templates/ishtar/dashboards/dashboard_operation.html:611 msgid "Mean" msgstr "Moyenne" -#: models.py:820 +#: models.py:818 msgid "Inverse relation" msgstr "Relation inverse" -#: models.py:824 +#: models.py:822 msgid "Operation relation type" msgstr "Type de relation entre opérations" -#: models.py:825 +#: models.py:823 msgid "Operation relation types" msgstr "Types de relation entre opérations" -#: models.py:838 +#: models.py:836 msgid "Operation record relation" msgstr "Relation entre opérations" -#: models.py:839 +#: models.py:837 msgid "Operation record relations" msgstr "Relations entre opérations" -#: models.py:878 +#: models.py:876 msgid "Operation year" msgstr "Année de l'opération" -#: models.py:880 +#: models.py:878 msgid "Document code" msgstr "Code du document" -#: models.py:890 +#: models.py:888 msgid "Operation documentation" msgstr "Documentation d'une opération" -#: models.py:891 +#: models.py:889 msgid "Operation documentations" msgstr "Documentations des opérations" -#: models.py:894 +#: models.py:892 msgid "Can view all Operation sources" msgstr "Peut voir toutes les Documentations d'opération" -#: models.py:896 +#: models.py:894 msgid "Can view own Operation source" msgstr "Peut voir sa propre Documentation d'opération" -#: models.py:898 +#: models.py:896 msgid "Can add own Operation source" msgstr "Peut ajouter sa propre Documentation d'opération" -#: models.py:900 +#: models.py:898 msgid "Can change own Operation source" msgstr "Peut modifier sa propre Documentation d'opération" -#: models.py:902 +#: models.py:900 msgid "Can delete own Operation source" msgstr "Peut supprimer sa propre Documentation d'opération" -#: models.py:918 models.py:1031 +#: models.py:923 models.py:1036 msgid "Treatment request" msgstr "Demande de traitement" -#: models.py:919 models.py:1036 +#: models.py:924 models.py:1041 msgid "Treatment" msgstr "Traitement" -#: models.py:921 +#: models.py:926 msgid "Intended to" msgstr "Destiné à" -#: models.py:923 +#: models.py:928 msgid "Code" msgstr "Code" -#: models.py:926 +#: models.py:931 msgid "Associated template" msgstr "Patron associé" -#: models.py:927 +#: models.py:932 msgid "Indexed" msgstr "Indexé" -#: models.py:931 +#: models.py:936 msgid "Act types" msgstr "Types d'acte" -#: models.py:997 models.py:1077 +#: models.py:1002 models.py:1082 #: templates/ishtar/blocks/window_tables/administrativacts.html:7 #: templates/ishtar/blocks/window_tables/archaeologicalsites.html:7 msgid "Ref." msgstr "Réf." -#: models.py:1004 +#: models.py:1009 msgid "Person in charge of the operation" msgstr "Responsable d'opération" -#: models.py:1010 +#: models.py:1015 msgid "Archaeological preventive operator" msgstr "Opérateur d'archéologie préventive" -#: models.py:1018 +#: models.py:1023 msgid "Signatory" msgstr "Signataire" -#: models.py:1046 +#: models.py:1051 msgid "Departments" msgstr "Départements" -#: models.py:1047 +#: models.py:1052 msgid "Cached values get from associated departments" msgstr "Valeur en cache des départements associés" -#: models.py:1050 +#: models.py:1055 msgid "Cached values get from associated towns" msgstr "Valeur en cache des communes associées" -#: models.py:1057 templates/ishtar/sheet_operation.html:104 -#: templates/ishtar/sheet_operation.html:145 +#: models.py:1062 templates/ishtar/sheet_operation.html:105 +#: templates/ishtar/sheet_operation.html:147 msgid "Administrative acts" msgstr "Actes administratifs" -#: models.py:1060 +#: models.py:1065 msgid "Can view all Administrative acts" msgstr "Peut voir tous les Actes administratifs" -#: models.py:1062 +#: models.py:1067 msgid "Can view own Administrative act" msgstr "Peut voir son propre Acte administratif" -#: models.py:1064 +#: models.py:1069 msgid "Can add own Administrative act" msgstr "Peut ajouter son propre Acte administratif" -#: models.py:1066 +#: models.py:1071 msgid "Can change own Administrative act" msgstr "Peut modifier son propre Acte administratif" -#: models.py:1068 +#: models.py:1073 msgid "Can delete own Administrative act" msgstr "Peut supprimer son propre Acte administratif" -#: models.py:1171 +#: models.py:1176 msgid "This index already exists for this year" msgstr "Cet index existe déjà pour cette année." -#: models.py:1239 +#: models.py:1244 msgid "External ID" msgstr "ID externe" -#: models.py:1242 +#: models.py:1247 msgid "External ID is set automatically" msgstr "L'identifiant externe est configuré automatiquement" -#: models.py:1243 +#: models.py:1248 msgid "Address - Locality" msgstr "Adresse - Lieu-dit" -#: models.py:1439 +#: models.py:1444 msgid "Owner" msgstr "Propriétaire" -#: models.py:1447 +#: models.py:1452 msgid "Parcel owner" msgstr "Propriétaire de parcelle" -#: models.py:1448 +#: models.py:1453 msgid "Parcel owners" msgstr "Propriétaires de parcelle" -#: models.py:1474 +#: models.py:1479 msgid "Recorded" msgstr "Enregistré" -#: models.py:1475 +#: models.py:1480 msgid "Effective" msgstr "Effectif" -#: models.py:1476 +#: models.py:1481 msgid "Active" msgstr "Actif" -#: models.py:1477 +#: models.py:1482 msgid "Field completed" msgstr "Terrain achevé" -#: models.py:1478 +#: models.py:1483 msgid "Associated report" msgstr "Rapport associé" -#: models.py:1479 +#: models.py:1484 msgid "Closed" msgstr "Clos" -#: models.py:1480 +#: models.py:1485 msgid "Documented and closed" msgstr "Documenté et clos" -#: models.py:1914 +#: models.py:1919 msgid "Is preventive" msgstr "Préventif" -#: models.py:1917 +#: models.py:1922 msgid "Operation type old" msgstr "Type d'opération - ancien" -#: models.py:1918 +#: models.py:1923 msgid "Operation types old" msgstr "Types d'opération - ancien" -#: views.py:214 +#: views.py:223 msgid "New operation" msgstr "Ajouter une opération" -#: views.py:237 +#: views.py:267 msgid "Operation modification" msgstr "Modifier une opération" -#: views.py:280 +#: views.py:295 msgid "Operation closing" msgstr "Clôturer une opération" -#: views.py:291 +#: views.py:306 msgid "Operation deletion" msgstr "Supprimer une opération" -#: views.py:296 +#: views.py:311 msgid "Operation: source search" msgstr "Opération : rechercher une documentation associée" -#: views.py:304 +#: views.py:319 msgid "Operation: source creation" msgstr "Opération : ajouter une documentation associée" -#: views.py:312 +#: views.py:327 msgid "Operation: source modification" msgstr "Opération : modifier une documentation associée" -#: views.py:327 +#: views.py:342 msgid "Operation: source deletion" msgstr "Opération : supprimer une documentation associée" -#: views.py:346 +#: views.py:361 msgid "Operation: new administrative act" msgstr "Opération : ajouter un acte administratif" -#: views.py:356 +#: views.py:371 msgid "Operation: administrative act modification" msgstr "Opération : modification d'un acte administratif" -#: views.py:380 +#: views.py:395 msgid "Operation: administrative act deletion" msgstr "Opération : supprimer un acte administratif" @@ -1130,7 +1139,7 @@ msgstr "" "oubli, définissez-le à la première étape." #: templates/ishtar/sheet_administrativeact.html:36 -#: templates/ishtar/sheet_operation.html:40 +#: templates/ishtar/sheet_operation.html:41 msgid "Surface:" msgstr "Surface :" @@ -1150,92 +1159,96 @@ msgstr "Adresse" msgid "Begining date" msgstr "Date de début" -#: templates/ishtar/sheet_operation.html:36 +#: templates/ishtar/sheet_operation.html:37 msgid "State:" msgstr "État :" -#: templates/ishtar/sheet_operation.html:36 +#: templates/ishtar/sheet_operation.html:37 msgid "Active file" msgstr "Dossier actif" -#: templates/ishtar/sheet_operation.html:37 +#: templates/ishtar/sheet_operation.html:38 msgid "Closed operation" msgstr "Opération close" -#: templates/ishtar/sheet_operation.html:38 +#: templates/ishtar/sheet_operation.html:39 msgid "Closing date:" msgstr "Date de clôture :" -#: templates/ishtar/sheet_operation.html:38 +#: templates/ishtar/sheet_operation.html:39 msgid "by" msgstr "par" -#: templates/ishtar/sheet_operation.html:41 +#: templates/ishtar/sheet_operation.html:42 msgid "Cost:" msgstr "Coût :" -#: templates/ishtar/sheet_operation.html:42 +#: templates/ishtar/sheet_operation.html:43 msgid "Duration:" msgstr "Durée :" -#: templates/ishtar/sheet_operation.html:42 +#: templates/ishtar/sheet_operation.html:43 msgid "Day" msgstr "Jour" -#: templates/ishtar/sheet_operation.html:75 +#: templates/ishtar/sheet_operation.html:76 msgid "Localisation" msgstr "Localisation" -#: templates/ishtar/sheet_operation.html:100 +#: templates/ishtar/sheet_operation.html:101 msgid "Associated parcels" msgstr "Parcelles associées" -#: templates/ishtar/sheet_operation.html:108 +#: templates/ishtar/sheet_operation.html:109 msgid "Document from this operation" msgstr "Documents de cette opération" -#: templates/ishtar/sheet_operation.html:114 -#: templates/ishtar/sheet_operation.html:156 +#: templates/ishtar/sheet_operation.html:115 +#: templates/ishtar/sheet_operation.html:158 msgid "Context records" msgstr "Unités d'Enregistrement" -#: templates/ishtar/sheet_operation.html:119 +#: templates/ishtar/sheet_operation.html:120 msgid "Context record relations" msgstr "Relations entre Unités d'Enregistrement" -#: templates/ishtar/sheet_operation.html:124 +#: templates/ishtar/sheet_operation.html:125 msgid "Documents from associated context records" msgstr "Documents des Unités d'Enregistrement associées" -#: templates/ishtar/sheet_operation.html:129 -#: templates/ishtar/sheet_operation.html:179 +#: templates/ishtar/sheet_operation.html:130 +#: templates/ishtar/sheet_operation.html:181 msgid "Finds" msgstr "Mobilier" -#: templates/ishtar/sheet_operation.html:134 +#: templates/ishtar/sheet_operation.html:135 msgid "Documents from associated finds" msgstr "Documents du mobilier associé" -#: templates/ishtar/sheet_operation.html:139 +#: templates/ishtar/sheet_operation.html:140 msgid "Associated containers" msgstr "Contenants associés" -#: templates/ishtar/sheet_operation.html:143 +#: templates/ishtar/sheet_operation.html:144 msgid "Statistics" msgstr "Statistiques" -#: templates/ishtar/sheet_operation.html:163 -#: templates/ishtar/sheet_operation.html:217 +#: templates/ishtar/sheet_operation.html:145 +msgid "Theses number are updated hourly" +msgstr "" + +#: templates/ishtar/sheet_operation.html:165 +#: templates/ishtar/sheet_operation.html:219 #: templates/ishtar/blocks/window_tables/administrativacts.html:8 msgid "Type" msgstr "Type" -#: templates/ishtar/sheet_operation.html:163 -#: templates/ishtar/sheet_operation.html:171 -#: templates/ishtar/sheet_operation.html:186 -#: templates/ishtar/sheet_operation.html:194 -#: templates/ishtar/sheet_operation.html:202 -#: templates/ishtar/sheet_operation.html:217 +#: templates/ishtar/sheet_operation.html:165 +#: templates/ishtar/sheet_operation.html:173 +#: templates/ishtar/sheet_operation.html:188 +#: templates/ishtar/sheet_operation.html:196 +#: templates/ishtar/sheet_operation.html:204 +#: templates/ishtar/sheet_operation.html:219 #: templates/ishtar/dashboards/dashboard_operation.html:18 #: templates/ishtar/dashboards/dashboard_operation.html:164 #: templates/ishtar/dashboards/dashboard_operation.html:432 @@ -1244,19 +1257,19 @@ msgstr "Type" msgid "Number" msgstr "Nombre" -#: templates/ishtar/sheet_operation.html:186 +#: templates/ishtar/sheet_operation.html:188 msgid "Material type" msgstr "Type de matériau" -#: templates/ishtar/sheet_operation.html:194 +#: templates/ishtar/sheet_operation.html:196 msgid "Object type" msgstr "Type d'objet" -#: templates/ishtar/sheet_operation.html:210 +#: templates/ishtar/sheet_operation.html:212 msgid "Sources" msgstr "Documents" -#: templates/ishtar/sheet_operation.html:226 +#: templates/ishtar/sheet_operation.html:228 msgid "Finds by context records" msgstr "Mobilier par Unités d'Enregistrement" diff --git a/translations/fr/archaeological_warehouse.po b/translations/fr/archaeological_warehouse.po index 15d86d645..0356ebec7 100644 --- a/translations/fr/archaeological_warehouse.po +++ b/translations/fr/archaeological_warehouse.po @@ -7,26 +7,28 @@ # Étienne Loks , 2017. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2017-03-21 06:24-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:63 models.py:103 +#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:66 models.py:202 #: templates/ishtar/sheet_warehouse.html:4 msgid "Warehouse" msgstr "Dépôt" -#: forms.py:45 forms.py:50 models.py:281 +#: forms.py:45 forms.py:50 models.py:387 msgid "Division" msgstr "Division" -#: forms.py:52 models.py:127 +#: forms.py:52 models.py:226 msgid "Order" msgstr "Ordre" @@ -34,15 +36,15 @@ msgstr "Ordre" msgid "There are identical divisions." msgstr "Il y a des divisions identiques" -#: forms.py:70 models.py:53 +#: forms.py:70 models.py:56 msgid "Divisions" msgstr "Divisions" -#: forms.py:74 forms.py:103 models.py:45 models.py:100 +#: forms.py:74 forms.py:103 models.py:48 models.py:199 msgid "Name" msgstr "Nom" -#: forms.py:75 forms.py:105 models.py:36 models.py:47 +#: forms.py:75 forms.py:105 models.py:39 models.py:50 msgid "Warehouse type" msgstr "Type de dépôt" @@ -54,11 +56,11 @@ msgstr "Commune" msgid "Warehouse search" msgstr "Rechercher un dépôt" -#: forms.py:108 models.py:50 +#: forms.py:108 models.py:53 msgid "Person in charge" msgstr "Responsable" -#: forms.py:114 forms.py:184 models.py:51 models.py:181 +#: forms.py:114 forms.py:184 models.py:54 models.py:280 msgid "Comment" msgstr "Commentaires" @@ -90,16 +92,16 @@ msgstr "Téléphone mobile" msgid "Would you like to delete this warehouse?" msgstr "Voulez-vous supprimer ce dépôt ?" -#: forms.py:158 models.py:192 models.py:279 +#: forms.py:158 models.py:291 models.py:384 #: templates/ishtar/sheet_container.html:4 msgid "Container" msgstr "Contenant" -#: forms.py:163 forms.py:237 models.py:142 +#: forms.py:163 forms.py:237 models.py:241 msgid "Ref." msgstr "Réf." -#: forms.py:164 forms.py:236 models.py:145 models.py:179 +#: forms.py:164 forms.py:236 models.py:244 models.py:278 msgid "Container type" msgstr "Type de contenant" @@ -107,7 +109,7 @@ msgstr "Type de contenant" msgid "Current location (warehouse)" msgstr "Lieu actuel (dépôt)" -#: forms.py:172 models.py:176 +#: forms.py:172 models.py:275 msgid "Responsible warehouse" msgstr "Dépôt responsable" @@ -160,7 +162,7 @@ msgstr "Date" msgid "Packaged finds" msgstr "Mobilier conditionné" -#: forms.py:280 models.py:182 +#: forms.py:280 models.py:281 msgid "Localisation" msgstr "Localisation" @@ -188,115 +190,116 @@ msgstr "Modification" msgid "Deletion" msgstr "Suppression" -#: ishtar_menu.py:57 models.py:193 templates/ishtar/sheet_warehouse.html:20 +#: ishtar_menu.py:57 models.py:292 templates/ishtar/sheet_warehouse.html:20 +#: templates/ishtar/sheet_warehouse.html:53 msgid "Containers" msgstr "Contenants" -#: models.py:37 +#: models.py:40 msgid "Warehouse types" msgstr "Types de dépôt" -#: models.py:56 models.py:187 +#: models.py:59 models.py:286 msgid "External ID" msgstr "ID externe" -#: models.py:58 models.py:189 +#: models.py:61 models.py:288 msgid "External ID is set automatically" msgstr "L'ID externe est attribué automatiquement" -#: models.py:64 +#: models.py:67 msgid "Warehouses" msgstr "Dépôts" -#: models.py:66 +#: models.py:69 msgid "Can view all Warehouses" msgstr "Peut voir tous les Dépôts" -#: models.py:67 +#: models.py:70 msgid "Can view own Warehouse" msgstr "Peut voir son propre Dépôt" -#: models.py:68 +#: models.py:71 msgid "Can add own Warehouse" msgstr "Peut ajouter son propre Dépôt" -#: models.py:69 +#: models.py:72 msgid "Can change own Warehouse" msgstr "Peut modifier son propre Dépôt" -#: models.py:70 +#: models.py:73 msgid "Can delete own Warehouse" msgstr "Peut supprimer son propre Dépôt" -#: models.py:102 +#: models.py:201 msgid "Description" msgstr "Description" -#: models.py:107 models.py:108 +#: models.py:206 models.py:207 msgid "Collection" msgstr "Collection" -#: models.py:117 +#: models.py:216 msgid "Warehouse division type" msgstr "Type de division de dépôt" -#: models.py:118 +#: models.py:217 msgid "Warehouse division types" msgstr "Types de division de dépôt" -#: models.py:138 +#: models.py:237 msgid "Length (mm)" msgstr "Longueur (mm)" -#: models.py:139 +#: models.py:238 msgid "Width (mm)" msgstr "Largeur (mm)" -#: models.py:140 +#: models.py:239 msgid "Height (mm)" msgstr "Hauteur (mm)" -#: models.py:141 +#: models.py:240 msgid "Volume (l)" msgstr "Volume (l)" -#: models.py:146 +#: models.py:245 msgid "Container types" msgstr "Types de contenant" -#: models.py:165 +#: models.py:264 msgid "Location - index" msgstr "Lieu - index" -#: models.py:166 +#: models.py:265 msgid "Precise localisation" msgstr "Localisation précise" -#: models.py:167 +#: models.py:266 msgid "Type" msgstr "Type" -#: models.py:173 +#: models.py:272 msgid "Location (warehouse)" msgstr "Lieu (dépôt)" -#: models.py:180 +#: models.py:279 msgid "Container ref." msgstr "Réf. du contenant" -#: models.py:184 +#: models.py:283 msgid "Cached location" msgstr "Lieu - en cache" -#: models.py:282 +#: models.py:388 msgid "Reference" msgstr "Référence" -#: models.py:285 +#: models.py:391 msgid "Container localisation" msgstr "Localisation de contenant" -#: models.py:286 +#: models.py:392 msgid "Container localisations" msgstr "Localisations de contenant" @@ -332,10 +335,38 @@ msgstr "Contenu" msgid "Attached containers" msgstr "Contenants associés" -#: templates/ishtar/wizard/wizard_containerlocalisation.html:6 +#: templates/ishtar/sheet_warehouse.html:29 +msgid "Statistics" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:30 +msgid "Theses number are updated hourly" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:32 +msgid "Finds" +msgstr "" + +#: templates/ishtar/sheet_warehouse.html:39 +#, fuzzy +msgid "Finds by location in the warehouse" +msgstr "Lieu actuel (dépôt)" + +#: templates/ishtar/sheet_warehouse.html:59 +#, fuzzy +msgid "Containers by location in the warehouse" +msgstr "Lieu actuel (dépôt)" + +#: templates/ishtar/wizard/wizard_containerlocalisation.html:8 msgid "" "No division set for this warehouse. Define at least one division to localise " "containers in this warehouse." msgstr "" "Pas de division configurée pour ce dépôt. Définissez au moins une division " "pour localiser les contenants dans ce dépôt." + +#: templates/ishtar/wizard/wizard_warehouse_divisions.html:8 +msgid "" +"Containers with localisation are associated to this warehouse. You cannot " +"change divisions." +msgstr "" diff --git a/translations/fr/ishtar_common.po b/translations/fr/ishtar_common.po index 6a9d80265..0c4c94036 100644 --- a/translations/fr/ishtar_common.po +++ b/translations/fr/ishtar_common.po @@ -8,13 +8,15 @@ # Valérie-Emma Leroux , 2017. #zanata msgid "" msgstr "" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-05 12:20+0200\n" "PO-Revision-Date: 2017-03-21 01:54-0400\n" "Last-Translator: Valérie-Emma Leroux \n" "Language-Team: \n" "Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" @@ -168,40 +170,40 @@ msgstr "résultat" msgid "\"%(value)s\" not in %(values)s" msgstr "\"%(value)s\" n'est pas dans %(values)s" -#: forms.py:73 +#: forms.py:74 msgid "Enter a valid name consisting of letters, spaces and hyphens." msgstr "Entrez un nom correct composé de lettres, espaces et tirets." -#: forms.py:89 forms_common.py:626 +#: forms.py:90 forms_common.py:626 msgid "Confirm" msgstr "Confirmer" -#: forms.py:94 +#: forms.py:95 msgid "Are you sure you want to delete?" msgstr "Êtes-vous sûr de vouloir supprimer ?" -#: forms.py:103 +#: forms.py:129 msgid "There are identical items." msgstr "Il y a des éléments identiques." -#: forms.py:141 forms.py:142 +#: forms.py:176 forms.py:177 msgid "Closing date" msgstr "Date de clôture" -#: forms.py:155 +#: forms.py:190 msgid "You should select an item." msgstr "Vous devez sélectionner un élément." -#: forms.py:156 +#: forms.py:191 msgid "Add a new item" msgstr "Ajouter un nouvel élément" -#: forms.py:262 models.py:1482 +#: forms.py:297 models.py:1501 msgid "Template" msgstr "Patron" #: forms_common.py:41 forms_common.py:59 forms_common.py:184 -#: forms_common.py:408 models.py:1548 models.py:2989 +#: forms_common.py:408 models.py:1567 models.py:3033 #: templates/blocks/JQueryAdvancedTown.html:19 #: templates/ishtar/sheet_organization.html:13 msgid "Town" @@ -224,8 +226,8 @@ msgstr "" "

      Par exemple tapez « saint denis 93 » pour obtenir la " "commune Saint-Denis dans le département français de Seine-Saint-Denis.

      " -#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2610 -#: models.py:2791 models.py:2856 templates/ishtar/sheet_person.html:4 +#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2629 +#: models.py:2822 models.py:2888 templates/ishtar/sheet_person.html:4 msgid "Person" msgstr "Personne" @@ -238,64 +240,64 @@ msgstr "" "pas possible." #: forms_common.py:172 forms_common.py:329 forms_common.py:453 -#: ishtar_menu.py:75 models.py:2493 models.py:2584 +#: ishtar_menu.py:75 models.py:2512 models.py:2603 #: templates/ishtar/sheet_organization.html:4 msgid "Organization" msgstr "Organisation" #: forms_common.py:175 forms_common.py:212 forms_common.py:324 -#: forms_common.py:378 forms_common.py:448 models.py:1103 models.py:1481 -#: models.py:1750 models.py:1766 models.py:2003 models.py:2279 models.py:2487 -#: models.py:2596 models.py:2975 templates/ishtar/import_list.html:13 +#: forms_common.py:378 forms_common.py:448 models.py:1109 models.py:1500 +#: models.py:1769 models.py:1785 models.py:2022 models.py:2298 models.py:2506 +#: models.py:2615 models.py:3019 templates/ishtar/import_list.html:13 #: templates/ishtar/sheet_organization.html:8 #: templates/ishtar/sheet_organization.html:21 msgid "Name" msgstr "Nom" -#: forms_common.py:176 models.py:1703 models.py:2134 +#: forms_common.py:176 models.py:1722 models.py:2153 msgid "Organization type" msgstr "Type d'organisation" -#: forms_common.py:178 forms_common.py:402 models.py:1543 +#: forms_common.py:178 forms_common.py:402 models.py:1562 #: templates/ishtar/sheet_organization.html:10 msgid "Address" msgstr "Adresse" -#: forms_common.py:180 forms_common.py:405 models.py:1544 +#: forms_common.py:180 forms_common.py:405 models.py:1563 #: templates/ishtar/sheet_organization.html:11 msgid "Address complement" msgstr "Complément d'adresse" -#: forms_common.py:182 forms_common.py:406 models.py:1546 +#: forms_common.py:182 forms_common.py:406 models.py:1565 #: templates/ishtar/sheet_organization.html:12 msgid "Postal code" msgstr "Code postal" -#: forms_common.py:185 forms_common.py:409 models.py:1549 +#: forms_common.py:185 forms_common.py:409 models.py:1568 msgid "Country" msgstr "Pays" #: forms_common.py:187 forms_common.py:326 forms_common.py:382 -#: forms_common.py:450 forms_common.py:574 models.py:1576 +#: forms_common.py:450 forms_common.py:574 models.py:1595 msgid "Email" msgstr "Courriel" -#: forms_common.py:188 forms_common.py:385 models.py:1561 +#: forms_common.py:188 forms_common.py:385 models.py:1580 #: templates/ishtar/sheet_organization.html:14 #: templates/ishtar/sheet_person.html:21 #: templates/ishtar/wizard/wizard_person.html:17 msgid "Phone" msgstr "Téléphone" -#: forms_common.py:189 forms_common.py:394 models.py:1573 +#: forms_common.py:189 forms_common.py:394 models.py:1592 #: templates/ishtar/sheet_organization.html:15 #: templates/ishtar/sheet_person.html:39 #: templates/ishtar/wizard/wizard_person.html:35 msgid "Mobile phone" msgstr "Téléphone portable" -#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2170 -#: models.py:2489 models.py:2910 templates/sheet_ope.html:85 +#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2189 +#: models.py:2508 models.py:2954 templates/sheet_ope.html:85 #: templates/sheet_ope.html.py:105 templates/sheet_ope.html:126 #: templates/ishtar/import_list.html:14 #: templates/ishtar/sheet_organization.html:23 @@ -319,7 +321,7 @@ msgstr "Fusionner tous les éléments dans" msgid "Organization to merge" msgstr "Organisation à fusionner" -#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2594 +#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2613 #: templates/ishtar/sheet_organization.html:22 msgid "Surname" msgstr "Prénom" @@ -337,25 +339,25 @@ msgstr "Personne à fusionner" msgid "Identity" msgstr "Identité" -#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2135 -#: models.py:2588 models.py:2590 models.py:2907 templates/sheet_ope.html:104 +#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2154 +#: models.py:2607 models.py:2609 models.py:2951 templates/sheet_ope.html:104 #: templates/ishtar/blocks/window_tables/documents.html:7 msgid "Title" msgstr "Titre" -#: forms_common.py:374 models.py:2592 +#: forms_common.py:374 models.py:2611 msgid "Salutation" msgstr "Formule d'appel" -#: forms_common.py:380 models.py:2598 +#: forms_common.py:380 models.py:2617 msgid "Raw name" msgstr "Nom brut" -#: forms_common.py:383 models.py:1562 +#: forms_common.py:383 models.py:1581 msgid "Phone description" msgstr "Type de téléphone" -#: forms_common.py:386 models.py:1564 models.py:1566 +#: forms_common.py:386 models.py:1583 models.py:1585 msgid "Phone description 2" msgstr "Type de téléphone 2" @@ -363,11 +365,11 @@ msgstr "Type de téléphone 2" msgid "Phone 2" msgstr "Téléphone 2" -#: forms_common.py:390 models.py:1570 +#: forms_common.py:390 models.py:1589 msgid "Phone description 3" msgstr "Type de téléphone 3" -#: forms_common.py:392 models.py:1568 +#: forms_common.py:392 models.py:1587 msgid "Phone 3" msgstr "Téléphone 3" @@ -375,23 +377,23 @@ msgstr "Téléphone 3" msgid "Current organization" msgstr "Organisation actuelle" -#: forms_common.py:411 models.py:1551 +#: forms_common.py:411 models.py:1570 msgid "Other address: address" msgstr "Autre adresse : adresse" -#: forms_common.py:414 models.py:1554 +#: forms_common.py:414 models.py:1573 msgid "Other address: address complement" msgstr "Autre adresse : complément d'adresse" -#: forms_common.py:416 models.py:1555 +#: forms_common.py:416 models.py:1574 msgid "Other address: postal code" msgstr "Autre adresse : code postal" -#: forms_common.py:418 models.py:1557 +#: forms_common.py:418 models.py:1576 msgid "Other address: town" msgstr "Autre adresse : ville" -#: forms_common.py:420 models.py:1559 +#: forms_common.py:420 models.py:1578 msgid "Other address: country" msgstr "Autre adresse : pays" @@ -407,7 +409,7 @@ msgstr "Nom d'utilisateur" msgid "Account search" msgstr "Rechercher un compte" -#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2541 +#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2560 msgid "Person type" msgstr "Type de personne" @@ -415,7 +417,7 @@ msgstr "Type de personne" msgid "Account" msgstr "Compte" -#: forms_common.py:577 wizards.py:1339 +#: forms_common.py:577 wizards.py:1347 msgid "New password" msgstr "Nouveau mot de passe" @@ -439,7 +441,7 @@ msgstr "Ce nom d'utilisateur existe déjà." msgid "Send the new password by email?" msgstr "Envoyer le nouveau mot de passe par courriel ?" -#: forms_common.py:636 forms_common.py:649 models.py:2990 +#: forms_common.py:636 forms_common.py:649 models.py:3034 msgid "Towns" msgstr "Communes" @@ -455,7 +457,7 @@ msgstr "Seul un choix peut être coché." msgid "Documentation informations" msgstr "Information sur le document" -#: forms_common.py:783 forms_common.py:831 models.py:2136 models.py:2882 +#: forms_common.py:783 forms_common.py:831 models.py:2155 models.py:2926 msgid "Source type" msgstr "Type de document" @@ -467,37 +469,37 @@ msgstr "Référence" msgid "Internal reference" msgstr "Référence interne" -#: forms_common.py:791 models.py:2921 +#: forms_common.py:791 models.py:2965 msgid "Numerical ressource (web address)" msgstr "Ressource numérique (adresse web)" -#: forms_common.py:792 models.py:2923 +#: forms_common.py:792 models.py:2967 msgid "Receipt date" msgstr "Date de réception" -#: forms_common.py:794 models.py:2304 models.py:2925 +#: forms_common.py:794 models.py:2323 models.py:2969 msgid "Creation date" msgstr "Date de création" -#: forms_common.py:797 models.py:2928 +#: forms_common.py:797 models.py:2972 msgid "Receipt date in documentation" msgstr "Date de réception en documentation" -#: forms_common.py:799 forms_common.py:835 models.py:379 models.py:696 -#: models.py:2030 models.py:2602 models.py:2935 +#: forms_common.py:799 forms_common.py:835 models.py:381 models.py:698 +#: models.py:2049 models.py:2621 models.py:2979 msgid "Comment" msgstr "Commentaire" -#: forms_common.py:801 forms_common.py:834 models.py:1105 models.py:1770 -#: models.py:1957 models.py:2004 models.py:2934 templates/sheet_ope.html:128 +#: forms_common.py:801 forms_common.py:834 models.py:1111 models.py:1789 +#: models.py:1976 models.py:2023 models.py:2978 templates/sheet_ope.html:128 msgid "Description" msgstr "Description" -#: forms_common.py:804 models.py:2936 +#: forms_common.py:804 models.py:2980 msgid "Additional information" msgstr "Information supplémentaire" -#: forms_common.py:806 forms_common.py:838 models.py:2938 +#: forms_common.py:806 forms_common.py:838 models.py:2982 msgid "Has a duplicate" msgstr "Existe en doublon" @@ -514,7 +516,7 @@ msgstr "" "

      Les images trop grandes sont retaillées en : %(width)dx%(height)d (le " "ratio est conservé).

      " -#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2861 +#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2893 #: templates/ishtar/wizard/wizard_person_deletion.html:124 msgid "Author" msgstr "Auteur" @@ -527,7 +529,7 @@ msgstr "Informations supplémentaires" msgid "Would you like to delete this documentation?" msgstr "Voulez-vous supprimer ce document ?" -#: forms_common.py:864 models.py:2137 models.py:2848 models.py:2858 +#: forms_common.py:864 models.py:2156 models.py:2880 models.py:2890 msgid "Author type" msgstr "Type d'auteur" @@ -539,7 +541,7 @@ msgstr "Sélection d'auteur" msgid "There are identical authors." msgstr "Il y a des auteurs identiques." -#: forms_common.py:901 models.py:2862 models.py:2917 +#: forms_common.py:901 models.py:2894 models.py:2961 #: templates/sheet_ope.html:106 #: templates/ishtar/blocks/window_tables/documents.html:9 msgid "Authors" @@ -557,7 +559,7 @@ msgstr "Ajout/modification" msgid "Deletion" msgstr "Suppression" -#: ishtar_menu.py:39 models.py:1277 views.py:1608 +#: ishtar_menu.py:39 models.py:1283 views.py:1632 msgid "Global variables" msgstr "Variables globales" @@ -585,19 +587,19 @@ msgstr "Fusion automatique" msgid "Manual merge" msgstr "Fusion manuelle" -#: ishtar_menu.py:109 models.py:2315 +#: ishtar_menu.py:109 models.py:2334 msgid "Imports" msgstr "Imports" -#: ishtar_menu.py:112 views.py:1616 +#: ishtar_menu.py:112 views.py:1640 msgid "New import" msgstr "Nouvel import" -#: ishtar_menu.py:116 views.py:1630 +#: ishtar_menu.py:116 views.py:1654 msgid "Current imports" msgstr "Imports en cours" -#: ishtar_menu.py:120 views.py:1669 +#: ishtar_menu.py:120 views.py:1693 msgid "Old imports" msgstr "Anciens imports" @@ -605,127 +607,127 @@ msgstr "Anciens imports" msgid "Not a valid item." msgstr "Élément invalide." -#: models.py:199 +#: models.py:201 msgid "A selected item is not a valid item." msgstr "Un élément sélectionné n'est pas valide." -#: models.py:210 +#: models.py:212 msgid "This item already exists." msgstr "Cet élément existe déjà." -#: models.py:375 models.py:695 models.py:1516 models.py:1528 models.py:1954 +#: models.py:377 models.py:697 models.py:1535 models.py:1547 models.py:1973 msgid "Label" msgstr "Libellé" -#: models.py:377 +#: models.py:379 msgid "Textual ID" msgstr "Identifiant textuel" -#: models.py:380 models.py:698 models.py:1485 +#: models.py:382 models.py:700 models.py:1504 msgid "Available" msgstr "Disponible" -#: models.py:722 models.py:2076 +#: models.py:724 models.py:2095 msgid "Key" msgstr "Clé" -#: models.py:728 +#: models.py:730 msgid "Specific key to an import" msgstr "Clé spécifique à un import" -#: models.py:820 +#: models.py:826 msgid "Last editor" msgstr "Dernier éditeur" -#: models.py:823 +#: models.py:829 msgid "Creator" msgstr "Créateur" -#: models.py:965 models.py:2846 models.py:3001 models.py:3057 +#: models.py:971 models.py:2877 models.py:3045 models.py:3101 msgid "Order" msgstr "Ordre" -#: models.py:966 +#: models.py:972 msgid "Symmetrical" msgstr "Symétrique" -#: models.py:967 +#: models.py:973 msgid "Tiny label" msgstr "Libellé court" -#: models.py:981 +#: models.py:987 msgid "Cannot have symmetrical and an inverse_relation" msgstr "Ne peut pas être symétrique et avoir une relation inverse" -#: models.py:1097 +#: models.py:1103 msgid "Euro" msgstr "Euro" -#: models.py:1098 +#: models.py:1104 msgid "US dollar" msgstr "Dollar US" -#: models.py:1104 models.py:1768 +#: models.py:1110 models.py:1787 msgid "Slug" msgstr "Identifiant texte" -#: models.py:1107 +#: models.py:1113 msgid "CSS color code for base module" msgstr "Code couleur CSS pour le tronc commun" -#: models.py:1109 +#: models.py:1115 msgid "Files module" msgstr "Module Dossiers" -#: models.py:1111 +#: models.py:1117 msgid "CSS color code for files module" msgstr "Code couleur CSS pour le module Dossier" -#: models.py:1113 +#: models.py:1119 msgid "Context records module" msgstr "Module Unités d'Enregistrement" -#: models.py:1116 +#: models.py:1122 msgid "CSS color code for context record module" msgstr "Code couleur CSS pour le module Unité d'Enregistrement" -#: models.py:1118 +#: models.py:1124 msgid "Finds module" msgstr "Module Mobilier" -#: models.py:1119 +#: models.py:1125 msgid "Need context records module" msgstr "Nécessite le module Unités d'Enregistrement" -#: models.py:1121 +#: models.py:1127 msgid "CSS color code for find module" msgstr "Code couleur CSS pour le module Mobilier" -#: models.py:1124 +#: models.py:1130 msgid "Warehouses module" msgstr "Module Dépôts" -#: models.py:1125 +#: models.py:1131 msgid "Need finds module" msgstr "Nécessite le module mobilier" -#: models.py:1127 +#: models.py:1133 msgid "CSS code for warehouse module" msgstr "Code couleur CSS pour le module Dépôt" -#: models.py:1129 +#: models.py:1135 msgid "Mapping module" msgstr "Module cartographique" -#: models.py:1131 +#: models.py:1137 msgid "CSS code for mapping module" msgstr "Code couleur CSS pour le module cartographique" -#: models.py:1134 +#: models.py:1140 msgid "Home page" msgstr "Page d'accueil" -#: models.py:1135 +#: models.py:1141 #, python-brace-format msgid "" "Homepage of Ishtar - if not defined a default homepage will appear. Use the " @@ -735,11 +737,11 @@ msgstr "" "défaut apparaît. Utiliser la syntaxe Markdown. {random_image} peut être " "utilisé pour afficher une image au hasard." -#: models.py:1139 +#: models.py:1145 msgid "File external id" msgstr "Identifiant externe de fichier" -#: models.py:1141 +#: models.py:1147 msgid "" "Formula to manage file external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " @@ -749,11 +751,11 @@ msgstr "" "précaution. Une formule incorrecte peut rendre l'application inutilisable et " "l'import de données externes peut alors être destructif." -#: models.py:1146 +#: models.py:1152 msgid "Parcel external id" msgstr "Identifiant externe de parcelle" -#: models.py:1149 +#: models.py:1155 msgid "" "Formula to manage parcel external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " @@ -763,11 +765,11 @@ msgstr "" "précaution. Une formule incorrecte peut rendre l'application inutilisable et " "l'import de données externes peut alors être destructif." -#: models.py:1154 +#: models.py:1160 msgid "Context record external id" msgstr "Identifiant externe d'unité d'enregistrement" -#: models.py:1156 +#: models.py:1162 msgid "" "Formula to manage context record external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " @@ -777,11 +779,11 @@ msgstr "" "manipuler avec précaution. Une formule incorrecte peut rendre l'application " "inutilisable et l'import de données externes peut alors être destructif." -#: models.py:1161 +#: models.py:1167 msgid "Base find external id" msgstr "Identifiant externe de mobilier de base" -#: models.py:1163 +#: models.py:1169 msgid "" "Formula to manage base find external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " @@ -791,11 +793,11 @@ msgstr "" "manipuler avec précaution. Une formule incorrecte peut rendre l'application " "inutilisable et l'import de données externes peut alors être destructif." -#: models.py:1168 +#: models.py:1174 msgid "Find external id" msgstr "Identifiant externe de mobilier" -#: models.py:1170 +#: models.py:1176 msgid "" "Formula to manage find external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " @@ -805,11 +807,11 @@ msgstr "" "précaution. Une formule incorrecte peut rendre l'application inutilisable et " "l'import de données externes peut alors être destructif." -#: models.py:1175 +#: models.py:1181 msgid "Container external id" msgstr "ID externe du contenant" -#: models.py:1177 +#: models.py:1183 msgid "" "Formula to manage container external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " @@ -819,11 +821,11 @@ msgstr "" "précaution. Une formule incorrecte peut rendre l'application inutilisable et " "l'import de données externes peut alors être destructif." -#: models.py:1182 +#: models.py:1188 msgid "Warehouse external id" msgstr "ID externe du dépôt" -#: models.py:1184 +#: models.py:1190 msgid "" "Formula to manage warehouse external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " @@ -833,11 +835,11 @@ msgstr "" "précaution. Une formule incorrecte peut rendre l'application inutilisable et " "l'import de données externes peut alors être destructif." -#: models.py:1189 +#: models.py:1195 msgid "Raw name for person" msgstr "Nom brut pour une personne" -#: models.py:1191 +#: models.py:1197 msgid "" "Formula to manage person raw_name. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " @@ -847,43 +849,43 @@ msgstr "" "Une formule incorrecte peut rendre l'application inutilisable et l'import de " "données externes peut alors être destructif." -#: models.py:1195 +#: models.py:1201 msgid "Current active" msgstr "Actuellement utilisé" -#: models.py:1196 +#: models.py:1202 msgid "Currency" msgstr "Devise" -#: models.py:1200 +#: models.py:1206 msgid "Ishtar site profile" msgstr "Profil d'instance Ishtar" -#: models.py:1201 +#: models.py:1207 msgid "Ishtar site profiles" msgstr "Profils d'instance Ishtar" -#: models.py:1270 +#: models.py:1276 msgid "Variable name" msgstr "Nom de la variable" -#: models.py:1271 +#: models.py:1277 msgid "Description of the variable" msgstr "Description de la variable" -#: models.py:1273 models.py:2077 +#: models.py:1279 models.py:2096 msgid "Value" msgstr "Valeur" -#: models.py:1276 +#: models.py:1282 msgid "Global variable" msgstr "Variable globale" -#: models.py:1386 models.py:1416 +#: models.py:1405 models.py:1435 msgid "Total" msgstr "Total" -#: models.py:1393 models.py:1517 models.py:1529 +#: models.py:1412 models.py:1536 models.py:1548 #: templates/ishtar/sheet_person.html:24 #: templates/ishtar/dashboards/dashboard_main_detail.html:141 #: templates/ishtar/dashboards/dashboard_main_detail_users.html:26 @@ -891,135 +893,135 @@ msgstr "Total" msgid "Number" msgstr "Nombre" -#: models.py:1480 +#: models.py:1499 msgid "Administrative Act" msgstr "Acte administratif" -#: models.py:1484 +#: models.py:1503 msgid "Associated object" msgstr "Objet associé" -#: models.py:1488 +#: models.py:1507 msgid "Document template" msgstr "Patron de document" -#: models.py:1489 +#: models.py:1508 msgid "Document templates" msgstr "Patrons de document" -#: models.py:1520 models.py:1530 models.py:2299 +#: models.py:1539 models.py:1549 models.py:2318 msgid "State" msgstr "État" -#: models.py:1534 templates/blocks/JQueryAdvancedTown.html:12 +#: models.py:1553 templates/blocks/JQueryAdvancedTown.html:12 msgid "Department" msgstr "Département" -#: models.py:1535 +#: models.py:1554 msgid "Departments" msgstr "Départements" -#: models.py:1572 +#: models.py:1591 msgid "Raw phone" msgstr "Téléphone brut" -#: models.py:1578 +#: models.py:1597 msgid "Alternative address is prefered" msgstr "L'adresse alternative est préférée" -#: models.py:1617 +#: models.py:1636 msgid "Tel: " msgstr "Tél :" -#: models.py:1621 +#: models.py:1640 msgid "Mobile: " msgstr "Mobile :" -#: models.py:1625 +#: models.py:1644 msgid "Email: " msgstr "Courriel :" -#: models.py:1630 +#: models.py:1649 msgid "Merge key" msgstr "Clé de fusion" -#: models.py:1704 +#: models.py:1723 msgid "Organization types" msgstr "Types d'organisation" -#: models.py:1751 +#: models.py:1770 msgid "Class name" msgstr "Nom de la classe" -#: models.py:1754 +#: models.py:1773 msgid "Importer - Model" msgstr "Importeur - Modèle" -#: models.py:1755 +#: models.py:1774 msgid "Importer - Models" msgstr "Importeur - Modèles" -#: models.py:1772 templates/ishtar/dashboards/dashboard_main.html:25 +#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:25 msgid "Users" msgstr "Utilisateurs" -#: models.py:1775 +#: models.py:1794 msgid "Associated model" msgstr "Modèle associé" -#: models.py:1778 +#: models.py:1797 msgid "Models that can accept new items" msgstr "Modèles qui peuvent accepter de nouveaux éléments" -#: models.py:1779 +#: models.py:1798 msgid "Leave blank for no restrictions" msgstr "Laissez vide pour aucune restriction" -#: models.py:1781 +#: models.py:1800 msgid "Is template" msgstr "Est un patron" -#: models.py:1782 +#: models.py:1801 msgid "Unicity keys (separator \";\")" msgstr "Clés d'unicité (séparateur « ; »)" -#: models.py:1786 +#: models.py:1805 msgid "Importer - Type" msgstr "Importeur - Type" -#: models.py:1787 +#: models.py:1806 msgid "Importer - Types" msgstr "Importeur - Types" -#: models.py:1886 +#: models.py:1905 msgid "Importer - Default" msgstr "Importeur - Par défaut" -#: models.py:1887 +#: models.py:1906 msgid "Importer - Defaults" msgstr "Importeur - Par défaut" -#: models.py:1922 +#: models.py:1941 msgid "Importer - Default value" msgstr "Importeur - Valeur par défaut" -#: models.py:1923 +#: models.py:1942 msgid "Importer - Default values" msgstr "Importeur - Valeurs par défaut" -#: models.py:1956 +#: models.py:1975 msgid "Column number" msgstr "Numéro de colonne" -#: models.py:1959 +#: models.py:1978 msgid "Required" msgstr "Requis" -#: models.py:1961 +#: models.py:1980 msgid "Export field name" msgstr "Exporter le nom du champ" -#: models.py:1962 +#: models.py:1981 msgid "" "Fill this field if the field name is ambiguous for export. For instance: " "concatenated fields." @@ -1027,511 +1029,536 @@ msgstr "" "Remplir ce champ si le nom du champ est ambigu pour l'export, par exemple " "dans le cas de champs concaténés." -#: models.py:1967 +#: models.py:1986 msgid "Importer - Column" msgstr "Importeur - Colonne" -#: models.py:1968 +#: models.py:1987 msgid "Importer - Columns" msgstr "Importeur - Colonnes" -#: models.py:1988 +#: models.py:2007 msgid "Field name" msgstr "Nom du champ" -#: models.py:1990 models.py:2024 +#: models.py:2009 models.py:2043 msgid "Force creation of new items" msgstr "Forcer la création de nouveaux éléments" -#: models.py:1992 models.py:2026 +#: models.py:2011 models.py:2045 msgid "Concatenate with existing" msgstr "Concaténer avec l'existant" -#: models.py:1994 models.py:2028 +#: models.py:2013 models.py:2047 msgid "Concatenate character" msgstr "Caractère de concaténation" -#: models.py:1998 +#: models.py:2017 msgid "Importer - Duplicate field" msgstr "Importeur - Champ dupliqué" -#: models.py:1999 +#: models.py:2018 msgid "Importer - Duplicate fields" msgstr "Importeur - Champs dupliqués" -#: models.py:2006 +#: models.py:2025 msgid "Regular expression" msgstr "Expression régulière" -#: models.py:2009 +#: models.py:2028 msgid "Importer - Regular expression" msgstr "Importeur - Expression régulière" -#: models.py:2010 +#: models.py:2029 msgid "Importer - Regular expressions" msgstr "Importeur - Expressions régulières" -#: models.py:2033 +#: models.py:2052 msgid "Importer - Target" msgstr "Importeur - Cible" -#: models.py:2034 +#: models.py:2053 msgid "Importer - Targets" msgstr "Importeur - Cibles" -#: models.py:2058 views.py:549 +#: models.py:2077 views.py:568 msgid "True" msgstr "Oui" -#: models.py:2059 views.py:551 +#: models.py:2078 views.py:570 msgid "False" msgstr "Non" -#: models.py:2078 +#: models.py:2097 msgid "Is set" msgstr "Est défini" -#: models.py:2085 +#: models.py:2104 msgid "Importer - Target key" msgstr "Importeur - Clé de rapprochement" -#: models.py:2086 +#: models.py:2105 msgid "Importer - Targets keys" msgstr "Importeur - Clés de rapprochement" -#: models.py:2138 models.py:2913 +#: models.py:2157 models.py:2957 msgid "Format" msgstr "Format" -#: models.py:2139 models.py:3005 +#: models.py:2158 models.py:3049 msgid "Operation type" msgstr "Type d'opération" -#: models.py:2140 +#: models.py:2159 msgid "Period" msgstr "Période" -#: models.py:2141 +#: models.py:2160 msgid "Report state" msgstr "État de rapport" -#: models.py:2142 +#: models.py:2161 msgid "Remain type" msgstr "Type de vestige" -#: models.py:2143 +#: models.py:2162 msgid "Unit" msgstr "Unité" -#: models.py:2144 +#: models.py:2163 msgid "Activity type" msgstr "Type d'activité" -#: models.py:2145 +#: models.py:2164 msgid "Material" msgstr "Matériau" -#: models.py:2147 +#: models.py:2166 msgid "Conservatory state" msgstr "État de conservation" -#: models.py:2148 +#: models.py:2167 msgid "Container type" msgstr "Type de contenant" -#: models.py:2149 +#: models.py:2168 msgid "Preservation type" msgstr "Type de conservation" -#: models.py:2150 +#: models.py:2169 msgid "Object type" msgstr "Type d'objet" -#: models.py:2151 +#: models.py:2170 msgid "Integrity type" msgstr "Type d'intégrité" -#: models.py:2152 +#: models.py:2171 msgid "Remarkability type" msgstr "Type de remarquabilité" -#: models.py:2153 +#: models.py:2172 msgid "Batch type" msgstr "Type de lot" -#: models.py:2155 +#: models.py:2174 msgid "Identification type" msgstr "Type d'identification" -#: models.py:2157 +#: models.py:2176 msgid "Context record relation type" msgstr "Type de relations entre Unités d'Enregistrement" -#: models.py:2158 models.py:3063 +#: models.py:2177 models.py:3107 msgid "Spatial reference system" msgstr "Système de référence spatiale" -#: models.py:2159 models.py:2891 +#: models.py:2178 models.py:2935 msgid "Support type" msgstr "Type de support" -#: models.py:2160 models.py:2553 +#: models.py:2179 models.py:2572 msgid "Title type" msgstr "Type de titre" -#: models.py:2166 +#: models.py:2185 msgid "Integer" msgstr "Entier" -#: models.py:2167 +#: models.py:2186 msgid "Float" msgstr "Nombre à virgule" -#: models.py:2168 +#: models.py:2187 msgid "String" msgstr "Chaîne de caractères" -#: models.py:2169 templates/sheet_ope.html:86 +#: models.py:2188 templates/sheet_ope.html:86 msgid "Date" msgstr "Date" -#: models.py:2171 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 +#: models.py:2190 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 #: templates/ishtar/dashboards/dashboard_main_detail.html:126 msgid "Year" msgstr "Année" -#: models.py:2172 +#: models.py:2191 msgid "String to boolean" msgstr "Chaîne de caractères vers booléen" -#: models.py:2173 +#: models.py:2192 msgctxt "filesystem" msgid "File" msgstr "Fichier" -#: models.py:2174 +#: models.py:2193 msgid "Unknow type" msgstr "Type inconnu" -#: models.py:2190 +#: models.py:2209 msgid "4 digit year. e.g.: \"2015\"" msgstr "Année sur 4 chiffres. Exemple : « 2015 »" -#: models.py:2191 +#: models.py:2210 msgid "4 digit year/month/day. e.g.: \"2015/02/04\"" msgstr "Année sur 4 chiffres/mois/jour. Exemple : « 2015/02/04 »" -#: models.py:2192 +#: models.py:2211 msgid "Day/month/4 digit year. e.g.: \"04/02/2015\"" msgstr "Jour/mois/année sur 4 chiffres. Exemple : « 04/02/2015 »" -#: models.py:2202 +#: models.py:2221 msgid "Options" msgstr "Options" -#: models.py:2204 +#: models.py:2223 msgid "Split character(s)" msgstr "Caractère(s) de séparation" -#: models.py:2208 +#: models.py:2227 msgid "Importer - Formater type" msgstr "Importeur - Type de mise en forme" -#: models.py:2209 +#: models.py:2228 msgid "Importer - Formater types" msgstr "Importeur - Types de mise en forme" -#: models.py:2261 templates/ishtar/dashboards/dashboard_main_detail.html:63 +#: models.py:2280 templates/ishtar/dashboards/dashboard_main_detail.html:63 msgid "Created" msgstr "Créé" -#: models.py:2262 +#: models.py:2281 msgid "Analyse in progress" msgstr "Analyse en cours" -#: models.py:2263 +#: models.py:2282 msgid "Analysed" msgstr "Analysé" -#: models.py:2264 +#: models.py:2283 msgid "Import pending" msgstr "Import en attente" -#: models.py:2265 +#: models.py:2284 msgid "Import in progress" msgstr "Import en cours" -#: models.py:2266 +#: models.py:2285 msgid "Finished with errors" msgstr "Terminé avec des erreurs" -#: models.py:2267 +#: models.py:2286 msgid "Finished" msgstr "Terminé" -#: models.py:2268 +#: models.py:2287 msgid "Archived" msgstr "Archivé" -#: models.py:2283 +#: models.py:2302 msgid "Imported file" msgstr "Fichier importé" -#: models.py:2285 +#: models.py:2304 msgid "Associated images (zip file)" msgstr "Images associées (fichier zip)" -#: models.py:2287 +#: models.py:2306 msgid "Encoding" msgstr "Codage" -#: models.py:2289 +#: models.py:2308 msgid "Skip lines" msgstr "Nombre de lignes d'entête" -#: models.py:2290 templates/ishtar/import_list.html:51 +#: models.py:2309 templates/ishtar/import_list.html:51 msgid "Error file" msgstr "Fichier erreur" -#: models.py:2293 +#: models.py:2312 msgid "Result file" msgstr "Fichier résultant" -#: models.py:2296 templates/ishtar/import_list.html:57 +#: models.py:2315 templates/ishtar/import_list.html:57 msgid "Match file" msgstr "Fichier de correspondance" -#: models.py:2302 +#: models.py:2321 msgid "Conservative import" msgstr "Import conservateur" -#: models.py:2307 +#: models.py:2326 msgid "End date" msgstr "Date de fin" -#: models.py:2309 +#: models.py:2328 msgid "Remaining seconds" msgstr "Secondes restantes" -#: models.py:2314 +#: models.py:2333 msgid "Import" msgstr "Import" -#: models.py:2343 +#: models.py:2362 msgid "Analyse" msgstr "Analyser" -#: models.py:2345 models.py:2348 +#: models.py:2364 models.py:2367 msgid "Re-analyse" msgstr "Analyser de nouveau " -#: models.py:2346 +#: models.py:2365 msgid "Launch import" msgstr "Lancer l'import" -#: models.py:2349 +#: models.py:2368 msgid "Re-import" msgstr "Ré-importer" -#: models.py:2350 +#: models.py:2369 msgid "Archive" msgstr "Archiver" -#: models.py:2352 +#: models.py:2371 msgid "Unarchive" msgstr "Désarchiver" -#: models.py:2353 widgets.py:130 templates/ishtar/form_delete.html:11 +#: models.py:2372 widgets.py:184 templates/ishtar/form_delete.html:11 msgid "Delete" msgstr "Supprimer" -#: models.py:2494 +#: models.py:2513 msgid "Organizations" msgstr "Organisations" -#: models.py:2496 +#: models.py:2515 msgid "Can view all Organizations" msgstr "Peut voir toutes les Organisations" -#: models.py:2497 +#: models.py:2516 msgid "Can view own Organization" msgstr "Peut voir sa propre Organisation" -#: models.py:2498 +#: models.py:2517 msgid "Can add own Organization" msgstr "Peut ajouter sa propre Organisation" -#: models.py:2500 +#: models.py:2519 msgid "Can change own Organization" msgstr "Peut modifier sa propre Organisation" -#: models.py:2502 +#: models.py:2521 msgid "Can delete own Organization" msgstr "Peut supprimer sa propre Organisation" -#: models.py:2537 +#: models.py:2556 msgid "Groups" msgstr "Groupes" -#: models.py:2542 +#: models.py:2561 msgid "Person types" msgstr "Types de personne" -#: models.py:2554 +#: models.py:2573 msgid "Title types" msgstr "Types de titre" -#: models.py:2563 +#: models.py:2582 msgid "Mr" msgstr "M." -#: models.py:2564 +#: models.py:2583 msgid "Miss" msgstr "Mlle" -#: models.py:2565 +#: models.py:2584 msgid "Mr and Mrs" msgstr "M. et Mme" -#: models.py:2566 +#: models.py:2585 msgid "Mrs" msgstr "Mme" -#: models.py:2567 +#: models.py:2586 msgid "Doctor" msgstr "Dr." -#: models.py:2600 +#: models.py:2619 msgid "Contact type" msgstr "Type de contact" -#: models.py:2603 models.py:2667 +#: models.py:2622 models.py:2686 msgid "Types" msgstr "Types" -#: models.py:2606 +#: models.py:2625 msgid "Is attached to" msgstr "Est rattaché à" -#: models.py:2611 +#: models.py:2630 msgid "Persons" msgstr "Personnes" -#: models.py:2613 +#: models.py:2632 msgid "Can view all Persons" msgstr "Peut voir toutes les Personnes" -#: models.py:2614 +#: models.py:2633 msgid "Can view own Person" msgstr "Peut voir sa propre Personne" -#: models.py:2615 +#: models.py:2634 msgid "Can add own Person" msgstr "Peut ajouter sa propre Personne" -#: models.py:2616 +#: models.py:2635 msgid "Can change own Person" msgstr "Peut modifier sa propre Personne" -#: models.py:2617 +#: models.py:2636 msgid "Can delete own Person" msgstr "Peut supprimer sa propre Personne" -#: models.py:2794 +#: models.py:2825 msgid "Advanced shortcut menu" msgstr "Menu de raccourci (avancé)" -#: models.py:2797 +#: models.py:2828 msgid "Ishtar user" msgstr "Utilisateur d'Ishtar" -#: models.py:2798 +#: models.py:2829 msgid "Ishtar users" msgstr "Utilisateurs d'Ishtar" -#: models.py:2842 +#: models.py:2873 msgid "To modify the password use the form in Auth > User" msgstr "" "Pour modifier le mot de passe, utilisez le formulaire dans Authentification " "> Utilisateurs" -#: models.py:2849 +#: models.py:2881 msgid "Author types" msgstr "Types d'auteur" -#: models.py:2883 +#: models.py:2898 +#, fuzzy +msgid "Can view all Authors" +msgstr "Peut voir toutes les Personnes" + +#: models.py:2900 +#, fuzzy +msgid "Can view own Author" +msgstr "Peut voir sa propre Personne" + +#: models.py:2902 +#, fuzzy +msgid "Can add own Author" +msgstr "Peut ajouter sa propre Personne" + +#: models.py:2904 +#, fuzzy +msgid "Can change own Author" +msgstr "Peut modifier sa propre Personne" + +#: models.py:2906 +#, fuzzy +msgid "Can delete own Author" +msgstr "Peut supprimer sa propre Personne" + +#: models.py:2927 msgid "Source types" msgstr "Types de document" -#: models.py:2892 +#: models.py:2936 msgid "Support types" msgstr "Types de support" -#: models.py:2899 +#: models.py:2943 msgid "Format type" msgstr "Type de format" -#: models.py:2900 +#: models.py:2944 msgid "Format types" msgstr "Types de format" -#: models.py:2908 +#: models.py:2952 msgid "External ID" msgstr "Identifiant externe" -#: models.py:2911 +#: models.py:2955 msgid "Support" msgstr "Support" -#: models.py:2915 +#: models.py:2959 msgid "Scale" msgstr "Échelle" -#: models.py:2929 +#: models.py:2973 msgid "Item number" msgstr "Numéro d'élément" -#: models.py:2930 +#: models.py:2974 msgid "Ref." msgstr "Réf." -#: models.py:2933 +#: models.py:2977 msgid "Internal ref." msgstr "Réf. interne" -#: models.py:2976 +#: models.py:3020 msgid "Surface (m2)" msgstr "Surface (m2)" -#: models.py:2977 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 +#: models.py:3021 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 msgid "Localisation" msgstr "Localisation" -#: models.py:3002 +#: models.py:3046 msgid "Is preventive" msgstr "Est du préventif" -#: models.py:3006 +#: models.py:3050 msgid "Operation types" msgstr "Types d'opération" -#: models.py:3035 +#: models.py:3079 msgid "Preventive" msgstr "Préventif" -#: models.py:3036 +#: models.py:3080 msgid "Research" msgstr "Programmé" -#: models.py:3059 +#: models.py:3103 msgid "Authority name" msgstr "Registre" -#: models.py:3060 +#: models.py:3104 msgid "Authority SRID" msgstr "SRID" -#: models.py:3064 +#: models.py:3108 msgid "Spatial reference systems" msgstr "Systèmes de référence spatiale" @@ -1575,108 +1602,108 @@ msgstr "Gérer les comptes" msgid "Account deletion" msgstr "Supprimer un compte" -#: views.py:241 +#: views.py:251 msgid "Archaeological file" msgstr "Dossier" -#: views.py:242 +#: views.py:252 msgid "Operation" msgstr "Opération" -#: views.py:244 +#: views.py:254 msgid "Context record" msgstr "Unité d'Enregistrement" -#: views.py:246 +#: views.py:256 msgid "Find" msgstr "Mobilier" -#: views.py:248 +#: views.py:258 msgid "Treatment request" msgstr "Demande de traitement" -#: views.py:249 +#: views.py:259 msgid "Treatment" msgstr "Traitement" -#: views.py:1363 views.py:1406 +#: views.py:1387 views.py:1430 msgid "Operation not permitted." msgstr "Opération non permise." -#: views.py:1365 +#: views.py:1389 #, python-format msgid "New %s" msgstr "Nouveau %s" -#: views.py:1424 views.py:1474 +#: views.py:1448 views.py:1498 msgid "Archaeological files" msgstr "Dossiers" -#: views.py:1425 views.py:1478 +#: views.py:1449 views.py:1502 msgid "Operations" msgstr "Opérations" -#: views.py:1427 views.py:1482 +#: views.py:1451 views.py:1506 msgid "Context records" msgstr "Unités d'Enregistrement" -#: views.py:1429 views.py:1485 +#: views.py:1453 views.py:1509 msgid "Finds" msgstr "Mobilier" -#: views.py:1683 templates/ishtar/import_list.html:47 +#: views.py:1707 templates/ishtar/import_list.html:47 msgid "Link unmatched items" msgstr "Associer les éléments non rapprochés" -#: views.py:1698 +#: views.py:1722 msgid "Delete import" msgstr "Supprimer un import" -#: views.py:1737 +#: views.py:1761 msgid "Merge persons" msgstr "Fusionner des personnes" -#: views.py:1761 +#: views.py:1785 msgid "Select the main person" msgstr "Choisir la personne principale" -#: views.py:1770 +#: views.py:1794 msgid "Merge organization" msgstr "Fusionner des organisations" -#: views.py:1780 +#: views.py:1804 msgid "Select the main organization" msgstr "Sélectionner l'organisation principale" -#: views.py:1820 views.py:1836 +#: views.py:1844 views.py:1860 msgid "Corporation manager" msgstr "Représentant de la personne morale" -#: widgets.py:259 widgets.py:366 widgets.py:481 +#: widgets.py:313 widgets.py:420 widgets.py:535 msgid "Search..." msgstr "Recherche..." -#: widgets.py:670 templatetags/window_tables.py:96 +#: widgets.py:724 templatetags/window_tables.py:96 msgid "No results" msgstr "Pas de résultats" -#: widgets.py:671 templatetags/window_tables.py:97 +#: widgets.py:725 templatetags/window_tables.py:97 msgid "Loading..." msgstr "Chargement..." -#: widgets.py:672 +#: widgets.py:726 msgid "Remove" msgstr "Enlever" -#: wizards.py:374 templates/ishtar/import_delete.html:21 +#: wizards.py:380 templates/ishtar/import_delete.html:21 msgid "Yes" msgstr "Oui" -#: wizards.py:376 +#: wizards.py:382 msgid "No" msgstr "Non" -#: wizards.py:1396 +#: wizards.py:1404 #, python-format msgid "[%(app_name)s] Account creation/modification" msgstr "[%(app_name)s] Création/modification du compte" @@ -1717,8 +1744,7 @@ msgstr "L'équipe %(app_name)s" #: templates/base.html:41 msgid "Searches in the shortcut menu deal with all items." -msgstr "" -"Les recherches dans le menu de raccourci concernent tous les éléments." +msgstr "Les recherches dans le menu de raccourci concernent tous les éléments." #: templates/base.html:42 msgid "Searches in the shortcut menu deal with only your items." @@ -1753,19 +1779,19 @@ msgstr "Éléments courants" msgid ":" msgstr " :" -#: templates/base.html:120 +#: templates/base.html:123 msgid "Processing..." msgstr "En traitement..." -#: templates/base.html:121 +#: templates/base.html:124 msgid "This can be long." msgstr "Cela peut être long." -#: templates/base.html:122 +#: templates/base.html:125 msgid "Time to take a coffee?" msgstr "Il est peut-être temps de prendre un café ?" -#: templates/base.html:123 +#: templates/base.html:126 msgid "Time to take another coffee?" msgstr "Pourquoi pas un autre café ?" @@ -2394,8 +2420,8 @@ msgid "" "Powered by Ishtar v%(VERSION)s - " "a free software under AGPL v3 license." msgstr "" -"Propulsé par Ishtar v%(VERSION)s -" -" logiciel libre sous licence AGPL v3." +"Propulsé par Ishtar v%(VERSION)s " +"- logiciel libre sous licence AGPL v3." #: templates/ishtar/blocks/sheet_creation_section.html:3 msgctxt "Sheet" -- cgit v1.2.3 From 617850ba6fb852e3465fd3a437437be333cfbf4e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 6 Apr 2017 16:29:32 +0200 Subject: Allow old operations. Seventeenth century here we are! (refs #3588) --- archaeological_files/forms.py | 2 +- archaeological_files_pdl/forms.py | 4 ++-- archaeological_finds/forms_treatments.py | 4 ++-- archaeological_operations/forms.py | 4 ++-- archaeological_operations/utils.py | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_files/forms.py b/archaeological_files/forms.py index 99fe6e0db..d8738f511 100644 --- a/archaeological_files/forms.py +++ b/archaeological_files/forms.py @@ -209,7 +209,7 @@ class FileFormGeneral(ManageOldType, forms.Form): validators=[valid_id(Person)]) year = forms.IntegerField(label=_("Year"), initial=lambda: datetime.datetime.now().year, - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) numeric_reference = forms.IntegerField( label=_("Numeric reference"), widget=forms.HiddenInput, required=False) diff --git a/archaeological_files_pdl/forms.py b/archaeological_files_pdl/forms.py index 8bb1f9156..73f1d789c 100644 --- a/archaeological_files_pdl/forms.py +++ b/archaeological_files_pdl/forms.py @@ -40,7 +40,7 @@ class FileFormGeneral(ManageOldType, forms.Form): file_type = forms.ChoiceField(label=_("File type"), choices=[]) year = forms.IntegerField(label=_("Year"), initial=lambda: datetime.datetime.now().year, - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) creation_date = forms.DateField(label=_(u"Creation date"), initial=get_now, widget=widgets.JQueryDate) @@ -413,7 +413,7 @@ class FileFormInstruction(forms.Form): instruction_deadline = forms.DateField(widget=widgets.JQueryDate, required=False) year = forms.IntegerField(label=_("Year"), - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) numeric_reference = forms.IntegerField(label=_("Numeric reference"), required=False) diff --git a/archaeological_finds/forms_treatments.py b/archaeological_finds/forms_treatments.py index 3c6668c9d..b3ad8b115 100644 --- a/archaeological_finds/forms_treatments.py +++ b/archaeological_finds/forms_treatments.py @@ -95,7 +95,7 @@ class BaseTreatmentForm(ManageOldType, forms.Form): label=_(u"Other ref."), max_length=200, required=False) year = forms.IntegerField(label=_("Year"), initial=lambda: datetime.datetime.now().year, - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) treatment_type = forms.MultipleChoiceField( label=_(u"Treatment type"), choices=[], @@ -405,7 +405,7 @@ class TreatmentFileForm(ManageOldType, forms.Form): max_length=1000, required=False) year = forms.IntegerField(label=_("Year"), initial=lambda: datetime.datetime.now().year, - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) internal_reference = forms.CharField( label=_(u"Internal ref."), max_length=60, required=False) diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 4796ef68c..86bea4ed5 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -72,7 +72,7 @@ class ParcelForm(forms.Form): town = forms.ChoiceField(label=_("Town"), choices=(), required=False, validators=[valid_id(models.Town)]) year = forms.IntegerField(label=_("Year"), required=False, - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) section = forms.CharField(label=_(u"Section"), required=False, validators=[validators.MaxLengthValidator(4)]) @@ -782,7 +782,7 @@ class OperationFormGeneral(ManageOldType, forms.Form): choices=[]) year = forms.IntegerField(label=_(u"Year"), initial=lambda: datetime.datetime.now().year, - validators=[validators.MinValueValidator(1900), + validators=[validators.MinValueValidator(1600), validators.MaxValueValidator(2100)]) old_code = forms.CharField( label=_(u"Old code"), required=False, diff --git a/archaeological_operations/utils.py b/archaeological_operations/utils.py index a84ff44ae..40ca71c05 100644 --- a/archaeological_operations/utils.py +++ b/archaeological_operations/utils.py @@ -254,9 +254,9 @@ def parse_year(value): value = parse_string(value) try: yr = int(value) - except: + except ValueError: return None - if yr < 1900 or yr > 2100: + if yr < 1600 or yr > 2100: return None return yr -- cgit v1.2.3 From 8e43fd466902833c3354869758cfb5161b46aae5 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 6 Apr 2017 16:40:42 +0200 Subject: Enlarge your tables - twice the size (refs #3420) --- archaeological_finds/templates/ishtar/sheet_findbasket.html | 2 +- .../templates/ishtar/blocks/window_tables/dynamic_documents.html | 2 +- ishtar_common/templatetags/window_tables.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/templates/ishtar/sheet_findbasket.html b/archaeological_finds/templates/ishtar/sheet_findbasket.html index 6f8b12e6d..b6d4ffd42 100644 --- a/archaeological_finds/templates/ishtar/sheet_findbasket.html +++ b/archaeological_finds/templates/ishtar/sheet_findbasket.html @@ -9,5 +9,5 @@

      {{ item.label|default:"" }}

      {% field "Owned by" item.user %} {% field "Comment" item.comment %} -{% dynamic_table_document_large finds 'finds_for_ope' 'basket' item.pk 'TABLE_COLS_FOR_OPE' output %} +{% dynamic_table_document finds 'finds_for_ope' 'basket' item.pk 'TABLE_COLS_FOR_OPE' output %} {% endblock %} diff --git a/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html b/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html index f751cebe3..891cd0f6f 100644 --- a/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html +++ b/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html @@ -41,7 +41,7 @@ setTimeout( alert("{% trans "An error as occured during search. Check your query fields." %}"); } }); - {% if large %}jQuery("#grid_{{name}}").jqGrid('setGridHeight', 400);{% endif %} + {% if large %}jQuery("#grid_{{name}}").jqGrid('setGridHeight', 272);{% endif %} }, 200); diff --git a/ishtar_common/templatetags/window_tables.py b/ishtar_common/templatetags/window_tables.py index 960bc7184..bf4dd2b1a 100644 --- a/ishtar_common/templatetags/window_tables.py +++ b/ishtar_common/templatetags/window_tables.py @@ -71,7 +71,7 @@ ASSOCIATED_MODELS['containers'] = ( @register.simple_tag(takes_context=True) def dynamic_table_document( context, caption, associated_model, key, value, - table_cols='TABLE_COLS', output='html', large=False, + table_cols='TABLE_COLS', output='html', large=True, col_prefix=''): if not table_cols: table_cols = 'TABLE_COLS' @@ -135,9 +135,9 @@ def dynamic_table_document( @register.simple_tag(takes_context=True) -def dynamic_table_document_large( +def dynamic_table_document_small( context, caption, associated_model, key, value, table_cols='TABLE_COLS', output='html'): return dynamic_table_document( context, caption, associated_model, key, - value, table_cols, output, large=True) + value, table_cols, output, large=False) -- cgit v1.2.3 From 738cff272d5e7e84b713da723deadcd3b9e4ed9e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 7 Apr 2017 00:17:47 +0200 Subject: Documentation generation: add some variables to treatments (refs #3586) --- archaeological_finds/models_finds.py | 5 +++-- archaeological_finds/models_treatments.py | 23 ++++++++++++++++++++--- 2 files changed, 23 insertions(+), 5 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 52601c896..d33933264 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -31,7 +31,7 @@ from ishtar_common.utils import cached_label_changed, post_save_point from ishtar_common.models import GeneralType, ImageModel, BaseHistorizedItem, \ ShortMenuItem, LightHistorizedItem, HistoricalRecords, OwnPerms, Source, \ - Person, Basket, get_external_id, post_save_cache + Person, Basket, get_external_id, post_save_cache, ValueGetter from archaeological_operations.models import AdministrativeAct from archaeological_context_records.models import ContextRecord, Dating @@ -490,7 +490,8 @@ class FBulkView(object): """ -class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): +class Find(ValueGetter, BaseHistorizedItem, ImageModel, OwnPerms, + ShortMenuItem): CHECK_DICT = dict(CHECK_CHOICES) SHOW_URL = 'show-find' SLUG = 'find' diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index c128dbe01..0f7c56678 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2016 Étienne Loks +# Copyright (C) 2016-2017 Étienne Loks # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -69,7 +69,8 @@ post_save.connect(post_save_cache, sender=TreatmentState) post_delete.connect(post_save_cache, sender=TreatmentState) -class Treatment(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): +class Treatment(ValueGetter, BaseHistorizedItem, ImageModel, OwnPerms, + ShortMenuItem): SHOW_URL = 'show-treatment' TABLE_COLS = ('year', 'index', 'treatment_types__label', 'treatment_state__label', @@ -179,7 +180,8 @@ class Treatment(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): if menu_filtr: if 'treatmentfile' in menu_filtr: replace_query = Q(file=menu_filtr['treatmentfile']) - if 'find' in menu_filtr and 'basket' not in str(menu_filtr['find']): + if 'find' in menu_filtr and \ + 'basket' not in str(menu_filtr['find']): q = Q(upstream=menu_filtr['find']) | Q( downstream=menu_filtr['find']) if replace_query: @@ -208,6 +210,21 @@ class Treatment(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): """ return u" ; ".join([unicode(t) for t in self.treatment_types.all()]) + def get_values(self, prefix=''): + values = super(Treatment, self).get_values(prefix=prefix) + values[prefix + "upstream_finds"] = u" ; ".join( + [unicode(up) for up in self.upstream.all()]) + values[prefix + "downstream_finds"] = u" ; ".join( + [unicode(down) for down in self.downstream.all()]) + values[prefix + "operations"] = u" ; ".join( + [unicode(ope) for ope in self.get_query_operations().all()]) + if self.upstream.count(): + find = self.upstream.all()[0] + if 'associatedfind_' not in prefix: + values.update( + find.get_values(prefix=prefix + 'associatedfind_')) + return values + def pre_save(self): # is not new if self.pk is not None: -- cgit v1.2.3 From da4af2ab5d105f6d2ce442b517e532b7570616e3 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 7 Apr 2017 10:47:39 +0200 Subject: Treatment - Treatment files dashboard: first overview (refs #3381) --- archaeological_finds/models_treatments.py | 10 +++++----- ishtar_common/models.py | 10 ++++------ .../templates/ishtar/dashboards/dashboard_main.html | 11 ++++++++++- ishtar_common/views.py | 18 +++++++++++++++--- 4 files changed, 34 insertions(+), 15 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index 0f7c56678..20e91155a 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -30,7 +30,7 @@ from django.utils.translation import ugettext_lazy as _, ugettext from ishtar_common.utils import cached_label_changed from ishtar_common.models import GeneralType, ImageModel, BaseHistorizedItem, \ OwnPerms, HistoricalRecords, Person, Organization, Source, \ - ValueGetter, post_save_cache, ShortMenuItem + ValueGetter, post_save_cache, ShortMenuItem, DashboardFormItem from archaeological_warehouse.models import Warehouse, Container from archaeological_finds.models_finds import Find, FindBasket from archaeological_operations.models import ClosedItem, Operation @@ -69,8 +69,8 @@ post_save.connect(post_save_cache, sender=TreatmentState) post_delete.connect(post_save_cache, sender=TreatmentState) -class Treatment(ValueGetter, BaseHistorizedItem, ImageModel, OwnPerms, - ShortMenuItem): +class Treatment(DashboardFormItem, ValueGetter, BaseHistorizedItem, + ImageModel, OwnPerms, ShortMenuItem): SHOW_URL = 'show-treatment' TABLE_COLS = ('year', 'index', 'treatment_types__label', 'treatment_state__label', @@ -472,8 +472,8 @@ post_save.connect(post_save_cache, sender=TreatmentFileType) post_delete.connect(post_save_cache, sender=TreatmentFileType) -class TreatmentFile(ClosedItem, BaseHistorizedItem, OwnPerms, ValueGetter, - ShortMenuItem): +class TreatmentFile(DashboardFormItem, ClosedItem, BaseHistorizedItem, + OwnPerms, ValueGetter, ShortMenuItem): SLUG = 'treatmentfile' SHOW_URL = 'show-treatmentfile' TABLE_COLS = ['type', 'year', 'index', 'internal_reference', 'name'] diff --git a/ishtar_common/models.py b/ishtar_common/models.py index d8ba637db..988254359 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2323,14 +2323,12 @@ class Import(models.Model): conservative_import = models.BooleanField( _(u"Conservative import"), default=False, help_text='If set to true, do not overload existing values') - creation_date = models.DateTimeField(_(u"Creation date"), - auto_now_add=True, blank=True, - null=True) + creation_date = models.DateTimeField( + _(u"Creation date"), auto_now_add=True, blank=True, null=True) end_date = models.DateTimeField(_(u"End date"), blank=True, null=True, editable=False) - seconds_remaining = models.IntegerField(_(u"Remaining seconds"), - blank=True, null=True, - editable=False) + seconds_remaining = models.IntegerField( + _(u"Remaining seconds"), blank=True, null=True, editable=False) class Meta: verbose_name = _(u"Import") diff --git a/ishtar_common/templates/ishtar/dashboards/dashboard_main.html b/ishtar_common/templates/ishtar/dashboards/dashboard_main.html index 93e11d604..6a5a67a63 100644 --- a/ishtar_common/templates/ishtar/dashboards/dashboard_main.html +++ b/ishtar_common/templates/ishtar/dashboards/dashboard_main.html @@ -15,7 +15,16 @@ {% endblock %} {% block content %}
      diff --git a/ishtar_common/views.py b/ishtar_common/views.py index 4732313ea..e8a2c9e12 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -1451,6 +1451,9 @@ def dashboard_main(request, dct, obj_id=None, *args, **kwargs): app_list.append((_(u"Context records"), 'contextrecords')) if profile.find: app_list.append((_(u"Finds"), 'finds')) + if profile.warehouse: + app_list.append((_(u"Treatment requests"), 'treatmentfiles')) + app_list.append((_(u"Treatments"), 'treatments')) dct = {'app_list': app_list} return render_to_response('ishtar/dashboards/dashboard_main.html', dct, context_instance=RequestContext(request)) @@ -1497,18 +1500,27 @@ def dashboard_main_detail(request, item_name): if item_name == 'files' and profile.files: lbl, dashboard = (_(u"Archaeological files"), models.Dashboard(File, **dashboard_kwargs)) - if item_name == 'operations': + elif item_name == 'operations': from archaeological_operations.models import Operation lbl, dashboard = (_(u"Operations"), models.Dashboard(Operation, **dashboard_kwargs)) - if item_name == 'contextrecords' and profile.context_record: + elif item_name == 'contextrecords' and profile.context_record: lbl, dashboard = ( _(u"Context records"), models.Dashboard(ContextRecord, slice=slicing, fltr=fltr)) - if item_name == 'finds' and profile.find: + elif item_name == 'finds' and profile.find: lbl, dashboard = (_(u"Finds"), models.Dashboard(Find, slice=slicing, fltr=fltr)) + elif item_name == 'treatmentfiles' and profile.warehouse: + lbl, dashboard = ( + _(u"Treatment requests"), + models.Dashboard(TreatmentFile, slice=slicing, fltr=fltr)) + elif item_name == 'treatments' and profile.warehouse: + lbl, dashboard = ( + _(u"Treatments"), + models.Dashboard(Treatment, slice=slicing, fltr=fltr, + date_source='start')) if not lbl: raise Http404 dct = {'lbl': lbl, 'dashboard': dashboard, -- cgit v1.2.3 From 68eca280162dfd5a1dddebab1842a46313eafa08 Mon Sep 17 00:00:00 2001 From: Valérie-Emma Leroux Date: Fri, 7 Apr 2017 11:42:01 +0200 Subject: Update labels --- archaeological_finds/models_treatments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index 20e91155a..c336fe16e 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -598,7 +598,7 @@ class TreatmentSource(Source): verbose_name_plural = _(u"Treament documentations") permissions = ( ("view_treatmentsource", - ugettext(u"Can view all Treatment source")), + ugettext(u"Can view all Treatment sources")), ("view_own_treatmentsource", ugettext(u"Can view own Treatment source")), ("add_own_treatmentsource", -- cgit v1.2.3 From 05ae4d517a1b90cc0a71e1aee86d3057a2d4f6e0 Mon Sep 17 00:00:00 2001 From: Valérie-Emma Leroux Date: Fri, 7 Apr 2017 11:44:06 +0200 Subject: Update labels --- archaeological_finds/models_treatments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index c336fe16e..de114f582 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -628,7 +628,7 @@ class TreatmentFileSource(Source): verbose_name_plural = _(u"Treatment request documentations") permissions = ( ("view_filetreatmentsource", - ugettext(u"Can view all Treatment request source")), + ugettext(u"Can view all Treatment request sources")), ("add_filetreatmentsource", ugettext(u"Can add Treatment request source")), ("change_filetreatmentsource", -- cgit v1.2.3 From a052e4b18b78ce11185bef4eca21fd792f47cabf Mon Sep 17 00:00:00 2001 From: Valérie-Emma Leroux Date: Fri, 7 Apr 2017 11:47:45 +0200 Subject: Update labels --- archaeological_finds/models_treatments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index de114f582..d3e18122c 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -628,7 +628,7 @@ class TreatmentFileSource(Source): verbose_name_plural = _(u"Treatment request documentations") permissions = ( ("view_filetreatmentsource", - ugettext(u"Can view all Treatment request sources")), + ugettext(u"Can view Treatment request source")), ("add_filetreatmentsource", ugettext(u"Can add Treatment request source")), ("change_filetreatmentsource", -- cgit v1.2.3 From 000920e9c10ffb061e2c0aad95ba147ba8dae766 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 7 Apr 2017 11:22:52 +0200 Subject: Update translations --- archaeological_finds/locale/django.pot | 304 +++++------ archaeological_warehouse/locale/django.pot | 82 +-- ishtar_common/locale/django.pot | 376 ++++++------- translations/de/ishtar_common.po | 634 +++++++++++----------- translations/fr/archaeological_context_records.po | 17 +- translations/fr/archaeological_files.po | 2 +- translations/fr/archaeological_files_pdl.po | 2 +- translations/fr/archaeological_finds.po | 369 ++++++------- translations/fr/archaeological_operations.po | 2 +- translations/fr/archaeological_warehouse.po | 90 ++- translations/fr/ishtar_common.po | 395 +++++++------- 11 files changed, 1139 insertions(+), 1134 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/locale/django.pot b/archaeological_finds/locale/django.pot index dcbf94fca..5947def9d 100644 --- a/archaeological_finds/locale/django.pot +++ b/archaeological_finds/locale/django.pot @@ -9,27 +9,27 @@ msgid "" msgstr "" -#: forms.py:93 forms.py:97 models_finds.py:518 wizards.py:64 +#: forms.py:93 forms.py:97 models_finds.py:519 wizards.py:64 msgid "Context record" msgstr "" -#: forms.py:126 ishtar_menu.py:32 models_finds.py:682 models_finds.py:1113 -#: models_finds.py:1134 models_treatments.py:281 +#: forms.py:126 ishtar_menu.py:32 models_finds.py:683 models_finds.py:1114 +#: models_finds.py:1135 models_treatments.py:298 #: templates/ishtar/sheet_find.html:5 msgid "Find" msgstr "" #: forms.py:140 forms.py:337 forms.py:605 models_finds.py:150 -#: models_finds.py:612 +#: models_finds.py:613 msgid "Free ID" msgstr "" -#: forms.py:142 models_finds.py:665 +#: forms.py:142 models_finds.py:666 msgid "Previous ID" msgstr "" #: forms.py:143 forms.py:368 forms_treatments.py:134 models_finds.py:154 -#: models_finds.py:613 models_treatments.py:127 +#: models_finds.py:614 models_treatments.py:128 msgid "Description" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "Batch/object" msgstr "" -#: forms.py:148 models_finds.py:642 +#: forms.py:148 models_finds.py:643 msgid "Is complete?" msgstr "" @@ -45,15 +45,15 @@ msgstr "" msgid "Material type" msgstr "" -#: forms.py:154 forms.py:362 models_finds.py:62 models_finds.py:617 +#: forms.py:154 forms.py:362 models_finds.py:62 models_finds.py:618 msgid "Conservatory state" msgstr "" -#: forms.py:157 models_finds.py:619 +#: forms.py:157 models_finds.py:620 msgid "Conservatory comment" msgstr "" -#: forms.py:160 models_finds.py:112 models_finds.py:645 +#: forms.py:160 models_finds.py:112 models_finds.py:646 msgid "Object types" msgstr "" @@ -61,11 +61,11 @@ msgstr "" msgid "Preservation type" msgstr "" -#: forms.py:167 forms.py:364 models_finds.py:647 +#: forms.py:167 forms.py:364 models_finds.py:648 msgid "Integrity / interest" msgstr "" -#: forms.py:170 forms.py:366 models_finds.py:650 +#: forms.py:170 forms.py:366 models_finds.py:651 msgid "Remarkability" msgstr "" @@ -101,69 +101,69 @@ msgstr "" msgid "Estimated error for Z" msgstr "" -#: forms.py:188 models_finds.py:654 +#: forms.py:188 models_finds.py:655 msgid "Length (cm)" msgstr "" -#: forms.py:189 models_finds.py:655 +#: forms.py:189 models_finds.py:656 msgid "Width (cm)" msgstr "" -#: forms.py:190 models_finds.py:656 +#: forms.py:190 models_finds.py:657 msgid "Height (cm)" msgstr "" -#: forms.py:191 models_finds.py:657 +#: forms.py:191 models_finds.py:658 msgid "Diameter (cm)" msgstr "" -#: forms.py:192 models_finds.py:658 +#: forms.py:192 models_finds.py:659 msgid "Thickness (cm)" msgstr "" -#: forms.py:193 forms.py:610 models_finds.py:624 +#: forms.py:193 forms.py:610 models_finds.py:625 msgid "Volume (l)" msgstr "" -#: forms.py:194 forms.py:611 models_finds.py:625 +#: forms.py:194 forms.py:611 models_finds.py:626 msgid "Weight (g)" msgstr "" -#: forms.py:196 models_finds.py:659 +#: forms.py:196 models_finds.py:660 msgid "Dimensions comment" msgstr "" -#: forms.py:197 forms.py:612 models_finds.py:628 +#: forms.py:197 forms.py:612 models_finds.py:629 msgid "Find number" msgstr "" -#: forms.py:199 models_finds.py:653 +#: forms.py:199 models_finds.py:654 msgid "Minimum number of individuals (MNI)" msgstr "" -#: forms.py:200 models_finds.py:661 +#: forms.py:200 models_finds.py:662 msgid "Mark" msgstr "" -#: forms.py:201 forms.py:371 models_finds.py:667 +#: forms.py:201 forms.py:371 models_finds.py:668 msgid "Check" msgstr "" -#: forms.py:203 models_finds.py:669 +#: forms.py:203 models_finds.py:670 msgid "Check date" msgstr "" #: forms.py:204 forms_treatments.py:132 forms_treatments.py:434 -#: models_finds.py:155 models_finds.py:662 models_treatments.py:126 -#: models_treatments.py:494 +#: models_finds.py:155 models_finds.py:663 models_treatments.py:127 +#: models_treatments.py:511 msgid "Comment" msgstr "" -#: forms.py:207 models_finds.py:663 +#: forms.py:207 models_finds.py:664 msgid "Comment on dating" msgstr "" -#: forms.py:208 models_finds.py:671 +#: forms.py:208 models_finds.py:672 msgid "Estimated value" msgstr "" @@ -186,7 +186,7 @@ msgstr "" msgid "Coordinates are not relevant for the spatial reference system used: {}." msgstr "" -#: forms.py:300 forms.py:331 models_finds.py:636 +#: forms.py:300 forms.py:331 models_finds.py:637 msgid "Dating" msgstr "" @@ -195,12 +195,12 @@ msgid "Period" msgstr "" #: forms.py:306 forms_treatments.py:138 forms_treatments.py:436 -#: models_finds.py:1139 models_treatments.py:129 models_treatments.py:292 +#: models_finds.py:1140 models_treatments.py:130 models_treatments.py:309 #: templates/ishtar/sheet_find.html:91 templates/ishtar/sheet_find.html:133 msgid "Start date" msgstr "" -#: forms.py:308 models_finds.py:1140 models_treatments.py:293 +#: forms.py:308 models_finds.py:1141 models_treatments.py:310 #: templates/ishtar/sheet_find.html:92 templates/ishtar/sheet_find.html:134 msgid "End date" msgstr "" @@ -227,7 +227,7 @@ msgstr "" #: forms.py:340 forms_treatments.py:54 forms_treatments.py:96 #: forms_treatments.py:284 forms_treatments.py:356 forms_treatments.py:406 -#: forms_treatments.py:489 models_treatments.py:102 models_treatments.py:466 +#: forms_treatments.py:489 models_treatments.py:103 models_treatments.py:483 msgid "Year" msgstr "" @@ -279,7 +279,7 @@ msgstr "" msgid "Upstream finds" msgstr "" -#: forms.py:487 models_finds.py:683 +#: forms.py:487 models_finds.py:684 msgid "Finds" msgstr "" @@ -303,7 +303,7 @@ msgstr "" msgid "Would you like to delete this find?" msgstr "" -#: forms.py:631 models_treatments.py:90 +#: forms.py:631 models_treatments.py:91 msgid "Upstream find" msgstr "" @@ -351,25 +351,25 @@ msgstr "" msgid "Basket" msgstr "" -#: forms_treatments.py:52 forms_treatments.py:92 models_treatments.py:98 +#: forms_treatments.py:52 forms_treatments.py:92 models_treatments.py:99 #: templates/ishtar/sheet_find.html:85 templates/ishtar/sheet_find.html:127 msgid "Label" msgstr "" -#: forms_treatments.py:53 forms_treatments.py:95 models_treatments.py:100 +#: forms_treatments.py:53 forms_treatments.py:95 models_treatments.py:101 msgid "Other ref." msgstr "" #: forms_treatments.py:55 forms_treatments.py:237 forms_treatments.py:285 #: forms_treatments.py:348 forms_treatments.py:357 forms_treatments.py:459 -#: forms_treatments.py:490 forms_treatments.py:557 models_treatments.py:104 -#: models_treatments.py:468 +#: forms_treatments.py:490 forms_treatments.py:557 models_treatments.py:105 +#: models_treatments.py:485 msgid "Index" msgstr "" #: forms_treatments.py:56 forms_treatments.py:101 forms_treatments.py:301 -#: forms_treatments.py:578 models_treatments.py:56 models_treatments.py:109 -#: models_treatments.py:291 +#: forms_treatments.py:578 models_treatments.py:56 models_treatments.py:110 +#: models_treatments.py:308 msgid "Treatment type" msgstr "" @@ -381,7 +381,7 @@ msgstr "" msgid "Base treatment" msgstr "" -#: forms_treatments.py:103 models_treatments.py:92 models_treatments.py:111 +#: forms_treatments.py:103 models_treatments.py:93 models_treatments.py:112 #: templates/ishtar/sheet_find.html:87 templates/ishtar/sheet_find.html:129 msgid "State" msgstr "" @@ -390,15 +390,15 @@ msgstr "" msgid "Target" msgstr "" -#: forms_treatments.py:107 forms_treatments.py:417 models_treatments.py:119 +#: forms_treatments.py:107 forms_treatments.py:417 models_treatments.py:120 msgid "Responsible" msgstr "" -#: forms_treatments.py:113 models_treatments.py:122 +#: forms_treatments.py:113 models_treatments.py:123 msgid "Organization" msgstr "" -#: forms_treatments.py:119 models_treatments.py:114 models_treatments.py:294 +#: forms_treatments.py:119 models_treatments.py:115 models_treatments.py:311 msgid "Location" msgstr "" @@ -410,12 +410,12 @@ msgstr "" msgid "External ref." msgstr "" -#: forms_treatments.py:136 models_treatments.py:128 +#: forms_treatments.py:136 models_treatments.py:129 msgid "Goal" msgstr "" -#: forms_treatments.py:140 forms_treatments.py:442 models_treatments.py:130 -#: models_treatments.py:488 +#: forms_treatments.py:140 forms_treatments.py:442 models_treatments.py:131 +#: models_treatments.py:505 msgid "Closing date" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "Another treatment with this index exists for {}." msgstr "" -#: forms_treatments.py:262 models_treatments.py:107 +#: forms_treatments.py:262 models_treatments.py:108 msgid "Associated request" msgstr "" #: forms_treatments.py:266 forms_treatments.py:397 ishtar_menu.py:108 -#: models_treatments.py:499 models_treatments.py:527 models_treatments.py:602 +#: models_treatments.py:516 models_treatments.py:544 models_treatments.py:619 #: wizards.py:187 templates/ishtar/sheet_treatmentfile.html:5 msgid "Treatment request" msgstr "" @@ -522,7 +522,7 @@ msgstr "" msgid "Modified by" msgstr "" -#: forms_treatments.py:354 forms_treatments.py:404 models_treatments.py:473 +#: forms_treatments.py:354 forms_treatments.py:404 models_treatments.py:490 msgid "Name" msgstr "" @@ -530,7 +530,7 @@ msgstr "" msgid "Internal ref." msgstr "" -#: forms_treatments.py:358 forms_treatments.py:415 models_treatments.py:91 +#: forms_treatments.py:358 forms_treatments.py:415 models_treatments.py:92 #: templates/ishtar/sheet_find.html:86 templates/ishtar/sheet_find.html:128 #: templates/ishtar/sheet_find.html:228 msgid "Type" @@ -540,12 +540,12 @@ msgstr "" msgid "In charge" msgstr "" -#: forms_treatments.py:366 forms_treatments.py:423 models_treatments.py:482 +#: forms_treatments.py:366 forms_treatments.py:423 models_treatments.py:499 #: templates/ishtar/sheet_treatmentfile.html:31 msgid "Applicant" msgstr "" -#: forms_treatments.py:372 forms_treatments.py:429 models_treatments.py:486 +#: forms_treatments.py:372 forms_treatments.py:429 models_treatments.py:503 #: templates/ishtar/sheet_treatmentfile.html:38 msgid "Applicant organisation" msgstr "" @@ -554,7 +554,7 @@ msgstr "" msgid "Treatment request search" msgstr "" -#: forms_treatments.py:439 models_treatments.py:492 +#: forms_treatments.py:439 models_treatments.py:509 msgid "Reception date" msgstr "" @@ -586,8 +586,8 @@ msgstr "" msgid "Treatment request internal reference" msgstr "" -#: forms_treatments.py:508 forms_treatments.py:604 models_treatments.py:451 -#: models_treatments.py:475 +#: forms_treatments.py:508 forms_treatments.py:604 models_treatments.py:468 +#: models_treatments.py:492 msgid "Treatment request type" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1136 +#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1137 msgid "Administrative act" msgstr "" @@ -642,8 +642,8 @@ msgstr "" msgid "Source" msgstr "" -#: ishtar_menu.py:185 models_treatments.py:147 models_treatments.py:283 -#: models_treatments.py:573 models_treatments.py:576 +#: ishtar_menu.py:185 models_treatments.py:148 models_treatments.py:300 +#: models_treatments.py:590 models_treatments.py:593 #: templates/ishtar/sheet_treatment.html:5 msgid "Treatment" msgstr "" @@ -664,7 +664,7 @@ msgstr "" msgid "Parent material" msgstr "" -#: models_finds.py:51 models_finds.py:538 models_finds.py:615 +#: models_finds.py:51 models_finds.py:539 models_finds.py:616 msgid "Material types" msgstr "" @@ -696,8 +696,8 @@ msgstr "" msgid "Remarkability types" msgstr "" -#: models_finds.py:97 models_finds.py:611 models_treatments.py:40 -#: models_treatments.py:287 +#: models_finds.py:97 models_finds.py:612 models_treatments.py:40 +#: models_treatments.py:304 msgid "Order" msgstr "" @@ -713,12 +713,12 @@ msgstr "" msgid "Parent" msgstr "" -#: models_finds.py:151 models_finds.py:608 models_treatments.py:124 -#: models_treatments.py:471 +#: models_finds.py:151 models_finds.py:609 models_treatments.py:125 +#: models_treatments.py:488 msgid "External ID" msgstr "" -#: models_finds.py:153 models_finds.py:610 +#: models_finds.py:153 models_finds.py:611 msgid "External ID is set automatically" msgstr "" @@ -758,7 +758,7 @@ msgstr "" msgid "Cached value - do not edit" msgstr "" -#: models_finds.py:197 models_finds.py:606 +#: models_finds.py:197 models_finds.py:607 msgid "Base find" msgstr "" @@ -806,149 +806,149 @@ msgstr "" msgid "Checked and correct" msgstr "" -#: models_finds.py:519 +#: models_finds.py:520 msgid "Base find - Short ID" msgstr "" -#: models_finds.py:520 +#: models_finds.py:521 msgid "Base find - Complete ID" msgstr "" -#: models_finds.py:522 +#: models_finds.py:523 msgid "Operation (code)" msgstr "" -#: models_finds.py:524 +#: models_finds.py:525 msgid "Town" msgstr "" -#: models_finds.py:526 +#: models_finds.py:527 msgid "Operation (name)" msgstr "" -#: models_finds.py:528 +#: models_finds.py:529 msgid "Parcel" msgstr "" -#: models_finds.py:529 +#: models_finds.py:530 msgid "Batch" msgstr "" -#: models_finds.py:530 +#: models_finds.py:531 msgid "Base find - Comment" msgstr "" -#: models_finds.py:531 +#: models_finds.py:532 msgid "Base find - Description" msgstr "" -#: models_finds.py:532 +#: models_finds.py:533 msgid "Base find - Topographic localisation" msgstr "" -#: models_finds.py:534 +#: models_finds.py:535 msgid "Base find - Special interest" msgstr "" -#: models_finds.py:535 +#: models_finds.py:536 msgid "Base find - Discovery date" msgstr "" -#: models_finds.py:536 models_finds.py:639 models_treatments.py:131 -#: models_treatments.py:295 templates/ishtar/sheet_find.html:90 +#: models_finds.py:537 models_finds.py:640 models_treatments.py:132 +#: models_treatments.py:312 templates/ishtar/sheet_find.html:90 #: templates/ishtar/sheet_find.html:132 msgid "Container" msgstr "" -#: models_finds.py:537 +#: models_finds.py:538 msgid "Periods" msgstr "" -#: models_finds.py:622 +#: models_finds.py:623 msgid "Type of preservation to consider" msgstr "" -#: models_finds.py:626 +#: models_finds.py:627 msgid "Weight unit" msgstr "" -#: models_finds.py:632 templates/ishtar/sheet_find.html:78 +#: models_finds.py:633 templates/ishtar/sheet_find.html:78 msgid "Upstream treatment" msgstr "" -#: models_finds.py:635 templates/ishtar/sheet_find.html:120 +#: models_finds.py:636 templates/ishtar/sheet_find.html:120 msgid "Downstream treatment" msgstr "" -#: models_finds.py:674 +#: models_finds.py:675 msgid "Collection" msgstr "" -#: models_finds.py:676 models_treatments.py:143 models_treatments.py:495 +#: models_finds.py:677 models_treatments.py:144 models_treatments.py:512 msgid "Cached name" msgstr "" -#: models_finds.py:685 +#: models_finds.py:686 msgid "Can view all Finds" msgstr "" -#: models_finds.py:686 +#: models_finds.py:687 msgid "Can view own Find" msgstr "" -#: models_finds.py:687 +#: models_finds.py:688 msgid "Can add own Find" msgstr "" -#: models_finds.py:688 +#: models_finds.py:689 msgid "Can change own Find" msgstr "" -#: models_finds.py:689 +#: models_finds.py:690 msgid "Can delete own Find" msgstr "" -#: models_finds.py:695 +#: models_finds.py:696 msgid "FIND" msgstr "" -#: models_finds.py:1099 +#: models_finds.py:1100 msgid "Find documentation" msgstr "" -#: models_finds.py:1100 +#: models_finds.py:1101 msgid "Find documentations" msgstr "" -#: models_finds.py:1103 +#: models_finds.py:1104 msgid "Can view all Find sources" msgstr "" -#: models_finds.py:1105 +#: models_finds.py:1106 msgid "Can view own Find source" msgstr "" -#: models_finds.py:1107 +#: models_finds.py:1108 msgid "Can add own Find source" msgstr "" -#: models_finds.py:1109 +#: models_finds.py:1110 msgid "Can change own Find source" msgstr "" -#: models_finds.py:1111 +#: models_finds.py:1112 msgid "Can delete own Find source" msgstr "" -#: models_finds.py:1137 +#: models_finds.py:1138 msgid "Person" msgstr "" -#: models_finds.py:1143 +#: models_finds.py:1144 msgid "Property" msgstr "" -#: models_finds.py:1144 +#: models_finds.py:1145 msgid "Properties" msgstr "" @@ -988,197 +988,197 @@ msgstr "" msgid "Treatment state types" msgstr "" -#: models_treatments.py:89 +#: models_treatments.py:90 msgid "Downstream find" msgstr "" -#: models_treatments.py:116 +#: models_treatments.py:117 msgid "Location where the treatment is done. Target warehouse for a move." msgstr "" -#: models_treatments.py:133 +#: models_treatments.py:134 msgid "Estimated cost" msgstr "" -#: models_treatments.py:135 +#: models_treatments.py:136 msgid "Quoted cost" msgstr "" -#: models_treatments.py:137 +#: models_treatments.py:138 msgid "Realized cost" msgstr "" -#: models_treatments.py:139 +#: models_treatments.py:140 msgid "Insurance cost" msgstr "" -#: models_treatments.py:141 +#: models_treatments.py:142 msgid "Target a basket" msgstr "" -#: models_treatments.py:148 templates/ishtar/sheet_find.html:75 +#: models_treatments.py:149 templates/ishtar/sheet_find.html:75 #: templates/ishtar/sheet_treatmentfile.html:46 msgid "Treatments" msgstr "" -#: models_treatments.py:151 +#: models_treatments.py:152 msgid "Can view all Treatments" msgstr "" -#: models_treatments.py:152 +#: models_treatments.py:153 msgid "Can view own Treatment" msgstr "" -#: models_treatments.py:153 +#: models_treatments.py:154 msgid "Can add own Treatment" msgstr "" -#: models_treatments.py:154 +#: models_treatments.py:155 msgid "Can change own Treatment" msgstr "" -#: models_treatments.py:155 +#: models_treatments.py:156 msgid "Can delete own Treatment" msgstr "" -#: models_treatments.py:167 +#: models_treatments.py:168 msgid "TREATMENT" msgstr "" -#: models_treatments.py:296 templates/ishtar/sheet_find.html:89 +#: models_treatments.py:313 templates/ishtar/sheet_find.html:89 #: templates/ishtar/sheet_find.html:131 msgid "Doer" msgstr "" -#: models_treatments.py:297 models_treatments.py:298 +#: models_treatments.py:314 models_treatments.py:315 msgid "Related finds" msgstr "" -#: models_treatments.py:440 +#: models_treatments.py:457 msgid "Is upstream" msgstr "" -#: models_treatments.py:452 +#: models_treatments.py:469 msgid "Treatment request types" msgstr "" -#: models_treatments.py:469 +#: models_treatments.py:486 msgid "Internal reference" msgstr "" -#: models_treatments.py:478 +#: models_treatments.py:495 msgid "Person in charge" msgstr "" -#: models_treatments.py:490 +#: models_treatments.py:507 msgid "Creation date" msgstr "" -#: models_treatments.py:500 +#: models_treatments.py:517 msgid "Treatment requests" msgstr "" -#: models_treatments.py:504 +#: models_treatments.py:521 msgid "Can view all Treatment requests" msgstr "" -#: models_treatments.py:506 +#: models_treatments.py:523 msgid "Can add Treatment request" msgstr "" -#: models_treatments.py:508 +#: models_treatments.py:525 msgid "Can change Treatment request" msgstr "" -#: models_treatments.py:510 +#: models_treatments.py:527 msgid "Can delete Treatment request" msgstr "" -#: models_treatments.py:512 +#: models_treatments.py:529 msgid "Can view own Treatment request" msgstr "" -#: models_treatments.py:514 +#: models_treatments.py:531 msgid "Can add own Treatment request" msgstr "" -#: models_treatments.py:516 +#: models_treatments.py:533 msgid "Can change own Treatment request" msgstr "" -#: models_treatments.py:518 +#: models_treatments.py:535 msgid "Can delete own Treatment request" msgstr "" -#: models_treatments.py:580 +#: models_treatments.py:597 msgid "Treatment documentation" msgstr "" -#: models_treatments.py:581 +#: models_treatments.py:598 msgid "Treament documentations" msgstr "" -#: models_treatments.py:584 +#: models_treatments.py:601 msgid "Can view all Treatment source" msgstr "" -#: models_treatments.py:586 +#: models_treatments.py:603 msgid "Can view own Treatment source" msgstr "" -#: models_treatments.py:588 +#: models_treatments.py:605 msgid "Can add own Treatment source" msgstr "" -#: models_treatments.py:590 +#: models_treatments.py:607 msgid "Can change own Treatment source" msgstr "" -#: models_treatments.py:592 +#: models_treatments.py:609 msgid "Can delete own Treatment source" msgstr "" -#: models_treatments.py:606 +#: models_treatments.py:623 msgid "Treatment file" msgstr "" -#: models_treatments.py:610 +#: models_treatments.py:627 msgid "Treatment request documentation" msgstr "" -#: models_treatments.py:611 +#: models_treatments.py:628 msgid "Treatment request documentations" msgstr "" -#: models_treatments.py:614 +#: models_treatments.py:631 msgid "Can view all Treatment request source" msgstr "" -#: models_treatments.py:616 +#: models_treatments.py:633 msgid "Can add Treatment request source" msgstr "" -#: models_treatments.py:618 +#: models_treatments.py:635 msgid "Can change Treatment request source" msgstr "" -#: models_treatments.py:620 +#: models_treatments.py:637 msgid "Can delete Treatment request source" msgstr "" -#: models_treatments.py:622 +#: models_treatments.py:639 msgid "Can view own Treatment request source" msgstr "" -#: models_treatments.py:624 +#: models_treatments.py:641 msgid "Can add own Treatment request source" msgstr "" -#: models_treatments.py:626 +#: models_treatments.py:643 msgid "Can change own Treatment request source" msgstr "" -#: models_treatments.py:628 +#: models_treatments.py:645 msgid "Can delete own Treatment request source" msgstr "" diff --git a/archaeological_warehouse/locale/django.pot b/archaeological_warehouse/locale/django.pot index f5893af41..eb88b13af 100644 --- a/archaeological_warehouse/locale/django.pot +++ b/archaeological_warehouse/locale/django.pot @@ -8,16 +8,16 @@ msgid "" msgstr "" -#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:66 models.py:202 +#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:65 models.py:204 #: templates/ishtar/sheet_warehouse.html:4 msgid "Warehouse" msgstr "" -#: forms.py:45 forms.py:50 models.py:387 +#: forms.py:45 forms.py:50 models.py:389 msgid "Division" msgstr "" -#: forms.py:52 models.py:226 +#: forms.py:52 models.py:228 msgid "Order" msgstr "" @@ -25,15 +25,15 @@ msgstr "" msgid "There are identical divisions." msgstr "" -#: forms.py:70 models.py:56 +#: forms.py:70 models.py:55 msgid "Divisions" msgstr "" -#: forms.py:74 forms.py:103 models.py:48 models.py:199 +#: forms.py:74 forms.py:103 models.py:47 models.py:201 msgid "Name" msgstr "" -#: forms.py:75 forms.py:105 models.py:39 models.py:50 +#: forms.py:75 forms.py:105 models.py:38 models.py:49 msgid "Warehouse type" msgstr "" @@ -45,11 +45,11 @@ msgstr "" msgid "Warehouse search" msgstr "" -#: forms.py:108 models.py:53 +#: forms.py:108 models.py:52 msgid "Person in charge" msgstr "" -#: forms.py:114 forms.py:184 models.py:54 models.py:280 +#: forms.py:114 forms.py:184 models.py:53 models.py:282 msgid "Comment" msgstr "" @@ -81,16 +81,16 @@ msgstr "" msgid "Would you like to delete this warehouse?" msgstr "" -#: forms.py:158 models.py:291 models.py:384 +#: forms.py:158 models.py:293 models.py:386 #: templates/ishtar/sheet_container.html:4 msgid "Container" msgstr "" -#: forms.py:163 forms.py:237 models.py:241 +#: forms.py:163 forms.py:237 models.py:243 msgid "Ref." msgstr "" -#: forms.py:164 forms.py:236 models.py:244 models.py:278 +#: forms.py:164 forms.py:236 models.py:246 models.py:280 msgid "Container type" msgstr "" @@ -98,7 +98,7 @@ msgstr "" msgid "Current location (warehouse)" msgstr "" -#: forms.py:172 models.py:275 +#: forms.py:172 models.py:277 msgid "Responsible warehouse" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Packaged finds" msgstr "" -#: forms.py:280 models.py:281 +#: forms.py:280 models.py:283 msgid "Localisation" msgstr "" @@ -177,116 +177,116 @@ msgstr "" msgid "Deletion" msgstr "" -#: ishtar_menu.py:57 models.py:292 templates/ishtar/sheet_warehouse.html:20 +#: ishtar_menu.py:57 models.py:294 templates/ishtar/sheet_warehouse.html:20 #: templates/ishtar/sheet_warehouse.html:53 msgid "Containers" msgstr "" -#: models.py:40 +#: models.py:39 msgid "Warehouse types" msgstr "" -#: models.py:59 models.py:286 +#: models.py:58 models.py:288 msgid "External ID" msgstr "" -#: models.py:61 models.py:288 +#: models.py:60 models.py:290 msgid "External ID is set automatically" msgstr "" -#: models.py:67 +#: models.py:66 msgid "Warehouses" msgstr "" -#: models.py:69 +#: models.py:68 msgid "Can view all Warehouses" msgstr "" -#: models.py:70 +#: models.py:69 msgid "Can view own Warehouse" msgstr "" -#: models.py:71 +#: models.py:70 msgid "Can add own Warehouse" msgstr "" -#: models.py:72 +#: models.py:71 msgid "Can change own Warehouse" msgstr "" -#: models.py:73 +#: models.py:72 msgid "Can delete own Warehouse" msgstr "" -#: models.py:201 +#: models.py:203 msgid "Description" msgstr "" -#: models.py:206 models.py:207 +#: models.py:208 models.py:209 msgid "Collection" msgstr "" -#: models.py:216 +#: models.py:218 msgid "Warehouse division type" msgstr "" -#: models.py:217 +#: models.py:219 msgid "Warehouse division types" msgstr "" -#: models.py:237 +#: models.py:239 msgid "Length (mm)" msgstr "" -#: models.py:238 +#: models.py:240 msgid "Width (mm)" msgstr "" -#: models.py:239 +#: models.py:241 msgid "Height (mm)" msgstr "" -#: models.py:240 +#: models.py:242 msgid "Volume (l)" msgstr "" -#: models.py:245 +#: models.py:247 msgid "Container types" msgstr "" -#: models.py:264 +#: models.py:266 msgid "Location - index" msgstr "" -#: models.py:265 +#: models.py:267 msgid "Precise localisation" msgstr "" -#: models.py:266 +#: models.py:268 msgid "Type" msgstr "" -#: models.py:272 +#: models.py:274 msgid "Location (warehouse)" msgstr "" -#: models.py:279 +#: models.py:281 msgid "Container ref." msgstr "" -#: models.py:283 +#: models.py:285 msgid "Cached location" msgstr "" -#: models.py:388 +#: models.py:390 msgid "Reference" msgstr "" -#: models.py:391 +#: models.py:393 msgid "Container localisation" msgstr "" -#: models.py:392 +#: models.py:394 msgid "Container localisations" msgstr "" diff --git a/ishtar_common/locale/django.pot b/ishtar_common/locale/django.pot index bf9b6bca0..9611caded 100644 --- a/ishtar_common/locale/django.pot +++ b/ishtar_common/locale/django.pot @@ -181,7 +181,7 @@ msgid "Template" msgstr "" #: forms_common.py:41 forms_common.py:59 forms_common.py:184 -#: forms_common.py:408 models.py:1567 models.py:3033 +#: forms_common.py:408 models.py:1567 models.py:3030 #: templates/blocks/JQueryAdvancedTown.html:19 #: templates/ishtar/sheet_organization.html:13 msgid "Town" @@ -197,8 +197,8 @@ msgid "" "french town Saint-Denis in the Seine-Saint-Denis department.

      " msgstr "" -#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2629 -#: models.py:2822 models.py:2888 templates/ishtar/sheet_person.html:4 +#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2630 +#: models.py:2823 models.py:2885 templates/ishtar/sheet_person.html:4 msgid "Person" msgstr "" @@ -209,21 +209,21 @@ msgid "" msgstr "" #: forms_common.py:172 forms_common.py:329 forms_common.py:453 -#: ishtar_menu.py:75 models.py:2512 models.py:2603 +#: ishtar_menu.py:75 models.py:2513 models.py:2604 #: templates/ishtar/sheet_organization.html:4 msgid "Organization" msgstr "" #: forms_common.py:175 forms_common.py:212 forms_common.py:324 #: forms_common.py:378 forms_common.py:448 models.py:1109 models.py:1500 -#: models.py:1769 models.py:1785 models.py:2022 models.py:2298 models.py:2506 -#: models.py:2615 models.py:3019 templates/ishtar/import_list.html:13 +#: models.py:1769 models.py:1785 models.py:2023 models.py:2301 models.py:2507 +#: models.py:2616 models.py:3016 templates/ishtar/import_list.html:13 #: templates/ishtar/sheet_organization.html:8 #: templates/ishtar/sheet_organization.html:21 msgid "Name" msgstr "" -#: forms_common.py:176 models.py:1722 models.py:2153 +#: forms_common.py:176 models.py:1722 models.py:2154 msgid "Organization type" msgstr "" @@ -265,8 +265,8 @@ msgstr "" msgid "Mobile phone" msgstr "" -#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2189 -#: models.py:2508 models.py:2954 templates/sheet_ope.html:85 +#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2192 +#: models.py:2509 models.py:2951 templates/sheet_ope.html:85 #: templates/sheet_ope.html.py:105 templates/sheet_ope.html:126 #: templates/ishtar/import_list.html:14 #: templates/ishtar/sheet_organization.html:23 @@ -290,7 +290,7 @@ msgstr "" msgid "Organization to merge" msgstr "" -#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2613 +#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2614 #: templates/ishtar/sheet_organization.html:22 msgid "Surname" msgstr "" @@ -308,17 +308,17 @@ msgstr "" msgid "Identity" msgstr "" -#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2154 -#: models.py:2607 models.py:2609 models.py:2951 templates/sheet_ope.html:104 +#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2155 +#: models.py:2608 models.py:2610 models.py:2948 templates/sheet_ope.html:104 #: templates/ishtar/blocks/window_tables/documents.html:7 msgid "Title" msgstr "" -#: forms_common.py:374 models.py:2611 +#: forms_common.py:374 models.py:2612 msgid "Salutation" msgstr "" -#: forms_common.py:380 models.py:2617 +#: forms_common.py:380 models.py:2618 msgid "Raw name" msgstr "" @@ -378,7 +378,7 @@ msgstr "" msgid "Account search" msgstr "" -#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2560 +#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2561 msgid "Person type" msgstr "" @@ -410,7 +410,7 @@ msgstr "" msgid "Send the new password by email?" msgstr "" -#: forms_common.py:636 forms_common.py:649 models.py:3034 +#: forms_common.py:636 forms_common.py:649 models.py:3031 msgid "Towns" msgstr "" @@ -426,7 +426,7 @@ msgstr "" msgid "Documentation informations" msgstr "" -#: forms_common.py:783 forms_common.py:831 models.py:2155 models.py:2926 +#: forms_common.py:783 forms_common.py:831 models.py:2156 models.py:2923 msgid "Source type" msgstr "" @@ -438,37 +438,37 @@ msgstr "" msgid "Internal reference" msgstr "" -#: forms_common.py:791 models.py:2965 +#: forms_common.py:791 models.py:2962 msgid "Numerical ressource (web address)" msgstr "" -#: forms_common.py:792 models.py:2967 +#: forms_common.py:792 models.py:2964 msgid "Receipt date" msgstr "" -#: forms_common.py:794 models.py:2323 models.py:2969 +#: forms_common.py:794 models.py:2327 models.py:2966 msgid "Creation date" msgstr "" -#: forms_common.py:797 models.py:2972 +#: forms_common.py:797 models.py:2969 msgid "Receipt date in documentation" msgstr "" #: forms_common.py:799 forms_common.py:835 models.py:381 models.py:698 -#: models.py:2049 models.py:2621 models.py:2979 +#: models.py:2050 models.py:2622 models.py:2976 msgid "Comment" msgstr "" #: forms_common.py:801 forms_common.py:834 models.py:1111 models.py:1789 -#: models.py:1976 models.py:2023 models.py:2978 templates/sheet_ope.html:128 +#: models.py:1977 models.py:2024 models.py:2975 templates/sheet_ope.html:128 msgid "Description" msgstr "" -#: forms_common.py:804 models.py:2980 +#: forms_common.py:804 models.py:2977 msgid "Additional information" msgstr "" -#: forms_common.py:806 forms_common.py:838 models.py:2982 +#: forms_common.py:806 forms_common.py:838 models.py:2979 msgid "Has a duplicate" msgstr "" @@ -483,7 +483,7 @@ msgid "" "p>" msgstr "" -#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2893 +#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2890 #: templates/ishtar/wizard/wizard_person_deletion.html:124 msgid "Author" msgstr "" @@ -496,7 +496,7 @@ msgstr "" msgid "Would you like to delete this documentation?" msgstr "" -#: forms_common.py:864 models.py:2156 models.py:2880 models.py:2890 +#: forms_common.py:864 models.py:2157 models.py:2877 models.py:2887 msgid "Author type" msgstr "" @@ -508,7 +508,7 @@ msgstr "" msgid "There are identical authors." msgstr "" -#: forms_common.py:901 models.py:2894 models.py:2961 +#: forms_common.py:901 models.py:2891 models.py:2958 #: templates/sheet_ope.html:106 #: templates/ishtar/blocks/window_tables/documents.html:9 msgid "Authors" @@ -526,7 +526,7 @@ msgstr "" msgid "Deletion" msgstr "" -#: ishtar_menu.py:39 models.py:1283 views.py:1632 +#: ishtar_menu.py:39 models.py:1283 views.py:1644 msgid "Global variables" msgstr "" @@ -554,19 +554,19 @@ msgstr "" msgid "Manual merge" msgstr "" -#: ishtar_menu.py:109 models.py:2334 +#: ishtar_menu.py:109 models.py:2335 msgid "Imports" msgstr "" -#: ishtar_menu.py:112 views.py:1640 +#: ishtar_menu.py:112 views.py:1652 msgid "New import" msgstr "" -#: ishtar_menu.py:116 views.py:1654 +#: ishtar_menu.py:116 views.py:1666 msgid "Current imports" msgstr "" -#: ishtar_menu.py:120 views.py:1693 +#: ishtar_menu.py:120 views.py:1705 msgid "Old imports" msgstr "" @@ -594,7 +594,7 @@ msgstr "" msgid "Available" msgstr "" -#: models.py:724 models.py:2095 +#: models.py:724 models.py:2096 msgid "Key" msgstr "" @@ -610,7 +610,7 @@ msgstr "" msgid "Creator" msgstr "" -#: models.py:971 models.py:2877 models.py:3045 models.py:3101 +#: models.py:971 models.py:2874 models.py:3042 models.py:3098 msgid "Order" msgstr "" @@ -813,7 +813,7 @@ msgstr "" msgid "Description of the variable" msgstr "" -#: models.py:1279 models.py:2096 +#: models.py:1279 models.py:2097 msgid "Value" msgstr "" @@ -849,7 +849,7 @@ msgstr "" msgid "Document templates" msgstr "" -#: models.py:1539 models.py:1549 models.py:2318 +#: models.py:1539 models.py:1549 models.py:2321 msgid "State" msgstr "" @@ -901,7 +901,7 @@ msgstr "" msgid "Importer - Models" msgstr "" -#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:25 +#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:34 msgid "Users" msgstr "" @@ -949,547 +949,547 @@ msgstr "" msgid "Importer - Default values" msgstr "" -#: models.py:1975 +#: models.py:1976 msgid "Column number" msgstr "" -#: models.py:1978 +#: models.py:1979 msgid "Required" msgstr "" -#: models.py:1980 +#: models.py:1981 msgid "Export field name" msgstr "" -#: models.py:1981 +#: models.py:1982 msgid "" "Fill this field if the field name is ambiguous for export. For instance: " "concatenated fields." msgstr "" -#: models.py:1986 +#: models.py:1987 msgid "Importer - Column" msgstr "" -#: models.py:1987 +#: models.py:1988 msgid "Importer - Columns" msgstr "" -#: models.py:2007 +#: models.py:2008 msgid "Field name" msgstr "" -#: models.py:2009 models.py:2043 +#: models.py:2010 models.py:2044 msgid "Force creation of new items" msgstr "" -#: models.py:2011 models.py:2045 +#: models.py:2012 models.py:2046 msgid "Concatenate with existing" msgstr "" -#: models.py:2013 models.py:2047 +#: models.py:2014 models.py:2048 msgid "Concatenate character" msgstr "" -#: models.py:2017 +#: models.py:2018 msgid "Importer - Duplicate field" msgstr "" -#: models.py:2018 +#: models.py:2019 msgid "Importer - Duplicate fields" msgstr "" -#: models.py:2025 +#: models.py:2026 msgid "Regular expression" msgstr "" -#: models.py:2028 +#: models.py:2029 msgid "Importer - Regular expression" msgstr "" -#: models.py:2029 +#: models.py:2030 msgid "Importer - Regular expressions" msgstr "" -#: models.py:2052 +#: models.py:2053 msgid "Importer - Target" msgstr "" -#: models.py:2053 +#: models.py:2054 msgid "Importer - Targets" msgstr "" -#: models.py:2077 views.py:568 +#: models.py:2078 views.py:568 msgid "True" msgstr "" -#: models.py:2078 views.py:570 +#: models.py:2079 views.py:570 msgid "False" msgstr "" -#: models.py:2097 +#: models.py:2098 msgid "Is set" msgstr "" -#: models.py:2104 +#: models.py:2105 msgid "Importer - Target key" msgstr "" -#: models.py:2105 +#: models.py:2106 msgid "Importer - Targets keys" msgstr "" -#: models.py:2157 models.py:2957 +#: models.py:2158 models.py:2954 msgid "Format" msgstr "" -#: models.py:2158 models.py:3049 +#: models.py:2159 models.py:3046 msgid "Operation type" msgstr "" -#: models.py:2159 +#: models.py:2160 msgid "Period" msgstr "" -#: models.py:2160 +#: models.py:2161 msgid "Report state" msgstr "" -#: models.py:2161 +#: models.py:2162 msgid "Remain type" msgstr "" -#: models.py:2162 +#: models.py:2163 msgid "Unit" msgstr "" -#: models.py:2163 +#: models.py:2165 msgid "Activity type" msgstr "" -#: models.py:2164 +#: models.py:2166 msgid "Material" msgstr "" -#: models.py:2166 +#: models.py:2168 msgid "Conservatory state" msgstr "" -#: models.py:2167 +#: models.py:2169 msgid "Container type" msgstr "" -#: models.py:2168 +#: models.py:2170 msgid "Preservation type" msgstr "" -#: models.py:2169 +#: models.py:2171 msgid "Object type" msgstr "" -#: models.py:2170 +#: models.py:2172 msgid "Integrity type" msgstr "" -#: models.py:2171 +#: models.py:2174 msgid "Remarkability type" msgstr "" -#: models.py:2172 +#: models.py:2175 msgid "Batch type" msgstr "" -#: models.py:2174 +#: models.py:2177 msgid "Identification type" msgstr "" -#: models.py:2176 +#: models.py:2179 msgid "Context record relation type" msgstr "" -#: models.py:2177 models.py:3107 +#: models.py:2180 models.py:3104 msgid "Spatial reference system" msgstr "" -#: models.py:2178 models.py:2935 +#: models.py:2181 models.py:2932 msgid "Support type" msgstr "" -#: models.py:2179 models.py:2572 +#: models.py:2182 models.py:2573 msgid "Title type" msgstr "" -#: models.py:2185 +#: models.py:2188 msgid "Integer" msgstr "" -#: models.py:2186 +#: models.py:2189 msgid "Float" msgstr "" -#: models.py:2187 +#: models.py:2190 msgid "String" msgstr "" -#: models.py:2188 templates/sheet_ope.html:86 +#: models.py:2191 templates/sheet_ope.html:86 msgid "Date" msgstr "" -#: models.py:2190 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 +#: models.py:2193 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 #: templates/ishtar/dashboards/dashboard_main_detail.html:126 msgid "Year" msgstr "" -#: models.py:2191 +#: models.py:2194 msgid "String to boolean" msgstr "" -#: models.py:2192 +#: models.py:2195 msgctxt "filesystem" msgid "File" msgstr "" -#: models.py:2193 +#: models.py:2196 msgid "Unknow type" msgstr "" -#: models.py:2209 +#: models.py:2212 msgid "4 digit year. e.g.: \"2015\"" msgstr "" -#: models.py:2210 +#: models.py:2213 msgid "4 digit year/month/day. e.g.: \"2015/02/04\"" msgstr "" -#: models.py:2211 +#: models.py:2214 msgid "Day/month/4 digit year. e.g.: \"04/02/2015\"" msgstr "" -#: models.py:2221 +#: models.py:2224 msgid "Options" msgstr "" -#: models.py:2223 +#: models.py:2226 msgid "Split character(s)" msgstr "" -#: models.py:2227 +#: models.py:2230 msgid "Importer - Formater type" msgstr "" -#: models.py:2228 +#: models.py:2231 msgid "Importer - Formater types" msgstr "" -#: models.py:2280 templates/ishtar/dashboards/dashboard_main_detail.html:63 +#: models.py:2283 templates/ishtar/dashboards/dashboard_main_detail.html:63 msgid "Created" msgstr "" -#: models.py:2281 +#: models.py:2284 msgid "Analyse in progress" msgstr "" -#: models.py:2282 +#: models.py:2285 msgid "Analysed" msgstr "" -#: models.py:2283 +#: models.py:2286 msgid "Import pending" msgstr "" -#: models.py:2284 +#: models.py:2287 msgid "Import in progress" msgstr "" -#: models.py:2285 +#: models.py:2288 msgid "Finished with errors" msgstr "" -#: models.py:2286 +#: models.py:2289 msgid "Finished" msgstr "" -#: models.py:2287 +#: models.py:2290 msgid "Archived" msgstr "" -#: models.py:2302 +#: models.py:2305 msgid "Imported file" msgstr "" -#: models.py:2304 +#: models.py:2307 msgid "Associated images (zip file)" msgstr "" -#: models.py:2306 +#: models.py:2309 msgid "Encoding" msgstr "" -#: models.py:2308 +#: models.py:2311 msgid "Skip lines" msgstr "" -#: models.py:2309 templates/ishtar/import_list.html:51 +#: models.py:2312 templates/ishtar/import_list.html:51 msgid "Error file" msgstr "" -#: models.py:2312 +#: models.py:2315 msgid "Result file" msgstr "" -#: models.py:2315 templates/ishtar/import_list.html:57 +#: models.py:2318 templates/ishtar/import_list.html:57 msgid "Match file" msgstr "" -#: models.py:2321 +#: models.py:2324 msgid "Conservative import" msgstr "" -#: models.py:2326 +#: models.py:2328 msgid "End date" msgstr "" -#: models.py:2328 +#: models.py:2331 msgid "Remaining seconds" msgstr "" -#: models.py:2333 +#: models.py:2334 msgid "Import" msgstr "" -#: models.py:2362 +#: models.py:2363 msgid "Analyse" msgstr "" -#: models.py:2364 models.py:2367 +#: models.py:2365 models.py:2368 msgid "Re-analyse" msgstr "" -#: models.py:2365 +#: models.py:2366 msgid "Launch import" msgstr "" -#: models.py:2368 +#: models.py:2369 msgid "Re-import" msgstr "" -#: models.py:2369 +#: models.py:2370 msgid "Archive" msgstr "" -#: models.py:2371 +#: models.py:2372 msgid "Unarchive" msgstr "" -#: models.py:2372 widgets.py:184 templates/ishtar/form_delete.html:11 +#: models.py:2373 widgets.py:184 templates/ishtar/form_delete.html:11 msgid "Delete" msgstr "" -#: models.py:2513 +#: models.py:2514 msgid "Organizations" msgstr "" -#: models.py:2515 +#: models.py:2516 msgid "Can view all Organizations" msgstr "" -#: models.py:2516 +#: models.py:2517 msgid "Can view own Organization" msgstr "" -#: models.py:2517 +#: models.py:2518 msgid "Can add own Organization" msgstr "" -#: models.py:2519 +#: models.py:2520 msgid "Can change own Organization" msgstr "" -#: models.py:2521 +#: models.py:2522 msgid "Can delete own Organization" msgstr "" -#: models.py:2556 +#: models.py:2557 msgid "Groups" msgstr "" -#: models.py:2561 +#: models.py:2562 msgid "Person types" msgstr "" -#: models.py:2573 +#: models.py:2574 msgid "Title types" msgstr "" -#: models.py:2582 +#: models.py:2583 msgid "Mr" msgstr "" -#: models.py:2583 +#: models.py:2584 msgid "Miss" msgstr "" -#: models.py:2584 +#: models.py:2585 msgid "Mr and Mrs" msgstr "" -#: models.py:2585 +#: models.py:2586 msgid "Mrs" msgstr "" -#: models.py:2586 +#: models.py:2587 msgid "Doctor" msgstr "" -#: models.py:2619 +#: models.py:2620 msgid "Contact type" msgstr "" -#: models.py:2622 models.py:2686 +#: models.py:2623 models.py:2687 msgid "Types" msgstr "" -#: models.py:2625 +#: models.py:2626 msgid "Is attached to" msgstr "" -#: models.py:2630 +#: models.py:2631 msgid "Persons" msgstr "" -#: models.py:2632 +#: models.py:2633 msgid "Can view all Persons" msgstr "" -#: models.py:2633 +#: models.py:2634 msgid "Can view own Person" msgstr "" -#: models.py:2634 +#: models.py:2635 msgid "Can add own Person" msgstr "" -#: models.py:2635 +#: models.py:2636 msgid "Can change own Person" msgstr "" -#: models.py:2636 +#: models.py:2637 msgid "Can delete own Person" msgstr "" -#: models.py:2825 +#: models.py:2826 msgid "Advanced shortcut menu" msgstr "" -#: models.py:2828 +#: models.py:2829 msgid "Ishtar user" msgstr "" -#: models.py:2829 +#: models.py:2830 msgid "Ishtar users" msgstr "" -#: models.py:2873 +#: models.py:2870 msgid "To modify the password use the form in Auth > User" msgstr "" -#: models.py:2881 +#: models.py:2878 msgid "Author types" msgstr "" -#: models.py:2898 +#: models.py:2895 msgid "Can view all Authors" msgstr "" -#: models.py:2900 +#: models.py:2897 msgid "Can view own Author" msgstr "" -#: models.py:2902 +#: models.py:2899 msgid "Can add own Author" msgstr "" -#: models.py:2904 +#: models.py:2901 msgid "Can change own Author" msgstr "" -#: models.py:2906 +#: models.py:2903 msgid "Can delete own Author" msgstr "" -#: models.py:2927 +#: models.py:2924 msgid "Source types" msgstr "" -#: models.py:2936 +#: models.py:2933 msgid "Support types" msgstr "" -#: models.py:2943 +#: models.py:2940 msgid "Format type" msgstr "" -#: models.py:2944 +#: models.py:2941 msgid "Format types" msgstr "" -#: models.py:2952 +#: models.py:2949 msgid "External ID" msgstr "" -#: models.py:2955 +#: models.py:2952 msgid "Support" msgstr "" -#: models.py:2959 +#: models.py:2956 msgid "Scale" msgstr "" -#: models.py:2973 +#: models.py:2970 msgid "Item number" msgstr "" -#: models.py:2974 +#: models.py:2971 msgid "Ref." msgstr "" -#: models.py:2977 +#: models.py:2974 msgid "Internal ref." msgstr "" -#: models.py:3020 +#: models.py:3017 msgid "Surface (m2)" msgstr "" -#: models.py:3021 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 +#: models.py:3018 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 msgid "Localisation" msgstr "" -#: models.py:3046 +#: models.py:3043 msgid "Is preventive" msgstr "" -#: models.py:3050 +#: models.py:3047 msgid "Operation types" msgstr "" -#: models.py:3079 +#: models.py:3076 msgid "Preventive" msgstr "" -#: models.py:3080 +#: models.py:3077 msgid "Research" msgstr "" -#: models.py:3103 +#: models.py:3100 msgid "Authority name" msgstr "" -#: models.py:3104 +#: models.py:3101 msgid "Authority SRID" msgstr "" -#: models.py:3108 +#: models.py:3105 msgid "Spatial reference systems" msgstr "" @@ -1566,47 +1566,55 @@ msgstr "" msgid "New %s" msgstr "" -#: views.py:1448 views.py:1498 +#: views.py:1448 views.py:1501 msgid "Archaeological files" msgstr "" -#: views.py:1449 views.py:1502 +#: views.py:1449 views.py:1505 msgid "Operations" msgstr "" -#: views.py:1451 views.py:1506 +#: views.py:1451 views.py:1509 msgid "Context records" msgstr "" -#: views.py:1453 views.py:1509 +#: views.py:1453 views.py:1512 msgid "Finds" msgstr "" -#: views.py:1707 templates/ishtar/import_list.html:47 +#: views.py:1455 views.py:1517 +msgid "Treatment requests" +msgstr "" + +#: views.py:1456 views.py:1521 +msgid "Treatments" +msgstr "" + +#: views.py:1719 templates/ishtar/import_list.html:47 msgid "Link unmatched items" msgstr "" -#: views.py:1722 +#: views.py:1734 msgid "Delete import" msgstr "" -#: views.py:1761 +#: views.py:1773 msgid "Merge persons" msgstr "" -#: views.py:1785 +#: views.py:1797 msgid "Select the main person" msgstr "" -#: views.py:1794 +#: views.py:1806 msgid "Merge organization" msgstr "" -#: views.py:1804 +#: views.py:1816 msgid "Select the main organization" msgstr "" -#: views.py:1844 views.py:1860 +#: views.py:1856 views.py:1872 msgid "Corporation manager" msgstr "" diff --git a/translations/de/ishtar_common.po b/translations/de/ishtar_common.po index 93bce7079..6c90a83cb 100644 --- a/translations/de/ishtar_common.po +++ b/translations/de/ishtar_common.po @@ -151,40 +151,40 @@ msgstr "" msgid "\"%(value)s\" not in %(values)s" msgstr "" -#: forms.py:73 +#: forms.py:74 msgid "Enter a valid name consisting of letters, spaces and hyphens." msgstr "" -#: forms.py:89 forms_common.py:626 +#: forms.py:90 forms_common.py:626 msgid "Confirm" msgstr "" -#: forms.py:94 +#: forms.py:95 msgid "Are you sure you want to delete?" msgstr "" -#: forms.py:103 +#: forms.py:129 msgid "There are identical items." msgstr "" -#: forms.py:141 forms.py:142 +#: forms.py:176 forms.py:177 msgid "Closing date" msgstr "" -#: forms.py:155 +#: forms.py:190 msgid "You should select an item." msgstr "" -#: forms.py:156 +#: forms.py:191 msgid "Add a new item" msgstr "" -#: forms.py:262 models.py:1482 +#: forms.py:297 models.py:1501 msgid "Template" msgstr "" #: forms_common.py:41 forms_common.py:59 forms_common.py:184 -#: forms_common.py:408 models.py:1548 models.py:2989 +#: forms_common.py:408 models.py:1567 models.py:3033 #: templates/blocks/JQueryAdvancedTown.html:19 #: templates/ishtar/sheet_organization.html:13 msgid "Town" @@ -200,8 +200,8 @@ msgid "" "french town Saint-Denis in the Seine-Saint-Denis department.

      " msgstr "" -#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2610 -#: models.py:2791 models.py:2856 templates/ishtar/sheet_person.html:4 +#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2629 +#: models.py:2822 models.py:2888 templates/ishtar/sheet_person.html:4 msgid "Person" msgstr "" @@ -212,64 +212,64 @@ msgid "" msgstr "" #: forms_common.py:172 forms_common.py:329 forms_common.py:453 -#: ishtar_menu.py:75 models.py:2493 models.py:2584 +#: ishtar_menu.py:75 models.py:2512 models.py:2603 #: templates/ishtar/sheet_organization.html:4 msgid "Organization" msgstr "" #: forms_common.py:175 forms_common.py:212 forms_common.py:324 -#: forms_common.py:378 forms_common.py:448 models.py:1103 models.py:1481 -#: models.py:1750 models.py:1766 models.py:2003 models.py:2279 models.py:2487 -#: models.py:2596 models.py:2975 templates/ishtar/import_list.html:13 +#: forms_common.py:378 forms_common.py:448 models.py:1109 models.py:1500 +#: models.py:1769 models.py:1785 models.py:2022 models.py:2298 models.py:2506 +#: models.py:2615 models.py:3019 templates/ishtar/import_list.html:13 #: templates/ishtar/sheet_organization.html:8 #: templates/ishtar/sheet_organization.html:21 msgid "Name" msgstr "Name" -#: forms_common.py:176 models.py:1703 models.py:2134 +#: forms_common.py:176 models.py:1722 models.py:2153 msgid "Organization type" msgstr "" -#: forms_common.py:178 forms_common.py:402 models.py:1543 +#: forms_common.py:178 forms_common.py:402 models.py:1562 #: templates/ishtar/sheet_organization.html:10 msgid "Address" msgstr "" -#: forms_common.py:180 forms_common.py:405 models.py:1544 +#: forms_common.py:180 forms_common.py:405 models.py:1563 #: templates/ishtar/sheet_organization.html:11 msgid "Address complement" msgstr "" -#: forms_common.py:182 forms_common.py:406 models.py:1546 +#: forms_common.py:182 forms_common.py:406 models.py:1565 #: templates/ishtar/sheet_organization.html:12 msgid "Postal code" msgstr "Postleitzahl" -#: forms_common.py:185 forms_common.py:409 models.py:1549 +#: forms_common.py:185 forms_common.py:409 models.py:1568 msgid "Country" msgstr "" #: forms_common.py:187 forms_common.py:326 forms_common.py:382 -#: forms_common.py:450 forms_common.py:574 models.py:1576 +#: forms_common.py:450 forms_common.py:574 models.py:1595 msgid "Email" msgstr "E-Mail-Adresse" -#: forms_common.py:188 forms_common.py:385 models.py:1561 +#: forms_common.py:188 forms_common.py:385 models.py:1580 #: templates/ishtar/sheet_organization.html:14 #: templates/ishtar/sheet_person.html:21 #: templates/ishtar/wizard/wizard_person.html:17 msgid "Phone" msgstr "" -#: forms_common.py:189 forms_common.py:394 models.py:1573 +#: forms_common.py:189 forms_common.py:394 models.py:1592 #: templates/ishtar/sheet_organization.html:15 #: templates/ishtar/sheet_person.html:39 #: templates/ishtar/wizard/wizard_person.html:35 msgid "Mobile phone" msgstr "" -#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2170 -#: models.py:2489 models.py:2910 templates/sheet_ope.html:85 +#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2189 +#: models.py:2508 models.py:2954 templates/sheet_ope.html:85 #: templates/sheet_ope.html.py:105 templates/sheet_ope.html:126 #: templates/ishtar/import_list.html:14 #: templates/ishtar/sheet_organization.html:23 @@ -293,7 +293,7 @@ msgstr "" msgid "Organization to merge" msgstr "" -#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2594 +#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2613 #: templates/ishtar/sheet_organization.html:22 msgid "Surname" msgstr "" @@ -311,25 +311,25 @@ msgstr "" msgid "Identity" msgstr "" -#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2135 -#: models.py:2588 models.py:2590 models.py:2907 templates/sheet_ope.html:104 +#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2154 +#: models.py:2607 models.py:2609 models.py:2951 templates/sheet_ope.html:104 #: templates/ishtar/blocks/window_tables/documents.html:7 msgid "Title" msgstr "" -#: forms_common.py:374 models.py:2592 +#: forms_common.py:374 models.py:2611 msgid "Salutation" msgstr "" -#: forms_common.py:380 models.py:2598 +#: forms_common.py:380 models.py:2617 msgid "Raw name" msgstr "" -#: forms_common.py:383 models.py:1562 +#: forms_common.py:383 models.py:1581 msgid "Phone description" msgstr "" -#: forms_common.py:386 models.py:1564 models.py:1566 +#: forms_common.py:386 models.py:1583 models.py:1585 msgid "Phone description 2" msgstr "" @@ -337,11 +337,11 @@ msgstr "" msgid "Phone 2" msgstr "" -#: forms_common.py:390 models.py:1570 +#: forms_common.py:390 models.py:1589 msgid "Phone description 3" msgstr "" -#: forms_common.py:392 models.py:1568 +#: forms_common.py:392 models.py:1587 msgid "Phone 3" msgstr "" @@ -349,23 +349,23 @@ msgstr "" msgid "Current organization" msgstr "" -#: forms_common.py:411 models.py:1551 +#: forms_common.py:411 models.py:1570 msgid "Other address: address" msgstr "" -#: forms_common.py:414 models.py:1554 +#: forms_common.py:414 models.py:1573 msgid "Other address: address complement" msgstr "" -#: forms_common.py:416 models.py:1555 +#: forms_common.py:416 models.py:1574 msgid "Other address: postal code" msgstr "" -#: forms_common.py:418 models.py:1557 +#: forms_common.py:418 models.py:1576 msgid "Other address: town" msgstr "" -#: forms_common.py:420 models.py:1559 +#: forms_common.py:420 models.py:1578 msgid "Other address: country" msgstr "" @@ -381,7 +381,7 @@ msgstr "Benutzername" msgid "Account search" msgstr "" -#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2541 +#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2560 msgid "Person type" msgstr "" @@ -389,7 +389,7 @@ msgstr "" msgid "Account" msgstr "" -#: forms_common.py:577 wizards.py:1339 +#: forms_common.py:577 wizards.py:1347 msgid "New password" msgstr "" @@ -413,7 +413,7 @@ msgstr "" msgid "Send the new password by email?" msgstr "" -#: forms_common.py:636 forms_common.py:649 models.py:2990 +#: forms_common.py:636 forms_common.py:649 models.py:3034 msgid "Towns" msgstr "" @@ -429,7 +429,7 @@ msgstr "" msgid "Documentation informations" msgstr "" -#: forms_common.py:783 forms_common.py:831 models.py:2136 models.py:2882 +#: forms_common.py:783 forms_common.py:831 models.py:2155 models.py:2926 msgid "Source type" msgstr "" @@ -441,37 +441,37 @@ msgstr "" msgid "Internal reference" msgstr "" -#: forms_common.py:791 models.py:2921 +#: forms_common.py:791 models.py:2965 msgid "Numerical ressource (web address)" msgstr "" -#: forms_common.py:792 models.py:2923 +#: forms_common.py:792 models.py:2967 msgid "Receipt date" msgstr "" -#: forms_common.py:794 models.py:2304 models.py:2925 +#: forms_common.py:794 models.py:2323 models.py:2969 msgid "Creation date" msgstr "Gründungsdatum" -#: forms_common.py:797 models.py:2928 +#: forms_common.py:797 models.py:2972 msgid "Receipt date in documentation" msgstr "" -#: forms_common.py:799 forms_common.py:835 models.py:379 models.py:696 -#: models.py:2030 models.py:2602 models.py:2935 +#: forms_common.py:799 forms_common.py:835 models.py:381 models.py:698 +#: models.py:2049 models.py:2621 models.py:2979 msgid "Comment" msgstr "" -#: forms_common.py:801 forms_common.py:834 models.py:1105 models.py:1770 -#: models.py:1957 models.py:2004 models.py:2934 templates/sheet_ope.html:128 +#: forms_common.py:801 forms_common.py:834 models.py:1111 models.py:1789 +#: models.py:1976 models.py:2023 models.py:2978 templates/sheet_ope.html:128 msgid "Description" msgstr "Beschreibung" -#: forms_common.py:804 models.py:2936 +#: forms_common.py:804 models.py:2980 msgid "Additional information" msgstr "" -#: forms_common.py:806 forms_common.py:838 models.py:2938 +#: forms_common.py:806 forms_common.py:838 models.py:2982 msgid "Has a duplicate" msgstr "" @@ -486,7 +486,7 @@ msgid "" "p>" msgstr "" -#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2861 +#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2893 #: templates/ishtar/wizard/wizard_person_deletion.html:124 msgid "Author" msgstr "" @@ -499,7 +499,7 @@ msgstr "" msgid "Would you like to delete this documentation?" msgstr "" -#: forms_common.py:864 models.py:2137 models.py:2848 models.py:2858 +#: forms_common.py:864 models.py:2156 models.py:2880 models.py:2890 msgid "Author type" msgstr "" @@ -511,7 +511,7 @@ msgstr "" msgid "There are identical authors." msgstr "" -#: forms_common.py:901 models.py:2862 models.py:2917 +#: forms_common.py:901 models.py:2894 models.py:2961 #: templates/sheet_ope.html:106 #: templates/ishtar/blocks/window_tables/documents.html:9 msgid "Authors" @@ -529,7 +529,7 @@ msgstr "" msgid "Deletion" msgstr "" -#: ishtar_menu.py:39 models.py:1277 views.py:1608 +#: ishtar_menu.py:39 models.py:1283 views.py:1632 msgid "Global variables" msgstr "" @@ -557,19 +557,19 @@ msgstr "" msgid "Manual merge" msgstr "" -#: ishtar_menu.py:109 models.py:2315 +#: ishtar_menu.py:109 models.py:2334 msgid "Imports" msgstr "" -#: ishtar_menu.py:112 views.py:1616 +#: ishtar_menu.py:112 views.py:1640 msgid "New import" msgstr "" -#: ishtar_menu.py:116 views.py:1630 +#: ishtar_menu.py:116 views.py:1654 msgid "Current imports" msgstr "" -#: ishtar_menu.py:120 views.py:1669 +#: ishtar_menu.py:120 views.py:1693 msgid "Old imports" msgstr "" @@ -577,258 +577,258 @@ msgstr "" msgid "Not a valid item." msgstr "" -#: models.py:199 +#: models.py:201 msgid "A selected item is not a valid item." msgstr "" -#: models.py:210 +#: models.py:212 msgid "This item already exists." msgstr "" -#: models.py:375 models.py:695 models.py:1516 models.py:1528 models.py:1954 +#: models.py:377 models.py:697 models.py:1535 models.py:1547 models.py:1973 msgid "Label" msgstr "" -#: models.py:377 +#: models.py:379 msgid "Textual ID" msgstr "" -#: models.py:380 models.py:698 models.py:1485 +#: models.py:382 models.py:700 models.py:1504 msgid "Available" msgstr "" -#: models.py:722 models.py:2076 +#: models.py:724 models.py:2095 msgid "Key" msgstr "" -#: models.py:728 +#: models.py:730 msgid "Specific key to an import" msgstr "" -#: models.py:820 +#: models.py:826 msgid "Last editor" msgstr "" -#: models.py:823 +#: models.py:829 msgid "Creator" msgstr "" -#: models.py:965 models.py:2846 models.py:3001 models.py:3057 +#: models.py:971 models.py:2877 models.py:3045 models.py:3101 msgid "Order" msgstr "" -#: models.py:966 +#: models.py:972 msgid "Symmetrical" msgstr "" -#: models.py:967 +#: models.py:973 msgid "Tiny label" msgstr "" -#: models.py:981 +#: models.py:987 msgid "Cannot have symmetrical and an inverse_relation" msgstr "" -#: models.py:1097 +#: models.py:1103 msgid "Euro" msgstr "" -#: models.py:1098 +#: models.py:1104 msgid "US dollar" msgstr "" -#: models.py:1104 models.py:1768 +#: models.py:1110 models.py:1787 msgid "Slug" msgstr "" -#: models.py:1107 +#: models.py:1113 msgid "CSS color code for base module" msgstr "" -#: models.py:1109 +#: models.py:1115 msgid "Files module" msgstr "" -#: models.py:1111 +#: models.py:1117 msgid "CSS color code for files module" msgstr "" -#: models.py:1113 +#: models.py:1119 msgid "Context records module" msgstr "" -#: models.py:1116 +#: models.py:1122 msgid "CSS color code for context record module" msgstr "" -#: models.py:1118 +#: models.py:1124 msgid "Finds module" msgstr "" -#: models.py:1119 +#: models.py:1125 msgid "Need context records module" msgstr "" -#: models.py:1121 +#: models.py:1127 msgid "CSS color code for find module" msgstr "" -#: models.py:1124 +#: models.py:1130 msgid "Warehouses module" msgstr "" -#: models.py:1125 +#: models.py:1131 msgid "Need finds module" msgstr "" -#: models.py:1127 +#: models.py:1133 msgid "CSS code for warehouse module" msgstr "" -#: models.py:1129 +#: models.py:1135 msgid "Mapping module" msgstr "" -#: models.py:1131 +#: models.py:1137 msgid "CSS code for mapping module" msgstr "" -#: models.py:1134 +#: models.py:1140 msgid "Home page" msgstr "" -#: models.py:1135 +#: models.py:1141 #, python-brace-format msgid "" "Homepage of Ishtar - if not defined a default homepage will appear. Use the " "markdown syntax. {random_image} can be used to display a random image." msgstr "" -#: models.py:1139 +#: models.py:1145 msgid "File external id" msgstr "" -#: models.py:1141 +#: models.py:1147 msgid "" "Formula to manage file external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1146 +#: models.py:1152 msgid "Parcel external id" msgstr "" -#: models.py:1149 +#: models.py:1155 msgid "" "Formula to manage parcel external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1154 +#: models.py:1160 msgid "Context record external id" msgstr "" -#: models.py:1156 +#: models.py:1162 msgid "" "Formula to manage context record external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1161 +#: models.py:1167 msgid "Base find external id" msgstr "" -#: models.py:1163 +#: models.py:1169 msgid "" "Formula to manage base find external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1168 +#: models.py:1174 msgid "Find external id" msgstr "" -#: models.py:1170 +#: models.py:1176 msgid "" "Formula to manage find external ID. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1175 +#: models.py:1181 msgid "Container external id" msgstr "" -#: models.py:1177 +#: models.py:1183 msgid "" "Formula to manage container external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1182 +#: models.py:1188 msgid "Warehouse external id" msgstr "" -#: models.py:1184 +#: models.py:1190 msgid "" "Formula to manage warehouse external ID. Change this with care. With " "incorrect formula, the application might be unusable and import of external " "data can be destructive." msgstr "" -#: models.py:1189 +#: models.py:1195 msgid "Raw name for person" msgstr "" -#: models.py:1191 +#: models.py:1197 msgid "" "Formula to manage person raw_name. Change this with care. With incorrect " "formula, the application might be unusable and import of external data can " "be destructive." msgstr "" -#: models.py:1195 +#: models.py:1201 msgid "Current active" msgstr "" -#: models.py:1196 +#: models.py:1202 msgid "Currency" msgstr "" -#: models.py:1200 +#: models.py:1206 msgid "Ishtar site profile" msgstr "" -#: models.py:1201 +#: models.py:1207 msgid "Ishtar site profiles" msgstr "" -#: models.py:1270 +#: models.py:1276 msgid "Variable name" msgstr "" -#: models.py:1271 +#: models.py:1277 msgid "Description of the variable" msgstr "" -#: models.py:1273 models.py:2077 +#: models.py:1279 models.py:2096 msgid "Value" msgstr "" -#: models.py:1276 +#: models.py:1282 msgid "Global variable" msgstr "" -#: models.py:1386 models.py:1416 +#: models.py:1405 models.py:1435 msgid "Total" msgstr "" -#: models.py:1393 models.py:1517 models.py:1529 +#: models.py:1412 models.py:1536 models.py:1548 #: templates/ishtar/sheet_person.html:24 #: templates/ishtar/dashboards/dashboard_main_detail.html:141 #: templates/ishtar/dashboards/dashboard_main_detail_users.html:26 @@ -836,643 +836,663 @@ msgstr "" msgid "Number" msgstr "" -#: models.py:1480 +#: models.py:1499 msgid "Administrative Act" msgstr "" -#: models.py:1484 +#: models.py:1503 msgid "Associated object" msgstr "" -#: models.py:1488 +#: models.py:1507 msgid "Document template" msgstr "" -#: models.py:1489 +#: models.py:1508 msgid "Document templates" msgstr "" -#: models.py:1520 models.py:1530 models.py:2299 +#: models.py:1539 models.py:1549 models.py:2318 msgid "State" msgstr "" -#: models.py:1534 templates/blocks/JQueryAdvancedTown.html:12 +#: models.py:1553 templates/blocks/JQueryAdvancedTown.html:12 msgid "Department" msgstr "" -#: models.py:1535 +#: models.py:1554 msgid "Departments" msgstr "" -#: models.py:1572 +#: models.py:1591 msgid "Raw phone" msgstr "" -#: models.py:1578 +#: models.py:1597 msgid "Alternative address is prefered" msgstr "" -#: models.py:1617 +#: models.py:1636 msgid "Tel: " msgstr "" -#: models.py:1621 +#: models.py:1640 msgid "Mobile: " msgstr "" -#: models.py:1625 +#: models.py:1644 msgid "Email: " msgstr "E-Mail-Adresse:" -#: models.py:1630 +#: models.py:1649 msgid "Merge key" msgstr "" -#: models.py:1704 +#: models.py:1723 msgid "Organization types" msgstr "" -#: models.py:1751 +#: models.py:1770 msgid "Class name" msgstr "" -#: models.py:1754 +#: models.py:1773 msgid "Importer - Model" msgstr "" -#: models.py:1755 +#: models.py:1774 msgid "Importer - Models" msgstr "" -#: models.py:1772 templates/ishtar/dashboards/dashboard_main.html:25 +#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:25 msgid "Users" msgstr "" -#: models.py:1775 +#: models.py:1794 msgid "Associated model" msgstr "" -#: models.py:1778 +#: models.py:1797 msgid "Models that can accept new items" msgstr "" -#: models.py:1779 +#: models.py:1798 msgid "Leave blank for no restrictions" msgstr "" -#: models.py:1781 +#: models.py:1800 msgid "Is template" msgstr "" -#: models.py:1782 +#: models.py:1801 msgid "Unicity keys (separator \";\")" msgstr "" -#: models.py:1786 +#: models.py:1805 msgid "Importer - Type" msgstr "" -#: models.py:1787 +#: models.py:1806 msgid "Importer - Types" msgstr "" -#: models.py:1886 +#: models.py:1905 msgid "Importer - Default" msgstr "" -#: models.py:1887 +#: models.py:1906 msgid "Importer - Defaults" msgstr "" -#: models.py:1922 +#: models.py:1941 msgid "Importer - Default value" msgstr "" -#: models.py:1923 +#: models.py:1942 msgid "Importer - Default values" msgstr "" -#: models.py:1956 +#: models.py:1975 msgid "Column number" msgstr "" -#: models.py:1959 +#: models.py:1978 msgid "Required" msgstr "" -#: models.py:1961 +#: models.py:1980 msgid "Export field name" msgstr "" -#: models.py:1962 +#: models.py:1981 msgid "" "Fill this field if the field name is ambiguous for export. For instance: " "concatenated fields." msgstr "" -#: models.py:1967 +#: models.py:1986 msgid "Importer - Column" msgstr "" -#: models.py:1968 +#: models.py:1987 msgid "Importer - Columns" msgstr "" -#: models.py:1988 +#: models.py:2007 msgid "Field name" msgstr "" -#: models.py:1990 models.py:2024 +#: models.py:2009 models.py:2043 msgid "Force creation of new items" msgstr "" -#: models.py:1992 models.py:2026 +#: models.py:2011 models.py:2045 msgid "Concatenate with existing" msgstr "" -#: models.py:1994 models.py:2028 +#: models.py:2013 models.py:2047 msgid "Concatenate character" msgstr "" -#: models.py:1998 +#: models.py:2017 msgid "Importer - Duplicate field" msgstr "" -#: models.py:1999 +#: models.py:2018 msgid "Importer - Duplicate fields" msgstr "" -#: models.py:2006 +#: models.py:2025 msgid "Regular expression" msgstr "" -#: models.py:2009 +#: models.py:2028 msgid "Importer - Regular expression" msgstr "" -#: models.py:2010 +#: models.py:2029 msgid "Importer - Regular expressions" msgstr "" -#: models.py:2033 +#: models.py:2052 msgid "Importer - Target" msgstr "" -#: models.py:2034 +#: models.py:2053 msgid "Importer - Targets" msgstr "" -#: models.py:2058 views.py:549 +#: models.py:2077 views.py:568 msgid "True" msgstr "" -#: models.py:2059 views.py:551 +#: models.py:2078 views.py:570 msgid "False" msgstr "" -#: models.py:2078 +#: models.py:2097 msgid "Is set" msgstr "" -#: models.py:2085 +#: models.py:2104 msgid "Importer - Target key" msgstr "" -#: models.py:2086 +#: models.py:2105 msgid "Importer - Targets keys" msgstr "" -#: models.py:2138 models.py:2913 +#: models.py:2157 models.py:2957 msgid "Format" msgstr "" -#: models.py:2139 models.py:3005 +#: models.py:2158 models.py:3049 msgid "Operation type" msgstr "" -#: models.py:2140 +#: models.py:2159 msgid "Period" msgstr "" -#: models.py:2141 +#: models.py:2160 msgid "Report state" msgstr "" -#: models.py:2142 +#: models.py:2161 msgid "Remain type" msgstr "" -#: models.py:2143 +#: models.py:2162 msgid "Unit" msgstr "" -#: models.py:2144 +#: models.py:2163 msgid "Activity type" msgstr "" -#: models.py:2145 +#: models.py:2164 msgid "Material" msgstr "" -#: models.py:2147 +#: models.py:2166 msgid "Conservatory state" msgstr "" -#: models.py:2148 +#: models.py:2167 msgid "Container type" msgstr "" -#: models.py:2149 +#: models.py:2168 msgid "Preservation type" msgstr "" -#: models.py:2150 +#: models.py:2169 msgid "Object type" msgstr "" -#: models.py:2151 +#: models.py:2170 msgid "Integrity type" msgstr "" -#: models.py:2152 +#: models.py:2171 msgid "Remarkability type" msgstr "" -#: models.py:2153 +#: models.py:2172 msgid "Batch type" msgstr "" -#: models.py:2155 +#: models.py:2174 msgid "Identification type" msgstr "" -#: models.py:2157 +#: models.py:2176 msgid "Context record relation type" msgstr "" -#: models.py:2158 models.py:3063 +#: models.py:2177 models.py:3107 msgid "Spatial reference system" msgstr "" -#: models.py:2159 models.py:2891 +#: models.py:2178 models.py:2935 msgid "Support type" msgstr "" -#: models.py:2160 models.py:2553 +#: models.py:2179 models.py:2572 msgid "Title type" msgstr "" -#: models.py:2166 +#: models.py:2185 msgid "Integer" msgstr "" -#: models.py:2167 +#: models.py:2186 msgid "Float" msgstr "" -#: models.py:2168 +#: models.py:2187 msgid "String" msgstr "" -#: models.py:2169 templates/sheet_ope.html:86 +#: models.py:2188 templates/sheet_ope.html:86 msgid "Date" msgstr "" -#: models.py:2171 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 +#: models.py:2190 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 #: templates/ishtar/dashboards/dashboard_main_detail.html:126 msgid "Year" msgstr "" -#: models.py:2172 +#: models.py:2191 msgid "String to boolean" msgstr "" -#: models.py:2173 +#: models.py:2192 msgctxt "filesystem" msgid "File" msgstr "" -#: models.py:2174 +#: models.py:2193 msgid "Unknow type" msgstr "" -#: models.py:2190 +#: models.py:2209 msgid "4 digit year. e.g.: \"2015\"" msgstr "" -#: models.py:2191 +#: models.py:2210 msgid "4 digit year/month/day. e.g.: \"2015/02/04\"" msgstr "" -#: models.py:2192 +#: models.py:2211 msgid "Day/month/4 digit year. e.g.: \"04/02/2015\"" msgstr "" -#: models.py:2202 +#: models.py:2221 msgid "Options" msgstr "" -#: models.py:2204 +#: models.py:2223 msgid "Split character(s)" msgstr "" -#: models.py:2208 +#: models.py:2227 msgid "Importer - Formater type" msgstr "" -#: models.py:2209 +#: models.py:2228 msgid "Importer - Formater types" msgstr "" -#: models.py:2261 templates/ishtar/dashboards/dashboard_main_detail.html:63 +#: models.py:2280 templates/ishtar/dashboards/dashboard_main_detail.html:63 msgid "Created" msgstr "" -#: models.py:2262 +#: models.py:2281 msgid "Analyse in progress" msgstr "" -#: models.py:2263 +#: models.py:2282 msgid "Analysed" msgstr "" -#: models.py:2264 +#: models.py:2283 msgid "Import pending" msgstr "" -#: models.py:2265 +#: models.py:2284 msgid "Import in progress" msgstr "" -#: models.py:2266 +#: models.py:2285 msgid "Finished with errors" msgstr "" -#: models.py:2267 +#: models.py:2286 msgid "Finished" msgstr "" -#: models.py:2268 +#: models.py:2287 msgid "Archived" msgstr "" -#: models.py:2283 +#: models.py:2302 msgid "Imported file" msgstr "" -#: models.py:2285 +#: models.py:2304 msgid "Associated images (zip file)" msgstr "" -#: models.py:2287 +#: models.py:2306 msgid "Encoding" msgstr "" -#: models.py:2289 +#: models.py:2308 msgid "Skip lines" msgstr "" -#: models.py:2290 templates/ishtar/import_list.html:51 +#: models.py:2309 templates/ishtar/import_list.html:51 msgid "Error file" msgstr "" -#: models.py:2293 +#: models.py:2312 msgid "Result file" msgstr "" -#: models.py:2296 templates/ishtar/import_list.html:57 +#: models.py:2315 templates/ishtar/import_list.html:57 msgid "Match file" msgstr "" -#: models.py:2302 +#: models.py:2321 msgid "Conservative import" msgstr "" -#: models.py:2307 +#: models.py:2326 msgid "End date" msgstr "" -#: models.py:2309 +#: models.py:2328 msgid "Remaining seconds" msgstr "" -#: models.py:2314 +#: models.py:2333 msgid "Import" msgstr "" -#: models.py:2343 +#: models.py:2362 msgid "Analyse" msgstr "" -#: models.py:2345 models.py:2348 +#: models.py:2364 models.py:2367 msgid "Re-analyse" msgstr "" -#: models.py:2346 +#: models.py:2365 msgid "Launch import" msgstr "" -#: models.py:2349 +#: models.py:2368 msgid "Re-import" msgstr "" -#: models.py:2350 +#: models.py:2369 msgid "Archive" msgstr "" -#: models.py:2352 +#: models.py:2371 msgid "Unarchive" msgstr "" -#: models.py:2353 widgets.py:130 templates/ishtar/form_delete.html:11 +#: models.py:2372 widgets.py:184 templates/ishtar/form_delete.html:11 msgid "Delete" msgstr "" -#: models.py:2494 +#: models.py:2513 msgid "Organizations" msgstr "" -#: models.py:2496 +#: models.py:2515 msgid "Can view all Organizations" msgstr "" -#: models.py:2497 +#: models.py:2516 msgid "Can view own Organization" msgstr "" -#: models.py:2498 +#: models.py:2517 msgid "Can add own Organization" msgstr "" -#: models.py:2500 +#: models.py:2519 msgid "Can change own Organization" msgstr "" -#: models.py:2502 +#: models.py:2521 msgid "Can delete own Organization" msgstr "" -#: models.py:2537 +#: models.py:2556 msgid "Groups" msgstr "" -#: models.py:2542 +#: models.py:2561 msgid "Person types" msgstr "" -#: models.py:2554 +#: models.py:2573 msgid "Title types" msgstr "" -#: models.py:2563 +#: models.py:2582 msgid "Mr" msgstr "" -#: models.py:2564 +#: models.py:2583 msgid "Miss" msgstr "" -#: models.py:2565 +#: models.py:2584 msgid "Mr and Mrs" msgstr "" -#: models.py:2566 +#: models.py:2585 msgid "Mrs" msgstr "" -#: models.py:2567 +#: models.py:2586 msgid "Doctor" msgstr "" -#: models.py:2600 +#: models.py:2619 msgid "Contact type" msgstr "" -#: models.py:2603 models.py:2667 +#: models.py:2622 models.py:2686 msgid "Types" msgstr "" -#: models.py:2606 +#: models.py:2625 msgid "Is attached to" msgstr "" -#: models.py:2611 +#: models.py:2630 msgid "Persons" msgstr "" -#: models.py:2613 +#: models.py:2632 msgid "Can view all Persons" msgstr "" -#: models.py:2614 +#: models.py:2633 msgid "Can view own Person" msgstr "" -#: models.py:2615 +#: models.py:2634 msgid "Can add own Person" msgstr "" -#: models.py:2616 +#: models.py:2635 msgid "Can change own Person" msgstr "" -#: models.py:2617 +#: models.py:2636 msgid "Can delete own Person" msgstr "" -#: models.py:2794 +#: models.py:2825 msgid "Advanced shortcut menu" msgstr "" -#: models.py:2797 +#: models.py:2828 msgid "Ishtar user" msgstr "" -#: models.py:2798 +#: models.py:2829 msgid "Ishtar users" msgstr "" -#: models.py:2842 +#: models.py:2873 msgid "To modify the password use the form in Auth > User" msgstr "" -#: models.py:2849 +#: models.py:2881 msgid "Author types" msgstr "" -#: models.py:2883 +#: models.py:2898 +msgid "Can view all Authors" +msgstr "" + +#: models.py:2900 +msgid "Can view own Author" +msgstr "" + +#: models.py:2902 +msgid "Can add own Author" +msgstr "" + +#: models.py:2904 +msgid "Can change own Author" +msgstr "" + +#: models.py:2906 +msgid "Can delete own Author" +msgstr "" + +#: models.py:2927 msgid "Source types" msgstr "" -#: models.py:2892 +#: models.py:2936 msgid "Support types" msgstr "" -#: models.py:2899 +#: models.py:2943 msgid "Format type" msgstr "" -#: models.py:2900 +#: models.py:2944 msgid "Format types" msgstr "" -#: models.py:2908 +#: models.py:2952 msgid "External ID" msgstr "" -#: models.py:2911 +#: models.py:2955 msgid "Support" msgstr "" -#: models.py:2915 +#: models.py:2959 msgid "Scale" msgstr "" -#: models.py:2929 +#: models.py:2973 msgid "Item number" msgstr "" -#: models.py:2930 +#: models.py:2974 msgid "Ref." msgstr "" -#: models.py:2933 +#: models.py:2977 msgid "Internal ref." msgstr "" -#: models.py:2976 +#: models.py:3020 msgid "Surface (m2)" msgstr "" -#: models.py:2977 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 +#: models.py:3021 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 msgid "Localisation" msgstr "Lokalisierung" -#: models.py:3002 +#: models.py:3046 msgid "Is preventive" msgstr "" -#: models.py:3006 +#: models.py:3050 msgid "Operation types" msgstr "" -#: models.py:3035 +#: models.py:3079 msgid "Preventive" msgstr "" -#: models.py:3036 +#: models.py:3080 msgid "Research" msgstr "" -#: models.py:3059 +#: models.py:3103 msgid "Authority name" msgstr "" -#: models.py:3060 +#: models.py:3104 msgid "Authority SRID" msgstr "" -#: models.py:3064 +#: models.py:3108 msgid "Spatial reference systems" msgstr "" @@ -1516,108 +1536,108 @@ msgstr "" msgid "Account deletion" msgstr "" -#: views.py:241 +#: views.py:251 msgid "Archaeological file" msgstr "" -#: views.py:242 +#: views.py:252 msgid "Operation" msgstr "" -#: views.py:244 +#: views.py:254 msgid "Context record" msgstr "" -#: views.py:246 +#: views.py:256 msgid "Find" msgstr "" -#: views.py:248 +#: views.py:258 msgid "Treatment request" msgstr "" -#: views.py:249 +#: views.py:259 msgid "Treatment" msgstr "" -#: views.py:1363 views.py:1406 +#: views.py:1387 views.py:1430 msgid "Operation not permitted." msgstr "" -#: views.py:1365 +#: views.py:1389 #, python-format msgid "New %s" msgstr "" -#: views.py:1424 views.py:1474 +#: views.py:1448 views.py:1498 msgid "Archaeological files" msgstr "" -#: views.py:1425 views.py:1478 +#: views.py:1449 views.py:1502 msgid "Operations" msgstr "" -#: views.py:1427 views.py:1482 +#: views.py:1451 views.py:1506 msgid "Context records" msgstr "" -#: views.py:1429 views.py:1485 +#: views.py:1453 views.py:1509 msgid "Finds" msgstr "" -#: views.py:1683 templates/ishtar/import_list.html:47 +#: views.py:1707 templates/ishtar/import_list.html:47 msgid "Link unmatched items" msgstr "" -#: views.py:1698 +#: views.py:1722 msgid "Delete import" msgstr "" -#: views.py:1737 +#: views.py:1761 msgid "Merge persons" msgstr "" -#: views.py:1761 +#: views.py:1785 msgid "Select the main person" msgstr "" -#: views.py:1770 +#: views.py:1794 msgid "Merge organization" msgstr "" -#: views.py:1780 +#: views.py:1804 msgid "Select the main organization" msgstr "" -#: views.py:1820 views.py:1836 +#: views.py:1844 views.py:1860 msgid "Corporation manager" msgstr "" -#: widgets.py:259 widgets.py:366 widgets.py:481 +#: widgets.py:313 widgets.py:420 widgets.py:535 msgid "Search..." msgstr "" -#: widgets.py:670 templatetags/window_tables.py:96 +#: widgets.py:724 templatetags/window_tables.py:96 msgid "No results" msgstr "" -#: widgets.py:671 templatetags/window_tables.py:97 +#: widgets.py:725 templatetags/window_tables.py:97 msgid "Loading..." msgstr "" -#: widgets.py:672 +#: widgets.py:726 msgid "Remove" msgstr "" -#: wizards.py:374 templates/ishtar/import_delete.html:21 +#: wizards.py:380 templates/ishtar/import_delete.html:21 msgid "Yes" msgstr "" -#: wizards.py:376 +#: wizards.py:382 msgid "No" msgstr "" -#: wizards.py:1396 +#: wizards.py:1404 #, python-format msgid "[%(app_name)s] Account creation/modification" msgstr "" @@ -1692,19 +1712,19 @@ msgstr "" msgid ":" msgstr "" -#: templates/base.html:120 +#: templates/base.html:123 msgid "Processing..." msgstr "" -#: templates/base.html:121 +#: templates/base.html:124 msgid "This can be long." msgstr "" -#: templates/base.html:122 +#: templates/base.html:125 msgid "Time to take a coffee?" msgstr "" -#: templates/base.html:123 +#: templates/base.html:126 msgid "Time to take another coffee?" msgstr "" diff --git a/translations/fr/archaeological_context_records.po b/translations/fr/archaeological_context_records.po index d9d2f3506..b4a9cde74 100644 --- a/translations/fr/archaeological_context_records.po +++ b/translations/fr/archaeological_context_records.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:21+0200\n" "PO-Revision-Date: 2017-03-21 06:22-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" @@ -512,29 +512,24 @@ msgid "Context record documentations" msgstr "Documentations des Unités d'Enregistrement" #: models.py:630 -#, fuzzy msgid "Can view all Context record sources" -msgstr "Peut voir toutes les Unités d'Enregistrement" +msgstr "" #: models.py:632 -#, fuzzy msgid "Can view own Context record source" -msgstr "Peut voir sa propre Unité d'Enregistrement" +msgstr "" #: models.py:634 -#, fuzzy msgid "Can add own Context record source" -msgstr "Peut ajouter sa propre Unité d'Enregistrement" +msgstr "" #: models.py:636 -#, fuzzy msgid "Can change own Context record source" -msgstr "Peut modifier sa propre Unité d'Enregistrement" +msgstr "" #: models.py:638 -#, fuzzy msgid "Can delete own Context record source" -msgstr "Peut supprimer sa propre Unité d'Enregistrement" +msgstr "" #: views.py:102 msgid "New context record" diff --git a/translations/fr/archaeological_files.po b/translations/fr/archaeological_files.po index 2b2804547..5776053b6 100644 --- a/translations/fr/archaeological_files.po +++ b/translations/fr/archaeological_files.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:21+0200\n" "PO-Revision-Date: 2017-02-05 05:21-0500\n" "Last-Translator: Valérie-Emma Leroux \n" "Language-Team: \n" diff --git a/translations/fr/archaeological_files_pdl.po b/translations/fr/archaeological_files_pdl.po index 6b026d72e..8143190bf 100644 --- a/translations/fr/archaeological_files_pdl.po +++ b/translations/fr/archaeological_files_pdl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:22+0200\n" "PO-Revision-Date: 2016-11-14 05:33-0500\n" "Last-Translator: Copied by Zanata \n" "Language-Team: \n" diff --git a/translations/fr/archaeological_finds.po b/translations/fr/archaeological_finds.po index 6446c4f38..0c526dfd5 100644 --- a/translations/fr/archaeological_finds.po +++ b/translations/fr/archaeological_finds.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:21+0200\n" "PO-Revision-Date: 2017-03-21 06:23-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" @@ -20,27 +20,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:93 forms.py:97 models_finds.py:518 wizards.py:64 +#: forms.py:93 forms.py:97 models_finds.py:519 wizards.py:64 msgid "Context record" msgstr "Unité d'Enregistrement" -#: forms.py:126 ishtar_menu.py:32 models_finds.py:682 models_finds.py:1113 -#: models_finds.py:1134 models_treatments.py:281 +#: forms.py:126 ishtar_menu.py:32 models_finds.py:683 models_finds.py:1114 +#: models_finds.py:1135 models_treatments.py:298 #: templates/ishtar/sheet_find.html:5 msgid "Find" msgstr "Mobilier" #: forms.py:140 forms.py:337 forms.py:605 models_finds.py:150 -#: models_finds.py:612 +#: models_finds.py:613 msgid "Free ID" msgstr "ID libre" -#: forms.py:142 models_finds.py:665 +#: forms.py:142 models_finds.py:666 msgid "Previous ID" msgstr "Identifiant précédent" #: forms.py:143 forms.py:368 forms_treatments.py:134 models_finds.py:154 -#: models_finds.py:613 models_treatments.py:127 +#: models_finds.py:614 models_treatments.py:128 msgid "Description" msgstr "Description" @@ -48,7 +48,7 @@ msgstr "Description" msgid "Batch/object" msgstr "Lot/objet" -#: forms.py:148 models_finds.py:642 +#: forms.py:148 models_finds.py:643 msgid "Is complete?" msgstr "Est complet ?" @@ -56,15 +56,15 @@ msgstr "Est complet ?" msgid "Material type" msgstr "Type de matériau" -#: forms.py:154 forms.py:362 models_finds.py:62 models_finds.py:617 +#: forms.py:154 forms.py:362 models_finds.py:62 models_finds.py:618 msgid "Conservatory state" msgstr "État sanitaire" -#: forms.py:157 models_finds.py:619 +#: forms.py:157 models_finds.py:620 msgid "Conservatory comment" msgstr "Commentaire relatif à la conservation" -#: forms.py:160 models_finds.py:112 models_finds.py:645 +#: forms.py:160 models_finds.py:112 models_finds.py:646 msgid "Object types" msgstr "Types d'objet" @@ -72,11 +72,11 @@ msgstr "Types d'objet" msgid "Preservation type" msgstr "Type de conservation" -#: forms.py:167 forms.py:364 models_finds.py:647 +#: forms.py:167 forms.py:364 models_finds.py:648 msgid "Integrity / interest" msgstr "Intégrité / intérêt" -#: forms.py:170 forms.py:366 models_finds.py:650 +#: forms.py:170 forms.py:366 models_finds.py:651 msgid "Remarkability" msgstr "Remarquabilité" @@ -112,69 +112,69 @@ msgstr "Erreur estimée pour Y" msgid "Estimated error for Z" msgstr "Erreur estimée pour Z" -#: forms.py:188 models_finds.py:654 +#: forms.py:188 models_finds.py:655 msgid "Length (cm)" msgstr "Longueur (cm)" -#: forms.py:189 models_finds.py:655 +#: forms.py:189 models_finds.py:656 msgid "Width (cm)" msgstr "Largeur (cm)" -#: forms.py:190 models_finds.py:656 +#: forms.py:190 models_finds.py:657 msgid "Height (cm)" msgstr "Hauteur (cm)" -#: forms.py:191 models_finds.py:657 +#: forms.py:191 models_finds.py:658 msgid "Diameter (cm)" msgstr "Diamètre (cm)" -#: forms.py:192 models_finds.py:658 +#: forms.py:192 models_finds.py:659 msgid "Thickness (cm)" msgstr "Épaisseur (cm)" -#: forms.py:193 forms.py:610 models_finds.py:624 +#: forms.py:193 forms.py:610 models_finds.py:625 msgid "Volume (l)" msgstr "Volume (l)" -#: forms.py:194 forms.py:611 models_finds.py:625 +#: forms.py:194 forms.py:611 models_finds.py:626 msgid "Weight (g)" msgstr "Poids (g)" -#: forms.py:196 models_finds.py:659 +#: forms.py:196 models_finds.py:660 msgid "Dimensions comment" msgstr "Commentaire concernant les dimensions" -#: forms.py:197 forms.py:612 models_finds.py:628 +#: forms.py:197 forms.py:612 models_finds.py:629 msgid "Find number" msgstr "Mobilier (en nombre)" -#: forms.py:199 models_finds.py:653 +#: forms.py:199 models_finds.py:654 msgid "Minimum number of individuals (MNI)" msgstr "Nombre minimum d'individus (NMI)" -#: forms.py:200 models_finds.py:661 +#: forms.py:200 models_finds.py:662 msgid "Mark" msgstr "Marque" -#: forms.py:201 forms.py:371 models_finds.py:667 +#: forms.py:201 forms.py:371 models_finds.py:668 msgid "Check" msgstr "Vérification" -#: forms.py:203 models_finds.py:669 +#: forms.py:203 models_finds.py:670 msgid "Check date" msgstr "Date de vérification" #: forms.py:204 forms_treatments.py:132 forms_treatments.py:434 -#: models_finds.py:155 models_finds.py:662 models_treatments.py:126 -#: models_treatments.py:494 +#: models_finds.py:155 models_finds.py:663 models_treatments.py:127 +#: models_treatments.py:511 msgid "Comment" msgstr "Commentaires" -#: forms.py:207 models_finds.py:663 +#: forms.py:207 models_finds.py:664 msgid "Comment on dating" msgstr "Commentaire général sur les datations" -#: forms.py:208 models_finds.py:671 +#: forms.py:208 models_finds.py:672 msgid "Estimated value" msgstr "Valeur estimée" @@ -203,7 +203,7 @@ msgstr "" "Les coordonnées ne sont pas pertinentes pour le système de référence " "spatiale utilisé : {}." -#: forms.py:300 forms.py:331 models_finds.py:636 +#: forms.py:300 forms.py:331 models_finds.py:637 msgid "Dating" msgstr "Datation" @@ -212,12 +212,12 @@ msgid "Period" msgstr "Période" #: forms.py:306 forms_treatments.py:138 forms_treatments.py:436 -#: models_finds.py:1139 models_treatments.py:129 models_treatments.py:292 +#: models_finds.py:1140 models_treatments.py:130 models_treatments.py:309 #: templates/ishtar/sheet_find.html:91 templates/ishtar/sheet_find.html:133 msgid "Start date" msgstr "Date de début" -#: forms.py:308 models_finds.py:1140 models_treatments.py:293 +#: forms.py:308 models_finds.py:1141 models_treatments.py:310 #: templates/ishtar/sheet_find.html:92 templates/ishtar/sheet_find.html:134 msgid "End date" msgstr "Date de fin" @@ -244,7 +244,7 @@ msgstr "ID complet" #: forms.py:340 forms_treatments.py:54 forms_treatments.py:96 #: forms_treatments.py:284 forms_treatments.py:356 forms_treatments.py:406 -#: forms_treatments.py:489 models_treatments.py:102 models_treatments.py:466 +#: forms_treatments.py:489 models_treatments.py:103 models_treatments.py:483 msgid "Year" msgstr "Année" @@ -296,7 +296,7 @@ msgstr "Rechercher un mobilier" msgid "Upstream finds" msgstr "Mobilier amont" -#: forms.py:487 models_finds.py:683 +#: forms.py:487 models_finds.py:684 msgid "Finds" msgstr "Mobilier" @@ -320,7 +320,7 @@ msgstr "Mobiliers résultants" msgid "Would you like to delete this find?" msgstr "Voulez-vous supprimer ce mobilier ?" -#: forms.py:631 models_treatments.py:90 +#: forms.py:631 models_treatments.py:91 msgid "Upstream find" msgstr "Mobilier amont" @@ -368,25 +368,25 @@ msgstr "Un autre panier existant utilise déjà ce nom." msgid "Basket" msgstr "Panier" -#: forms_treatments.py:52 forms_treatments.py:92 models_treatments.py:98 +#: forms_treatments.py:52 forms_treatments.py:92 models_treatments.py:99 #: templates/ishtar/sheet_find.html:85 templates/ishtar/sheet_find.html:127 msgid "Label" msgstr "Intitulé" -#: forms_treatments.py:53 forms_treatments.py:95 models_treatments.py:100 +#: forms_treatments.py:53 forms_treatments.py:95 models_treatments.py:101 msgid "Other ref." msgstr "Autre réf." #: forms_treatments.py:55 forms_treatments.py:237 forms_treatments.py:285 #: forms_treatments.py:348 forms_treatments.py:357 forms_treatments.py:459 -#: forms_treatments.py:490 forms_treatments.py:557 models_treatments.py:104 -#: models_treatments.py:468 +#: forms_treatments.py:490 forms_treatments.py:557 models_treatments.py:105 +#: models_treatments.py:485 msgid "Index" msgstr "Index" #: forms_treatments.py:56 forms_treatments.py:101 forms_treatments.py:301 -#: forms_treatments.py:578 models_treatments.py:56 models_treatments.py:109 -#: models_treatments.py:291 +#: forms_treatments.py:578 models_treatments.py:56 models_treatments.py:110 +#: models_treatments.py:308 msgid "Treatment type" msgstr "Type de traitement" @@ -398,7 +398,7 @@ msgstr "Rechercher un traitement" msgid "Base treatment" msgstr "Traitement de base" -#: forms_treatments.py:103 models_treatments.py:92 models_treatments.py:111 +#: forms_treatments.py:103 models_treatments.py:93 models_treatments.py:112 #: templates/ishtar/sheet_find.html:87 templates/ishtar/sheet_find.html:129 msgid "State" msgstr "État" @@ -407,15 +407,15 @@ msgstr "État" msgid "Target" msgstr "Destination" -#: forms_treatments.py:107 forms_treatments.py:417 models_treatments.py:119 +#: forms_treatments.py:107 forms_treatments.py:417 models_treatments.py:120 msgid "Responsible" msgstr "Responsable" -#: forms_treatments.py:113 models_treatments.py:122 +#: forms_treatments.py:113 models_treatments.py:123 msgid "Organization" msgstr "Organisation" -#: forms_treatments.py:119 models_treatments.py:114 models_treatments.py:294 +#: forms_treatments.py:119 models_treatments.py:115 models_treatments.py:311 msgid "Location" msgstr "Lieu" @@ -427,12 +427,12 @@ msgstr "Contenant (pertinent dans le cadre du conditionnement)" msgid "External ref." msgstr "Réf. externe" -#: forms_treatments.py:136 models_treatments.py:128 +#: forms_treatments.py:136 models_treatments.py:129 msgid "Goal" msgstr "But" -#: forms_treatments.py:140 forms_treatments.py:442 models_treatments.py:130 -#: models_treatments.py:488 +#: forms_treatments.py:140 forms_treatments.py:442 models_treatments.py:131 +#: models_treatments.py:505 msgid "Closing date" msgstr "Date de clôture" @@ -481,12 +481,12 @@ msgstr "Un responsable ou une organisation doit être défini." msgid "Another treatment with this index exists for {}." msgstr "Un autre traitement avec cet index existe pour {}." -#: forms_treatments.py:262 models_treatments.py:107 +#: forms_treatments.py:262 models_treatments.py:108 msgid "Associated request" msgstr "Demande associée" #: forms_treatments.py:266 forms_treatments.py:397 ishtar_menu.py:108 -#: models_treatments.py:499 models_treatments.py:527 models_treatments.py:602 +#: models_treatments.py:516 models_treatments.py:544 models_treatments.py:619 #: wizards.py:187 templates/ishtar/sheet_treatmentfile.html:5 msgid "Treatment request" msgstr "Demande de traitement" @@ -545,7 +545,7 @@ msgstr "Référence interne du traitement" msgid "Modified by" msgstr "Modifié par" -#: forms_treatments.py:354 forms_treatments.py:404 models_treatments.py:473 +#: forms_treatments.py:354 forms_treatments.py:404 models_treatments.py:490 msgid "Name" msgstr "Nom" @@ -553,7 +553,7 @@ msgstr "Nom" msgid "Internal ref." msgstr "Réf. interne" -#: forms_treatments.py:358 forms_treatments.py:415 models_treatments.py:91 +#: forms_treatments.py:358 forms_treatments.py:415 models_treatments.py:92 #: templates/ishtar/sheet_find.html:86 templates/ishtar/sheet_find.html:128 #: templates/ishtar/sheet_find.html:228 msgid "Type" @@ -563,12 +563,12 @@ msgstr "Type" msgid "In charge" msgstr "Responsable" -#: forms_treatments.py:366 forms_treatments.py:423 models_treatments.py:482 +#: forms_treatments.py:366 forms_treatments.py:423 models_treatments.py:499 #: templates/ishtar/sheet_treatmentfile.html:31 msgid "Applicant" msgstr "Demandeur" -#: forms_treatments.py:372 forms_treatments.py:429 models_treatments.py:486 +#: forms_treatments.py:372 forms_treatments.py:429 models_treatments.py:503 #: templates/ishtar/sheet_treatmentfile.html:38 msgid "Applicant organisation" msgstr "Organisation du demandeur" @@ -577,7 +577,7 @@ msgstr "Organisation du demandeur" msgid "Treatment request search" msgstr "Rechercher une demande de traitement" -#: forms_treatments.py:439 models_treatments.py:492 +#: forms_treatments.py:439 models_treatments.py:509 msgid "Reception date" msgstr "Date de réception" @@ -609,8 +609,8 @@ msgstr "Index de la demande de traitement" msgid "Treatment request internal reference" msgstr "Référence interne de la demande de traitement" -#: forms_treatments.py:508 forms_treatments.py:604 models_treatments.py:451 -#: models_treatments.py:475 +#: forms_treatments.py:508 forms_treatments.py:604 models_treatments.py:468 +#: models_treatments.py:492 msgid "Treatment request type" msgstr "Type de demande de traitement" @@ -652,7 +652,7 @@ msgstr "Gestion des éléments" msgid "Documentation" msgstr "Documentation" -#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1136 +#: ishtar_menu.py:133 ishtar_menu.py:214 models_finds.py:1137 msgid "Administrative act" msgstr "Acte administratif" @@ -665,8 +665,8 @@ msgstr "Documents" msgid "Source" msgstr "Documentation" -#: ishtar_menu.py:185 models_treatments.py:147 models_treatments.py:283 -#: models_treatments.py:573 models_treatments.py:576 +#: ishtar_menu.py:185 models_treatments.py:148 models_treatments.py:300 +#: models_treatments.py:590 models_treatments.py:593 #: templates/ishtar/sheet_treatment.html:5 msgid "Treatment" msgstr "Traitement" @@ -687,7 +687,7 @@ msgstr "Recommandation" msgid "Parent material" msgstr "Matériau parent" -#: models_finds.py:51 models_finds.py:538 models_finds.py:615 +#: models_finds.py:51 models_finds.py:539 models_finds.py:616 msgid "Material types" msgstr "Types de matériau" @@ -719,8 +719,8 @@ msgstr "Type de remarquabilité" msgid "Remarkability types" msgstr "Types de remarquabilité" -#: models_finds.py:97 models_finds.py:611 models_treatments.py:40 -#: models_treatments.py:287 +#: models_finds.py:97 models_finds.py:612 models_treatments.py:40 +#: models_treatments.py:304 msgid "Order" msgstr "Ordre" @@ -736,12 +736,12 @@ msgstr "Types de lot" msgid "Parent" msgstr "Parent" -#: models_finds.py:151 models_finds.py:608 models_treatments.py:124 -#: models_treatments.py:471 +#: models_finds.py:151 models_finds.py:609 models_treatments.py:125 +#: models_treatments.py:488 msgid "External ID" msgstr "ID externe" -#: models_finds.py:153 models_finds.py:610 +#: models_finds.py:153 models_finds.py:611 msgid "External ID is set automatically" msgstr "L'identifiant externe est configuré automatiquement" @@ -781,7 +781,7 @@ msgstr "Polygon" msgid "Cached value - do not edit" msgstr "Valeur en cache - ne pas éditer" -#: models_finds.py:197 models_finds.py:606 +#: models_finds.py:197 models_finds.py:607 msgid "Base find" msgstr "Mobilier de base" @@ -829,154 +829,149 @@ msgstr "Vérifié mais incorrect" msgid "Checked and correct" msgstr "Vérifié et correct" -#: models_finds.py:519 +#: models_finds.py:520 msgid "Base find - Short ID" msgstr "Mobilier de base - ID court" -#: models_finds.py:520 +#: models_finds.py:521 msgid "Base find - Complete ID" msgstr "Mobilier de base - ID complet" -#: models_finds.py:522 +#: models_finds.py:523 msgid "Operation (code)" msgstr "Opération (code)" -#: models_finds.py:524 +#: models_finds.py:525 msgid "Town" msgstr "Ville" -#: models_finds.py:526 +#: models_finds.py:527 msgid "Operation (name)" msgstr "Opération (nom)" -#: models_finds.py:528 +#: models_finds.py:529 msgid "Parcel" msgstr "Parcelle" -#: models_finds.py:529 +#: models_finds.py:530 msgid "Batch" msgstr "Lot" -#: models_finds.py:530 +#: models_finds.py:531 msgid "Base find - Comment" msgstr "Mobilier de base - Commentaires" -#: models_finds.py:531 +#: models_finds.py:532 msgid "Base find - Description" msgstr "Mobilier de base - Description" -#: models_finds.py:532 +#: models_finds.py:533 msgid "Base find - Topographic localisation" msgstr "Mobilier de base - Localisation topographique" -#: models_finds.py:534 +#: models_finds.py:535 msgid "Base find - Special interest" msgstr "Mobilier de base - Intérêt spécifique" -#: models_finds.py:535 +#: models_finds.py:536 msgid "Base find - Discovery date" msgstr "Mobilier de base - Date de découverte" -#: models_finds.py:536 models_finds.py:639 models_treatments.py:131 -#: models_treatments.py:295 templates/ishtar/sheet_find.html:90 +#: models_finds.py:537 models_finds.py:640 models_treatments.py:132 +#: models_treatments.py:312 templates/ishtar/sheet_find.html:90 #: templates/ishtar/sheet_find.html:132 msgid "Container" msgstr "Contenant" -#: models_finds.py:537 +#: models_finds.py:538 msgid "Periods" msgstr "Périodes" -#: models_finds.py:622 +#: models_finds.py:623 msgid "Type of preservation to consider" msgstr "Mesures de conservation à envisager" -#: models_finds.py:626 +#: models_finds.py:627 msgid "Weight unit" msgstr "Unité de poids" -#: models_finds.py:632 templates/ishtar/sheet_find.html:78 +#: models_finds.py:633 templates/ishtar/sheet_find.html:78 msgid "Upstream treatment" msgstr "Traitement amont" -#: models_finds.py:635 templates/ishtar/sheet_find.html:120 +#: models_finds.py:636 templates/ishtar/sheet_find.html:120 msgid "Downstream treatment" msgstr "Traitement aval" -#: models_finds.py:674 +#: models_finds.py:675 msgid "Collection" msgstr "Collection" -#: models_finds.py:676 models_treatments.py:143 models_treatments.py:495 +#: models_finds.py:677 models_treatments.py:144 models_treatments.py:512 msgid "Cached name" msgstr "Nom en cache" -#: models_finds.py:685 +#: models_finds.py:686 msgid "Can view all Finds" msgstr "Peut voir tout le Mobilier" -#: models_finds.py:686 +#: models_finds.py:687 msgid "Can view own Find" msgstr "Peut voir son propre Mobilier" -#: models_finds.py:687 +#: models_finds.py:688 msgid "Can add own Find" msgstr "Peut ajouter son propre Mobilier" -#: models_finds.py:688 +#: models_finds.py:689 msgid "Can change own Find" msgstr "Peut modifier son propre Mobilier" -#: models_finds.py:689 +#: models_finds.py:690 msgid "Can delete own Find" msgstr "Peut supprimer son propre Mobilier" -#: models_finds.py:695 +#: models_finds.py:696 msgid "FIND" msgstr "MOBILIER" -#: models_finds.py:1099 +#: models_finds.py:1100 msgid "Find documentation" msgstr "Documentation de mobilier" -#: models_finds.py:1100 +#: models_finds.py:1101 msgid "Find documentations" msgstr "Documentations de mobilier" -#: models_finds.py:1103 -#, fuzzy +#: models_finds.py:1104 msgid "Can view all Find sources" -msgstr "Peut voir tout le Mobilier" +msgstr "" -#: models_finds.py:1105 -#, fuzzy +#: models_finds.py:1106 msgid "Can view own Find source" -msgstr "Peut voir son propre Mobilier" +msgstr "" -#: models_finds.py:1107 -#, fuzzy +#: models_finds.py:1108 msgid "Can add own Find source" -msgstr "Peut ajouter son propre Mobilier" +msgstr "" -#: models_finds.py:1109 -#, fuzzy +#: models_finds.py:1110 msgid "Can change own Find source" -msgstr "Peut modifier son propre Mobilier" +msgstr "" -#: models_finds.py:1111 -#, fuzzy +#: models_finds.py:1112 msgid "Can delete own Find source" -msgstr "Peut supprimer son propre Mobilier" +msgstr "" -#: models_finds.py:1137 +#: models_finds.py:1138 msgid "Person" msgstr "Individu" -#: models_finds.py:1143 +#: models_finds.py:1144 msgid "Property" msgstr "Propriété" -#: models_finds.py:1144 +#: models_finds.py:1145 msgid "Properties" msgstr "Propriétés" @@ -1020,217 +1015,201 @@ msgstr "Type d'état de traitement" msgid "Treatment state types" msgstr "Types d'état de traitement" -#: models_treatments.py:89 +#: models_treatments.py:90 msgid "Downstream find" msgstr "Mobilier aval" -#: models_treatments.py:116 +#: models_treatments.py:117 msgid "Location where the treatment is done. Target warehouse for a move." msgstr "" "Endroit où le traitement est réalisé. Renseignez le dépôt de destination " "pour un déplacement." -#: models_treatments.py:133 +#: models_treatments.py:134 msgid "Estimated cost" msgstr "Coût estimé" -#: models_treatments.py:135 +#: models_treatments.py:136 msgid "Quoted cost" msgstr "Coût devisé" -#: models_treatments.py:137 +#: models_treatments.py:138 msgid "Realized cost" msgstr "Coût réalisé" -#: models_treatments.py:139 +#: models_treatments.py:140 msgid "Insurance cost" msgstr "Coût d'assurance" -#: models_treatments.py:141 +#: models_treatments.py:142 msgid "Target a basket" msgstr "Appliquer à un panier" -#: models_treatments.py:148 templates/ishtar/sheet_find.html:75 +#: models_treatments.py:149 templates/ishtar/sheet_find.html:75 #: templates/ishtar/sheet_treatmentfile.html:46 msgid "Treatments" msgstr "Traitements" -#: models_treatments.py:151 +#: models_treatments.py:152 msgid "Can view all Treatments" msgstr "Peut voir tous les Traitements" -#: models_treatments.py:152 +#: models_treatments.py:153 msgid "Can view own Treatment" msgstr "Peut voir son propre Traitement" -#: models_treatments.py:153 +#: models_treatments.py:154 msgid "Can add own Treatment" msgstr "Peut ajouter son propre Traitement" -#: models_treatments.py:154 +#: models_treatments.py:155 msgid "Can change own Treatment" msgstr "Peut modifier son propre Traitement" -#: models_treatments.py:155 +#: models_treatments.py:156 msgid "Can delete own Treatment" msgstr "Peut supprimer son propre Traitement" -#: models_treatments.py:167 +#: models_treatments.py:168 msgid "TREATMENT" msgstr "TRAITEMENT" -#: models_treatments.py:296 templates/ishtar/sheet_find.html:89 +#: models_treatments.py:313 templates/ishtar/sheet_find.html:89 #: templates/ishtar/sheet_find.html:131 msgid "Doer" msgstr "Opérateur" -#: models_treatments.py:297 models_treatments.py:298 +#: models_treatments.py:314 models_treatments.py:315 msgid "Related finds" msgstr "Mobilier associé" -#: models_treatments.py:440 +#: models_treatments.py:457 msgid "Is upstream" msgstr "Est en amont" -#: models_treatments.py:452 +#: models_treatments.py:469 msgid "Treatment request types" msgstr "Types de demande de traitement" -#: models_treatments.py:469 +#: models_treatments.py:486 msgid "Internal reference" msgstr "Référence interne" -#: models_treatments.py:478 +#: models_treatments.py:495 msgid "Person in charge" msgstr "Personne responsable" -#: models_treatments.py:490 +#: models_treatments.py:507 msgid "Creation date" msgstr "Date de création" -#: models_treatments.py:500 +#: models_treatments.py:517 msgid "Treatment requests" msgstr "Demandes de traitement" -#: models_treatments.py:504 +#: models_treatments.py:521 msgid "Can view all Treatment requests" msgstr "Peut voir toutes les Demandes de traitement" -#: models_treatments.py:506 -#, fuzzy +#: models_treatments.py:523 msgid "Can add Treatment request" -msgstr "Peut ajouter sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:508 -#, fuzzy +#: models_treatments.py:525 msgid "Can change Treatment request" -msgstr "Peut modifier sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:510 -#, fuzzy +#: models_treatments.py:527 msgid "Can delete Treatment request" -msgstr "Peut supprimer sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:512 +#: models_treatments.py:529 msgid "Can view own Treatment request" msgstr "Peut voir sa propre Demande de traitement" -#: models_treatments.py:514 +#: models_treatments.py:531 msgid "Can add own Treatment request" msgstr "Peut ajouter sa propre Demande de traitement" -#: models_treatments.py:516 +#: models_treatments.py:533 msgid "Can change own Treatment request" msgstr "Peut modifier sa propre Demande de traitement" -#: models_treatments.py:518 +#: models_treatments.py:535 msgid "Can delete own Treatment request" msgstr "Peut supprimer sa propre Demande de traitement" -#: models_treatments.py:580 +#: models_treatments.py:597 msgid "Treatment documentation" msgstr "Documentation de traitement" -#: models_treatments.py:581 +#: models_treatments.py:598 msgid "Treament documentations" msgstr "Documentations de traitement" -#: models_treatments.py:584 -#, fuzzy +#: models_treatments.py:601 msgid "Can view all Treatment source" -msgstr "Peut voir tous les Traitements" +msgstr "" -#: models_treatments.py:586 -#, fuzzy +#: models_treatments.py:603 msgid "Can view own Treatment source" -msgstr "Peut voir son propre Traitement" +msgstr "" -#: models_treatments.py:588 -#, fuzzy +#: models_treatments.py:605 msgid "Can add own Treatment source" -msgstr "Peut ajouter son propre Traitement" +msgstr "" -#: models_treatments.py:590 -#, fuzzy +#: models_treatments.py:607 msgid "Can change own Treatment source" -msgstr "Peut modifier son propre Traitement" +msgstr "" -#: models_treatments.py:592 -#, fuzzy +#: models_treatments.py:609 msgid "Can delete own Treatment source" -msgstr "Peut supprimer son propre Traitement" +msgstr "" -#: models_treatments.py:606 +#: models_treatments.py:623 msgid "Treatment file" msgstr "Dossier de traitement" -#: models_treatments.py:610 +#: models_treatments.py:627 msgid "Treatment request documentation" msgstr "Documentation de demande de traitement" -#: models_treatments.py:611 +#: models_treatments.py:628 msgid "Treatment request documentations" msgstr "Documentations de demande de traitement" -#: models_treatments.py:614 -#, fuzzy +#: models_treatments.py:631 msgid "Can view all Treatment request source" -msgstr "Peut voir toutes les Demandes de traitement" +msgstr "" -#: models_treatments.py:616 -#, fuzzy +#: models_treatments.py:633 msgid "Can add Treatment request source" -msgstr "Documentation de demande de traitement" +msgstr "" -#: models_treatments.py:618 -#, fuzzy +#: models_treatments.py:635 msgid "Can change Treatment request source" -msgstr "Peut modifier sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:620 -#, fuzzy +#: models_treatments.py:637 msgid "Can delete Treatment request source" -msgstr "Peut supprimer sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:622 -#, fuzzy +#: models_treatments.py:639 msgid "Can view own Treatment request source" -msgstr "Peut voir sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:624 -#, fuzzy +#: models_treatments.py:641 msgid "Can add own Treatment request source" -msgstr "Peut ajouter sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:626 -#, fuzzy +#: models_treatments.py:643 msgid "Can change own Treatment request source" -msgstr "Peut modifier sa propre Demande de traitement" +msgstr "" -#: models_treatments.py:628 -#, fuzzy +#: models_treatments.py:645 msgid "Can delete own Treatment request source" -msgstr "Peut supprimer sa propre Demande de traitement" +msgstr "" #: views.py:138 msgid "New find" diff --git a/translations/fr/archaeological_operations.po b/translations/fr/archaeological_operations.po index 67c09a4fb..b3b65c228 100644 --- a/translations/fr/archaeological_operations.po +++ b/translations/fr/archaeological_operations.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:21+0200\n" "PO-Revision-Date: 2017-03-16 05:04-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" diff --git a/translations/fr/archaeological_warehouse.po b/translations/fr/archaeological_warehouse.po index 0356ebec7..a5634b4f7 100644 --- a/translations/fr/archaeological_warehouse.po +++ b/translations/fr/archaeological_warehouse.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:21+0200\n" "PO-Revision-Date: 2017-03-21 06:24-0400\n" "Last-Translator: Étienne Loks \n" "Language-Team: \n" @@ -19,16 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Generator: Zanata 3.9.6\n" -#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:66 models.py:202 +#: forms.py:36 forms.py:99 ishtar_menu.py:40 models.py:65 models.py:204 #: templates/ishtar/sheet_warehouse.html:4 msgid "Warehouse" msgstr "Dépôt" -#: forms.py:45 forms.py:50 models.py:387 +#: forms.py:45 forms.py:50 models.py:389 msgid "Division" msgstr "Division" -#: forms.py:52 models.py:226 +#: forms.py:52 models.py:228 msgid "Order" msgstr "Ordre" @@ -36,15 +36,15 @@ msgstr "Ordre" msgid "There are identical divisions." msgstr "Il y a des divisions identiques" -#: forms.py:70 models.py:56 +#: forms.py:70 models.py:55 msgid "Divisions" msgstr "Divisions" -#: forms.py:74 forms.py:103 models.py:48 models.py:199 +#: forms.py:74 forms.py:103 models.py:47 models.py:201 msgid "Name" msgstr "Nom" -#: forms.py:75 forms.py:105 models.py:39 models.py:50 +#: forms.py:75 forms.py:105 models.py:38 models.py:49 msgid "Warehouse type" msgstr "Type de dépôt" @@ -56,11 +56,11 @@ msgstr "Commune" msgid "Warehouse search" msgstr "Rechercher un dépôt" -#: forms.py:108 models.py:53 +#: forms.py:108 models.py:52 msgid "Person in charge" msgstr "Responsable" -#: forms.py:114 forms.py:184 models.py:54 models.py:280 +#: forms.py:114 forms.py:184 models.py:53 models.py:282 msgid "Comment" msgstr "Commentaires" @@ -92,16 +92,16 @@ msgstr "Téléphone mobile" msgid "Would you like to delete this warehouse?" msgstr "Voulez-vous supprimer ce dépôt ?" -#: forms.py:158 models.py:291 models.py:384 +#: forms.py:158 models.py:293 models.py:386 #: templates/ishtar/sheet_container.html:4 msgid "Container" msgstr "Contenant" -#: forms.py:163 forms.py:237 models.py:241 +#: forms.py:163 forms.py:237 models.py:243 msgid "Ref." msgstr "Réf." -#: forms.py:164 forms.py:236 models.py:244 models.py:278 +#: forms.py:164 forms.py:236 models.py:246 models.py:280 msgid "Container type" msgstr "Type de contenant" @@ -109,7 +109,7 @@ msgstr "Type de contenant" msgid "Current location (warehouse)" msgstr "Lieu actuel (dépôt)" -#: forms.py:172 models.py:275 +#: forms.py:172 models.py:277 msgid "Responsible warehouse" msgstr "Dépôt responsable" @@ -162,7 +162,7 @@ msgstr "Date" msgid "Packaged finds" msgstr "Mobilier conditionné" -#: forms.py:280 models.py:281 +#: forms.py:280 models.py:283 msgid "Localisation" msgstr "Localisation" @@ -190,116 +190,116 @@ msgstr "Modification" msgid "Deletion" msgstr "Suppression" -#: ishtar_menu.py:57 models.py:292 templates/ishtar/sheet_warehouse.html:20 +#: ishtar_menu.py:57 models.py:294 templates/ishtar/sheet_warehouse.html:20 #: templates/ishtar/sheet_warehouse.html:53 msgid "Containers" msgstr "Contenants" -#: models.py:40 +#: models.py:39 msgid "Warehouse types" msgstr "Types de dépôt" -#: models.py:59 models.py:286 +#: models.py:58 models.py:288 msgid "External ID" msgstr "ID externe" -#: models.py:61 models.py:288 +#: models.py:60 models.py:290 msgid "External ID is set automatically" msgstr "L'ID externe est attribué automatiquement" -#: models.py:67 +#: models.py:66 msgid "Warehouses" msgstr "Dépôts" -#: models.py:69 +#: models.py:68 msgid "Can view all Warehouses" msgstr "Peut voir tous les Dépôts" -#: models.py:70 +#: models.py:69 msgid "Can view own Warehouse" msgstr "Peut voir son propre Dépôt" -#: models.py:71 +#: models.py:70 msgid "Can add own Warehouse" msgstr "Peut ajouter son propre Dépôt" -#: models.py:72 +#: models.py:71 msgid "Can change own Warehouse" msgstr "Peut modifier son propre Dépôt" -#: models.py:73 +#: models.py:72 msgid "Can delete own Warehouse" msgstr "Peut supprimer son propre Dépôt" -#: models.py:201 +#: models.py:203 msgid "Description" msgstr "Description" -#: models.py:206 models.py:207 +#: models.py:208 models.py:209 msgid "Collection" msgstr "Collection" -#: models.py:216 +#: models.py:218 msgid "Warehouse division type" msgstr "Type de division de dépôt" -#: models.py:217 +#: models.py:219 msgid "Warehouse division types" msgstr "Types de division de dépôt" -#: models.py:237 +#: models.py:239 msgid "Length (mm)" msgstr "Longueur (mm)" -#: models.py:238 +#: models.py:240 msgid "Width (mm)" msgstr "Largeur (mm)" -#: models.py:239 +#: models.py:241 msgid "Height (mm)" msgstr "Hauteur (mm)" -#: models.py:240 +#: models.py:242 msgid "Volume (l)" msgstr "Volume (l)" -#: models.py:245 +#: models.py:247 msgid "Container types" msgstr "Types de contenant" -#: models.py:264 +#: models.py:266 msgid "Location - index" msgstr "Lieu - index" -#: models.py:265 +#: models.py:267 msgid "Precise localisation" msgstr "Localisation précise" -#: models.py:266 +#: models.py:268 msgid "Type" msgstr "Type" -#: models.py:272 +#: models.py:274 msgid "Location (warehouse)" msgstr "Lieu (dépôt)" -#: models.py:279 +#: models.py:281 msgid "Container ref." msgstr "Réf. du contenant" -#: models.py:283 +#: models.py:285 msgid "Cached location" msgstr "Lieu - en cache" -#: models.py:388 +#: models.py:390 msgid "Reference" msgstr "Référence" -#: models.py:391 +#: models.py:393 msgid "Container localisation" msgstr "Localisation de contenant" -#: models.py:392 +#: models.py:394 msgid "Container localisations" msgstr "Localisations de contenant" @@ -348,14 +348,12 @@ msgid "Finds" msgstr "" #: templates/ishtar/sheet_warehouse.html:39 -#, fuzzy msgid "Finds by location in the warehouse" -msgstr "Lieu actuel (dépôt)" +msgstr "" #: templates/ishtar/sheet_warehouse.html:59 -#, fuzzy msgid "Containers by location in the warehouse" -msgstr "Lieu actuel (dépôt)" +msgstr "" #: templates/ishtar/wizard/wizard_containerlocalisation.html:8 msgid "" diff --git a/translations/fr/ishtar_common.po b/translations/fr/ishtar_common.po index 0c4c94036..837a90f6d 100644 --- a/translations/fr/ishtar_common.po +++ b/translations/fr/ishtar_common.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-05 12:20+0200\n" +"POT-Creation-Date: 2017-04-07 11:21+0200\n" "PO-Revision-Date: 2017-03-21 01:54-0400\n" "Last-Translator: Valérie-Emma Leroux \n" "Language-Team: \n" @@ -203,7 +203,7 @@ msgid "Template" msgstr "Patron" #: forms_common.py:41 forms_common.py:59 forms_common.py:184 -#: forms_common.py:408 models.py:1567 models.py:3033 +#: forms_common.py:408 models.py:1567 models.py:3030 #: templates/blocks/JQueryAdvancedTown.html:19 #: templates/ishtar/sheet_organization.html:13 msgid "Town" @@ -226,8 +226,8 @@ msgstr "" "

      Par exemple tapez « saint denis 93 » pour obtenir la " "commune Saint-Denis dans le département français de Seine-Saint-Denis.

      " -#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2629 -#: models.py:2822 models.py:2888 templates/ishtar/sheet_person.html:4 +#: forms_common.py:68 forms_common.py:863 ishtar_menu.py:47 models.py:2630 +#: models.py:2823 models.py:2885 templates/ishtar/sheet_person.html:4 msgid "Person" msgstr "Personne" @@ -240,21 +240,21 @@ msgstr "" "pas possible." #: forms_common.py:172 forms_common.py:329 forms_common.py:453 -#: ishtar_menu.py:75 models.py:2512 models.py:2603 +#: ishtar_menu.py:75 models.py:2513 models.py:2604 #: templates/ishtar/sheet_organization.html:4 msgid "Organization" msgstr "Organisation" #: forms_common.py:175 forms_common.py:212 forms_common.py:324 #: forms_common.py:378 forms_common.py:448 models.py:1109 models.py:1500 -#: models.py:1769 models.py:1785 models.py:2022 models.py:2298 models.py:2506 -#: models.py:2615 models.py:3019 templates/ishtar/import_list.html:13 +#: models.py:1769 models.py:1785 models.py:2023 models.py:2301 models.py:2507 +#: models.py:2616 models.py:3016 templates/ishtar/import_list.html:13 #: templates/ishtar/sheet_organization.html:8 #: templates/ishtar/sheet_organization.html:21 msgid "Name" msgstr "Nom" -#: forms_common.py:176 models.py:1722 models.py:2153 +#: forms_common.py:176 models.py:1722 models.py:2154 msgid "Organization type" msgstr "Type d'organisation" @@ -296,8 +296,8 @@ msgstr "Téléphone" msgid "Mobile phone" msgstr "Téléphone portable" -#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2189 -#: models.py:2508 models.py:2954 templates/sheet_ope.html:85 +#: forms_common.py:213 forms_common.py:327 forms_common.py:451 models.py:2192 +#: models.py:2509 models.py:2951 templates/sheet_ope.html:85 #: templates/sheet_ope.html.py:105 templates/sheet_ope.html:126 #: templates/ishtar/import_list.html:14 #: templates/ishtar/sheet_organization.html:23 @@ -321,7 +321,7 @@ msgstr "Fusionner tous les éléments dans" msgid "Organization to merge" msgstr "Organisation à fusionner" -#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2613 +#: forms_common.py:325 forms_common.py:376 forms_common.py:449 models.py:2614 #: templates/ishtar/sheet_organization.html:22 msgid "Surname" msgstr "Prénom" @@ -339,17 +339,17 @@ msgstr "Personne à fusionner" msgid "Identity" msgstr "Identité" -#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2154 -#: models.py:2607 models.py:2609 models.py:2951 templates/sheet_ope.html:104 +#: forms_common.py:373 forms_common.py:781 forms_common.py:830 models.py:2155 +#: models.py:2608 models.py:2610 models.py:2948 templates/sheet_ope.html:104 #: templates/ishtar/blocks/window_tables/documents.html:7 msgid "Title" msgstr "Titre" -#: forms_common.py:374 models.py:2611 +#: forms_common.py:374 models.py:2612 msgid "Salutation" msgstr "Formule d'appel" -#: forms_common.py:380 models.py:2617 +#: forms_common.py:380 models.py:2618 msgid "Raw name" msgstr "Nom brut" @@ -409,7 +409,7 @@ msgstr "Nom d'utilisateur" msgid "Account search" msgstr "Rechercher un compte" -#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2560 +#: forms_common.py:512 forms_common.py:552 forms_common.py:556 models.py:2561 msgid "Person type" msgstr "Type de personne" @@ -441,7 +441,7 @@ msgstr "Ce nom d'utilisateur existe déjà." msgid "Send the new password by email?" msgstr "Envoyer le nouveau mot de passe par courriel ?" -#: forms_common.py:636 forms_common.py:649 models.py:3034 +#: forms_common.py:636 forms_common.py:649 models.py:3031 msgid "Towns" msgstr "Communes" @@ -457,7 +457,7 @@ msgstr "Seul un choix peut être coché." msgid "Documentation informations" msgstr "Information sur le document" -#: forms_common.py:783 forms_common.py:831 models.py:2155 models.py:2926 +#: forms_common.py:783 forms_common.py:831 models.py:2156 models.py:2923 msgid "Source type" msgstr "Type de document" @@ -469,37 +469,37 @@ msgstr "Référence" msgid "Internal reference" msgstr "Référence interne" -#: forms_common.py:791 models.py:2965 +#: forms_common.py:791 models.py:2962 msgid "Numerical ressource (web address)" msgstr "Ressource numérique (adresse web)" -#: forms_common.py:792 models.py:2967 +#: forms_common.py:792 models.py:2964 msgid "Receipt date" msgstr "Date de réception" -#: forms_common.py:794 models.py:2323 models.py:2969 +#: forms_common.py:794 models.py:2327 models.py:2966 msgid "Creation date" msgstr "Date de création" -#: forms_common.py:797 models.py:2972 +#: forms_common.py:797 models.py:2969 msgid "Receipt date in documentation" msgstr "Date de réception en documentation" #: forms_common.py:799 forms_common.py:835 models.py:381 models.py:698 -#: models.py:2049 models.py:2621 models.py:2979 +#: models.py:2050 models.py:2622 models.py:2976 msgid "Comment" msgstr "Commentaire" #: forms_common.py:801 forms_common.py:834 models.py:1111 models.py:1789 -#: models.py:1976 models.py:2023 models.py:2978 templates/sheet_ope.html:128 +#: models.py:1977 models.py:2024 models.py:2975 templates/sheet_ope.html:128 msgid "Description" msgstr "Description" -#: forms_common.py:804 models.py:2980 +#: forms_common.py:804 models.py:2977 msgid "Additional information" msgstr "Information supplémentaire" -#: forms_common.py:806 forms_common.py:838 models.py:2982 +#: forms_common.py:806 forms_common.py:838 models.py:2979 msgid "Has a duplicate" msgstr "Existe en doublon" @@ -516,7 +516,7 @@ msgstr "" "

      Les images trop grandes sont retaillées en : %(width)dx%(height)d (le " "ratio est conservé).

      " -#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2893 +#: forms_common.py:827 forms_common.py:856 forms_common.py:890 models.py:2890 #: templates/ishtar/wizard/wizard_person_deletion.html:124 msgid "Author" msgstr "Auteur" @@ -529,7 +529,7 @@ msgstr "Informations supplémentaires" msgid "Would you like to delete this documentation?" msgstr "Voulez-vous supprimer ce document ?" -#: forms_common.py:864 models.py:2156 models.py:2880 models.py:2890 +#: forms_common.py:864 models.py:2157 models.py:2877 models.py:2887 msgid "Author type" msgstr "Type d'auteur" @@ -541,7 +541,7 @@ msgstr "Sélection d'auteur" msgid "There are identical authors." msgstr "Il y a des auteurs identiques." -#: forms_common.py:901 models.py:2894 models.py:2961 +#: forms_common.py:901 models.py:2891 models.py:2958 #: templates/sheet_ope.html:106 #: templates/ishtar/blocks/window_tables/documents.html:9 msgid "Authors" @@ -559,7 +559,7 @@ msgstr "Ajout/modification" msgid "Deletion" msgstr "Suppression" -#: ishtar_menu.py:39 models.py:1283 views.py:1632 +#: ishtar_menu.py:39 models.py:1283 views.py:1644 msgid "Global variables" msgstr "Variables globales" @@ -587,19 +587,19 @@ msgstr "Fusion automatique" msgid "Manual merge" msgstr "Fusion manuelle" -#: ishtar_menu.py:109 models.py:2334 +#: ishtar_menu.py:109 models.py:2335 msgid "Imports" msgstr "Imports" -#: ishtar_menu.py:112 views.py:1640 +#: ishtar_menu.py:112 views.py:1652 msgid "New import" msgstr "Nouvel import" -#: ishtar_menu.py:116 views.py:1654 +#: ishtar_menu.py:116 views.py:1666 msgid "Current imports" msgstr "Imports en cours" -#: ishtar_menu.py:120 views.py:1693 +#: ishtar_menu.py:120 views.py:1705 msgid "Old imports" msgstr "Anciens imports" @@ -627,7 +627,7 @@ msgstr "Identifiant textuel" msgid "Available" msgstr "Disponible" -#: models.py:724 models.py:2095 +#: models.py:724 models.py:2096 msgid "Key" msgstr "Clé" @@ -643,7 +643,7 @@ msgstr "Dernier éditeur" msgid "Creator" msgstr "Créateur" -#: models.py:971 models.py:2877 models.py:3045 models.py:3101 +#: models.py:971 models.py:2874 models.py:3042 models.py:3098 msgid "Order" msgstr "Ordre" @@ -873,7 +873,7 @@ msgstr "Nom de la variable" msgid "Description of the variable" msgstr "Description de la variable" -#: models.py:1279 models.py:2096 +#: models.py:1279 models.py:2097 msgid "Value" msgstr "Valeur" @@ -909,7 +909,7 @@ msgstr "Patron de document" msgid "Document templates" msgstr "Patrons de document" -#: models.py:1539 models.py:1549 models.py:2318 +#: models.py:1539 models.py:1549 models.py:2321 msgid "State" msgstr "État" @@ -961,7 +961,7 @@ msgstr "Importeur - Modèle" msgid "Importer - Models" msgstr "Importeur - Modèles" -#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:25 +#: models.py:1791 templates/ishtar/dashboards/dashboard_main.html:34 msgid "Users" msgstr "Utilisateurs" @@ -1009,19 +1009,19 @@ msgstr "Importeur - Valeur par défaut" msgid "Importer - Default values" msgstr "Importeur - Valeurs par défaut" -#: models.py:1975 +#: models.py:1976 msgid "Column number" msgstr "Numéro de colonne" -#: models.py:1978 +#: models.py:1979 msgid "Required" msgstr "Requis" -#: models.py:1980 +#: models.py:1981 msgid "Export field name" msgstr "Exporter le nom du champ" -#: models.py:1981 +#: models.py:1982 msgid "" "Fill this field if the field name is ambiguous for export. For instance: " "concatenated fields." @@ -1029,536 +1029,531 @@ msgstr "" "Remplir ce champ si le nom du champ est ambigu pour l'export, par exemple " "dans le cas de champs concaténés." -#: models.py:1986 +#: models.py:1987 msgid "Importer - Column" msgstr "Importeur - Colonne" -#: models.py:1987 +#: models.py:1988 msgid "Importer - Columns" msgstr "Importeur - Colonnes" -#: models.py:2007 +#: models.py:2008 msgid "Field name" msgstr "Nom du champ" -#: models.py:2009 models.py:2043 +#: models.py:2010 models.py:2044 msgid "Force creation of new items" msgstr "Forcer la création de nouveaux éléments" -#: models.py:2011 models.py:2045 +#: models.py:2012 models.py:2046 msgid "Concatenate with existing" msgstr "Concaténer avec l'existant" -#: models.py:2013 models.py:2047 +#: models.py:2014 models.py:2048 msgid "Concatenate character" msgstr "Caractère de concaténation" -#: models.py:2017 +#: models.py:2018 msgid "Importer - Duplicate field" msgstr "Importeur - Champ dupliqué" -#: models.py:2018 +#: models.py:2019 msgid "Importer - Duplicate fields" msgstr "Importeur - Champs dupliqués" -#: models.py:2025 +#: models.py:2026 msgid "Regular expression" msgstr "Expression régulière" -#: models.py:2028 +#: models.py:2029 msgid "Importer - Regular expression" msgstr "Importeur - Expression régulière" -#: models.py:2029 +#: models.py:2030 msgid "Importer - Regular expressions" msgstr "Importeur - Expressions régulières" -#: models.py:2052 +#: models.py:2053 msgid "Importer - Target" msgstr "Importeur - Cible" -#: models.py:2053 +#: models.py:2054 msgid "Importer - Targets" msgstr "Importeur - Cibles" -#: models.py:2077 views.py:568 +#: models.py:2078 views.py:568 msgid "True" msgstr "Oui" -#: models.py:2078 views.py:570 +#: models.py:2079 views.py:570 msgid "False" msgstr "Non" -#: models.py:2097 +#: models.py:2098 msgid "Is set" msgstr "Est défini" -#: models.py:2104 +#: models.py:2105 msgid "Importer - Target key" msgstr "Importeur - Clé de rapprochement" -#: models.py:2105 +#: models.py:2106 msgid "Importer - Targets keys" msgstr "Importeur - Clés de rapprochement" -#: models.py:2157 models.py:2957 +#: models.py:2158 models.py:2954 msgid "Format" msgstr "Format" -#: models.py:2158 models.py:3049 +#: models.py:2159 models.py:3046 msgid "Operation type" msgstr "Type d'opération" -#: models.py:2159 +#: models.py:2160 msgid "Period" msgstr "Période" -#: models.py:2160 +#: models.py:2161 msgid "Report state" msgstr "État de rapport" -#: models.py:2161 +#: models.py:2162 msgid "Remain type" msgstr "Type de vestige" -#: models.py:2162 +#: models.py:2163 msgid "Unit" msgstr "Unité" -#: models.py:2163 +#: models.py:2165 msgid "Activity type" msgstr "Type d'activité" -#: models.py:2164 +#: models.py:2166 msgid "Material" msgstr "Matériau" -#: models.py:2166 +#: models.py:2168 msgid "Conservatory state" msgstr "État de conservation" -#: models.py:2167 +#: models.py:2169 msgid "Container type" msgstr "Type de contenant" -#: models.py:2168 +#: models.py:2170 msgid "Preservation type" msgstr "Type de conservation" -#: models.py:2169 +#: models.py:2171 msgid "Object type" msgstr "Type d'objet" -#: models.py:2170 +#: models.py:2172 msgid "Integrity type" msgstr "Type d'intégrité" -#: models.py:2171 +#: models.py:2174 msgid "Remarkability type" msgstr "Type de remarquabilité" -#: models.py:2172 +#: models.py:2175 msgid "Batch type" msgstr "Type de lot" -#: models.py:2174 +#: models.py:2177 msgid "Identification type" msgstr "Type d'identification" -#: models.py:2176 +#: models.py:2179 msgid "Context record relation type" msgstr "Type de relations entre Unités d'Enregistrement" -#: models.py:2177 models.py:3107 +#: models.py:2180 models.py:3104 msgid "Spatial reference system" msgstr "Système de référence spatiale" -#: models.py:2178 models.py:2935 +#: models.py:2181 models.py:2932 msgid "Support type" msgstr "Type de support" -#: models.py:2179 models.py:2572 +#: models.py:2182 models.py:2573 msgid "Title type" msgstr "Type de titre" -#: models.py:2185 +#: models.py:2188 msgid "Integer" msgstr "Entier" -#: models.py:2186 +#: models.py:2189 msgid "Float" msgstr "Nombre à virgule" -#: models.py:2187 +#: models.py:2190 msgid "String" msgstr "Chaîne de caractères" -#: models.py:2188 templates/sheet_ope.html:86 +#: models.py:2191 templates/sheet_ope.html:86 msgid "Date" msgstr "Date" -#: models.py:2190 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 +#: models.py:2193 templates/sheet_ope.html:61 templates/sheet_ope.html.py:83 #: templates/ishtar/dashboards/dashboard_main_detail.html:126 msgid "Year" msgstr "Année" -#: models.py:2191 +#: models.py:2194 msgid "String to boolean" msgstr "Chaîne de caractères vers booléen" -#: models.py:2192 +#: models.py:2195 msgctxt "filesystem" msgid "File" msgstr "Fichier" -#: models.py:2193 +#: models.py:2196 msgid "Unknow type" msgstr "Type inconnu" -#: models.py:2209 +#: models.py:2212 msgid "4 digit year. e.g.: \"2015\"" msgstr "Année sur 4 chiffres. Exemple : « 2015 »" -#: models.py:2210 +#: models.py:2213 msgid "4 digit year/month/day. e.g.: \"2015/02/04\"" msgstr "Année sur 4 chiffres/mois/jour. Exemple : « 2015/02/04 »" -#: models.py:2211 +#: models.py:2214 msgid "Day/month/4 digit year. e.g.: \"04/02/2015\"" msgstr "Jour/mois/année sur 4 chiffres. Exemple : « 04/02/2015 »" -#: models.py:2221 +#: models.py:2224 msgid "Options" msgstr "Options" -#: models.py:2223 +#: models.py:2226 msgid "Split character(s)" msgstr "Caractère(s) de séparation" -#: models.py:2227 +#: models.py:2230 msgid "Importer - Formater type" msgstr "Importeur - Type de mise en forme" -#: models.py:2228 +#: models.py:2231 msgid "Importer - Formater types" msgstr "Importeur - Types de mise en forme" -#: models.py:2280 templates/ishtar/dashboards/dashboard_main_detail.html:63 +#: models.py:2283 templates/ishtar/dashboards/dashboard_main_detail.html:63 msgid "Created" msgstr "Créé" -#: models.py:2281 +#: models.py:2284 msgid "Analyse in progress" msgstr "Analyse en cours" -#: models.py:2282 +#: models.py:2285 msgid "Analysed" msgstr "Analysé" -#: models.py:2283 +#: models.py:2286 msgid "Import pending" msgstr "Import en attente" -#: models.py:2284 +#: models.py:2287 msgid "Import in progress" msgstr "Import en cours" -#: models.py:2285 +#: models.py:2288 msgid "Finished with errors" msgstr "Terminé avec des erreurs" -#: models.py:2286 +#: models.py:2289 msgid "Finished" msgstr "Terminé" -#: models.py:2287 +#: models.py:2290 msgid "Archived" msgstr "Archivé" -#: models.py:2302 +#: models.py:2305 msgid "Imported file" msgstr "Fichier importé" -#: models.py:2304 +#: models.py:2307 msgid "Associated images (zip file)" msgstr "Images associées (fichier zip)" -#: models.py:2306 +#: models.py:2309 msgid "Encoding" msgstr "Codage" -#: models.py:2308 +#: models.py:2311 msgid "Skip lines" msgstr "Nombre de lignes d'entête" -#: models.py:2309 templates/ishtar/import_list.html:51 +#: models.py:2312 templates/ishtar/import_list.html:51 msgid "Error file" msgstr "Fichier erreur" -#: models.py:2312 +#: models.py:2315 msgid "Result file" msgstr "Fichier résultant" -#: models.py:2315 templates/ishtar/import_list.html:57 +#: models.py:2318 templates/ishtar/import_list.html:57 msgid "Match file" msgstr "Fichier de correspondance" -#: models.py:2321 +#: models.py:2324 msgid "Conservative import" msgstr "Import conservateur" -#: models.py:2326 +#: models.py:2328 msgid "End date" msgstr "Date de fin" -#: models.py:2328 +#: models.py:2331 msgid "Remaining seconds" msgstr "Secondes restantes" -#: models.py:2333 +#: models.py:2334 msgid "Import" msgstr "Import" -#: models.py:2362 +#: models.py:2363 msgid "Analyse" msgstr "Analyser" -#: models.py:2364 models.py:2367 +#: models.py:2365 models.py:2368 msgid "Re-analyse" msgstr "Analyser de nouveau " -#: models.py:2365 +#: models.py:2366 msgid "Launch import" msgstr "Lancer l'import" -#: models.py:2368 +#: models.py:2369 msgid "Re-import" msgstr "Ré-importer" -#: models.py:2369 +#: models.py:2370 msgid "Archive" msgstr "Archiver" -#: models.py:2371 +#: models.py:2372 msgid "Unarchive" msgstr "Désarchiver" -#: models.py:2372 widgets.py:184 templates/ishtar/form_delete.html:11 +#: models.py:2373 widgets.py:184 templates/ishtar/form_delete.html:11 msgid "Delete" msgstr "Supprimer" -#: models.py:2513 +#: models.py:2514 msgid "Organizations" msgstr "Organisations" -#: models.py:2515 +#: models.py:2516 msgid "Can view all Organizations" msgstr "Peut voir toutes les Organisations" -#: models.py:2516 +#: models.py:2517 msgid "Can view own Organization" msgstr "Peut voir sa propre Organisation" -#: models.py:2517 +#: models.py:2518 msgid "Can add own Organization" msgstr "Peut ajouter sa propre Organisation" -#: models.py:2519 +#: models.py:2520 msgid "Can change own Organization" msgstr "Peut modifier sa propre Organisation" -#: models.py:2521 +#: models.py:2522 msgid "Can delete own Organization" msgstr "Peut supprimer sa propre Organisation" -#: models.py:2556 +#: models.py:2557 msgid "Groups" msgstr "Groupes" -#: models.py:2561 +#: models.py:2562 msgid "Person types" msgstr "Types de personne" -#: models.py:2573 +#: models.py:2574 msgid "Title types" msgstr "Types de titre" -#: models.py:2582 +#: models.py:2583 msgid "Mr" msgstr "M." -#: models.py:2583 +#: models.py:2584 msgid "Miss" msgstr "Mlle" -#: models.py:2584 +#: models.py:2585 msgid "Mr and Mrs" msgstr "M. et Mme" -#: models.py:2585 +#: models.py:2586 msgid "Mrs" msgstr "Mme" -#: models.py:2586 +#: models.py:2587 msgid "Doctor" msgstr "Dr." -#: models.py:2619 +#: models.py:2620 msgid "Contact type" msgstr "Type de contact" -#: models.py:2622 models.py:2686 +#: models.py:2623 models.py:2687 msgid "Types" msgstr "Types" -#: models.py:2625 +#: models.py:2626 msgid "Is attached to" msgstr "Est rattaché à" -#: models.py:2630 +#: models.py:2631 msgid "Persons" msgstr "Personnes" -#: models.py:2632 +#: models.py:2633 msgid "Can view all Persons" msgstr "Peut voir toutes les Personnes" -#: models.py:2633 +#: models.py:2634 msgid "Can view own Person" msgstr "Peut voir sa propre Personne" -#: models.py:2634 +#: models.py:2635 msgid "Can add own Person" msgstr "Peut ajouter sa propre Personne" -#: models.py:2635 +#: models.py:2636 msgid "Can change own Person" msgstr "Peut modifier sa propre Personne" -#: models.py:2636 +#: models.py:2637 msgid "Can delete own Person" msgstr "Peut supprimer sa propre Personne" -#: models.py:2825 +#: models.py:2826 msgid "Advanced shortcut menu" msgstr "Menu de raccourci (avancé)" -#: models.py:2828 +#: models.py:2829 msgid "Ishtar user" msgstr "Utilisateur d'Ishtar" -#: models.py:2829 +#: models.py:2830 msgid "Ishtar users" msgstr "Utilisateurs d'Ishtar" -#: models.py:2873 +#: models.py:2870 msgid "To modify the password use the form in Auth > User" msgstr "" "Pour modifier le mot de passe, utilisez le formulaire dans Authentification " "> Utilisateurs" -#: models.py:2881 +#: models.py:2878 msgid "Author types" msgstr "Types d'auteur" -#: models.py:2898 -#, fuzzy +#: models.py:2895 msgid "Can view all Authors" -msgstr "Peut voir toutes les Personnes" +msgstr "" -#: models.py:2900 -#, fuzzy +#: models.py:2897 msgid "Can view own Author" -msgstr "Peut voir sa propre Personne" +msgstr "" -#: models.py:2902 -#, fuzzy +#: models.py:2899 msgid "Can add own Author" -msgstr "Peut ajouter sa propre Personne" +msgstr "" -#: models.py:2904 -#, fuzzy +#: models.py:2901 msgid "Can change own Author" -msgstr "Peut modifier sa propre Personne" +msgstr "" -#: models.py:2906 -#, fuzzy +#: models.py:2903 msgid "Can delete own Author" -msgstr "Peut supprimer sa propre Personne" +msgstr "" -#: models.py:2927 +#: models.py:2924 msgid "Source types" msgstr "Types de document" -#: models.py:2936 +#: models.py:2933 msgid "Support types" msgstr "Types de support" -#: models.py:2943 +#: models.py:2940 msgid "Format type" msgstr "Type de format" -#: models.py:2944 +#: models.py:2941 msgid "Format types" msgstr "Types de format" -#: models.py:2952 +#: models.py:2949 msgid "External ID" msgstr "Identifiant externe" -#: models.py:2955 +#: models.py:2952 msgid "Support" msgstr "Support" -#: models.py:2959 +#: models.py:2956 msgid "Scale" msgstr "Échelle" -#: models.py:2973 +#: models.py:2970 msgid "Item number" msgstr "Numéro d'élément" -#: models.py:2974 +#: models.py:2971 msgid "Ref." msgstr "Réf." -#: models.py:2977 +#: models.py:2974 msgid "Internal ref." msgstr "Réf. interne" -#: models.py:3020 +#: models.py:3017 msgid "Surface (m2)" msgstr "Surface (m2)" -#: models.py:3021 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 +#: models.py:3018 templates/sheet_ope.html:46 templates/sheet_ope.html.py:107 msgid "Localisation" msgstr "Localisation" -#: models.py:3046 +#: models.py:3043 msgid "Is preventive" msgstr "Est du préventif" -#: models.py:3050 +#: models.py:3047 msgid "Operation types" msgstr "Types d'opération" -#: models.py:3079 +#: models.py:3076 msgid "Preventive" msgstr "Préventif" -#: models.py:3080 +#: models.py:3077 msgid "Research" msgstr "Programmé" -#: models.py:3103 +#: models.py:3100 msgid "Authority name" msgstr "Registre" -#: models.py:3104 +#: models.py:3101 msgid "Authority SRID" msgstr "SRID" -#: models.py:3108 +#: models.py:3105 msgid "Spatial reference systems" msgstr "Systèmes de référence spatiale" @@ -1635,47 +1630,57 @@ msgstr "Opération non permise." msgid "New %s" msgstr "Nouveau %s" -#: views.py:1448 views.py:1498 +#: views.py:1448 views.py:1501 msgid "Archaeological files" msgstr "Dossiers" -#: views.py:1449 views.py:1502 +#: views.py:1449 views.py:1505 msgid "Operations" msgstr "Opérations" -#: views.py:1451 views.py:1506 +#: views.py:1451 views.py:1509 msgid "Context records" msgstr "Unités d'Enregistrement" -#: views.py:1453 views.py:1509 +#: views.py:1453 views.py:1512 msgid "Finds" msgstr "Mobilier" -#: views.py:1707 templates/ishtar/import_list.html:47 +#: views.py:1455 views.py:1517 +#, fuzzy +msgid "Treatment requests" +msgstr "Demande de traitement" + +#: views.py:1456 views.py:1521 +#, fuzzy +msgid "Treatments" +msgstr "Traitement" + +#: views.py:1719 templates/ishtar/import_list.html:47 msgid "Link unmatched items" msgstr "Associer les éléments non rapprochés" -#: views.py:1722 +#: views.py:1734 msgid "Delete import" msgstr "Supprimer un import" -#: views.py:1761 +#: views.py:1773 msgid "Merge persons" msgstr "Fusionner des personnes" -#: views.py:1785 +#: views.py:1797 msgid "Select the main person" msgstr "Choisir la personne principale" -#: views.py:1794 +#: views.py:1806 msgid "Merge organization" msgstr "Fusionner des organisations" -#: views.py:1804 +#: views.py:1816 msgid "Select the main organization" msgstr "Sélectionner l'organisation principale" -#: views.py:1844 views.py:1860 +#: views.py:1856 views.py:1872 msgid "Corporation manager" msgstr "Représentant de la personne morale" -- cgit v1.2.3