From d2c89caece800a63782c0623bb051cec07f1e09d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 14:33:37 -0400 Subject: [PATCH 01/23] Add transition form comment help text Signed-off-by: Roberto Rosario --- mayan/apps/document_states/forms.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mayan/apps/document_states/forms.py b/mayan/apps/document_states/forms.py index cc7c76953b..971b17bd2d 100644 --- a/mayan/apps/document_states/forms.py +++ b/mayan/apps/document_states/forms.py @@ -178,7 +178,12 @@ class WorkflowInstanceTransitionForm(forms.Form): label=_('Transition'), queryset=WorkflowTransition.objects.none() ) comment = forms.CharField( - label=_('Comment'), required=False, widget=forms.widgets.Textarea() + help_text=_('Optional comment to attach to the transition.'), + label=_('Comment'), required=False, widget=forms.widgets.Textarea( + attrs={ + 'rows': 3 + } + ) ) From 46eda1a20b0ee6a5a37e7fc53157315dda2c3385 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 15:34:47 -0400 Subject: [PATCH 02/23] Add actions to workflow preview Signed-off-by: Roberto Rosario --- mayan/apps/document_states/models.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 5a5336ee91..44587456d2 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -100,6 +100,7 @@ class Workflow(models.Model): }, format='png' ) + action_cache = {} state_cache = {} transition_cache = [] @@ -111,6 +112,14 @@ class Workflow(models.Model): 'connections': {'origin': 0, 'destination': 0} } + for action in state.actions.all(): + action_cache['a{}'.format(action.pk)] = { + 'name': 'a{}'.format(action.pk), + 'label': action.label, + 'state': 's{}'.format(state.pk), + 'when': action.when, + } + for transition in self.transitions.all(): transition_cache.append( { @@ -133,6 +142,25 @@ class Workflow(models.Model): for transition in transition_cache: diagram.edge(**transition) + for key, value in action_cache.items(): + kwargs = { + 'name': value['name'], + 'label': value['label'], + 'shape': 'box', + } + diagram.node(**kwargs) + diagram.edge( + **{ + 'head_name': '{}'.format(value['name']), + 'tail_name': '{}'.format(value['state']), + 'label': 'On entry' if value['when'] == WORKFLOW_ACTION_ON_ENTRY else 'On exit', + 'arrowhead': 'dot', + 'dir': 'both', + 'arrowtail': 'dot', + 'style': 'dashed', + } + ) + return diagram.pipe() def save(self, *args, **kwargs): From 0e8dbea2448521b3a7707657757d1812002181a9 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 15:35:33 -0400 Subject: [PATCH 03/23] Hightlight initial state Signed-off-by: Roberto Rosario --- mayan/apps/document_states/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 44587456d2..8e7b7df875 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -136,6 +136,8 @@ class Workflow(models.Model): 'name': value['name'], 'label': value['label'], 'shape': 'doublecircle' if value['connections']['origin'] == 0 or value['connections']['destination'] == 0 or value['initial'] else 'circle', + 'style': 'filled' if value['initial'] else '', + 'fillcolor': '#eeeeee', } diagram.node(**kwargs) From daef777173fde97632efdbbdb1d0065ae2eba567 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 15:48:44 -0400 Subject: [PATCH 04/23] Use polylines for the edge splines Signed-off-by: Roberto Rosario --- mayan/apps/document_states/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 8e7b7df875..a5da8ab106 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -96,7 +96,7 @@ class Workflow(models.Model): def render(self): diagram = Digraph( name='finite_state_machine', graph_attr={ - 'rankdir': 'LR', + 'rankdir': 'LR', 'splines': 'polyline' }, format='png' ) From bf4e499c9db8707ac67c1c77696809cc369050d5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 22:29:05 -0400 Subject: [PATCH 05/23] Fix IMAP4 store flags argument, GitLab issue #606 Python's documentation is incorrect, argument name is flag_list. Closes GitLab issue #606. Thanks to Samuel Aebi (@samuelaebi) for the report and debug information. Signed-off-by: Roberto Rosario --- HISTORY.rst | 3 ++ docs/releases/3.2.4.rst | 5 ++ mayan/apps/sources/models/email_sources.py | 3 +- mayan/apps/sources/tests/test_models.py | 56 ++++++++++++++++++++-- 4 files changed, 63 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index eda8594a63..0457be7fab 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,9 @@ * Support configurable GUnicorn timeouts. Defaults to current value of 120 seconds. * Fix help text of the platformtemplate command. +* Fix IMAP4 mailbox.store flags argument. Python's documentation + incorrectly state it is named flag_list. Closes GitLab issue + #606. 3.2.3 (2019-06-21) ================== diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index 9db3ec8308..5236a7da58 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -10,6 +10,10 @@ Changes - Support configurable GUnicorn timeouts. Defaults to current value of 120 seconds. - Fix help text of the platformtemplate command. +- Fix IMAP4 mailbox.store flags argument. Python's documentation + incorrectly state it is named flag_list. Closes GitLab issue + #606. Thanks to Samuel Aebi (@samuelaebi) for the report and + debug information. Removals -------- @@ -98,6 +102,7 @@ Backward incompatible changes Bugs fixed or issues closed --------------------------- +- :gitlab-issue:`606` Delete after IMAP Processing - :gitlab-issue:`628` mailbox.user in POP3Email gets passed keyword argument, but only accepts "user" or positional argument .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/mayan/apps/sources/models/email_sources.py b/mayan/apps/sources/models/email_sources.py index 57435e201e..ca8b13846b 100644 --- a/mayan/apps/sources/models/email_sources.py +++ b/mayan/apps/sources/models/email_sources.py @@ -247,10 +247,11 @@ class IMAPEmail(EmailBaseModel): EmailBaseModel.process_message( source=self, message_text=data[0][1] ) + if not test: mailbox.store( message_set=message_number, command='+FLAGS', - flag_list='\\Deleted' + flags=r'\Deleted' ) mailbox.expunge() diff --git a/mayan/apps/sources/tests/test_models.py b/mayan/apps/sources/tests/test_models.py index ab5faa913c..0d7fcdc624 100644 --- a/mayan/apps/sources/tests/test_models.py +++ b/mayan/apps/sources/tests/test_models.py @@ -20,8 +20,9 @@ from mayan.apps.metadata.models import MetadataType from mayan.apps.storage.utils import mkdtemp from ..literals import SOURCE_UNCOMPRESS_CHOICE_Y -from ..models import POP3Email, WatchFolderSource, WebFormSource -from ..models.email_sources import EmailBaseModel +from ..models.email_sources import EmailBaseModel, IMAPEmail, POP3Email +from ..models.watch_folder_sources import WatchFolderSource +from ..models.webform_sources import WebFormSource from .literals import ( TEST_EMAIL_ATTACHMENT_AND_INLINE, TEST_EMAIL_BASE64_FILENAME, @@ -60,7 +61,7 @@ class CompressedUploadsTestCase(GenericDocumentTestCase): ) -class EmailFilenameDecodingTestCase(GenericDocumentTestCase): +class EmailBaseTestCase(GenericDocumentTestCase): auto_upload_document = False def _create_email_source(self): @@ -190,6 +191,55 @@ class EmailFilenameDecodingTestCase(GenericDocumentTestCase): self.assertEqual(2, Document.objects.count()) +class IMAPSourceTestCase(GenericDocumentTestCase): + auto_upload_document = False + + class MockIMAPServer(object): + def login(self, user, password): + return ('OK', ['{} authenticated (Success)'.format(user)]) + + def select(self, mailbox='INBOX', readonly=False): + return ('OK', ['1']) + + def search(self, charset, *criteria): + return ('OK', ['1']) + + def fetch(self, message_set, message_parts): + return ( + 'OK', [ + ( + '1 (RFC822 {4800}', + TEST_EMAIL_BASE64_FILENAME + ), ' FLAGS (\\Seen))' + ] + ) + + def store(self, message_set, command, flags): + return ('OK', ['1 (FLAGS (\\Seen \\Deleted))']) + + def expunge(self): + return ('OK', ['1']) + + def close(self): + return ('OK', ['Returned to authenticated state. (Success)']) + + def logout(self): + return ('BYE', ['LOGOUT Requested']) + + @mock.patch('imaplib.IMAP4_SSL', autospec=True) + def test_download_document(self, mock_imaplib): + mock_imaplib.return_value = IMAPSourceTestCase.MockIMAPServer() + self.source = IMAPEmail.objects.create( + document_type=self.test_document_type, label='', host='', + password='', username='' + ) + + self.source.check_source() + self.assertEqual( + Document.objects.first().label, 'Ampelm\xe4nnchen.txt' + ) + + class POP3SourceTestCase(GenericDocumentTestCase): auto_upload_document = False From 26fdaf867ff5efc5b86e17fdca4b11c97a979647 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 23:04:17 -0400 Subject: [PATCH 06/23] Update changelog and release notes Signed-off-by: Roberto Rosario --- HISTORY.rst | 10 ++++++++++ docs/releases/3.2.4.rst | 16 ++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 0457be7fab..4193c968d9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,16 @@ * Fix IMAP4 mailbox.store flags argument. Python's documentation incorrectly state it is named flag_list. Closes GitLab issue #606. +* Improve the workflow preview generation. Use polylines + instead of splines. Add state actions to the preview. + Highlight the initial state. +* Add help text to the workflow transition form comment field. +* Fix direct deployment instructions. +* Add user, group, and role dashboard widgets. +* Add test mixin detect database connection leaks. +* Remove tag create event registration from the tag + instances. The tag create event is not applicable to + existing tags. 3.2.3 (2019-06-21) ================== diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index 5236a7da58..e8a6c9fdf8 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -14,6 +14,22 @@ Changes incorrectly state it is named flag_list. Closes GitLab issue #606. Thanks to Samuel Aebi (@samuelaebi) for the report and debug information. +- Support configurable GUnicorn timeouts. Defaults to + current value of 120 seconds. +- Fix help text of the platformtemplate command. +- Fix IMAP4 mailbox.store flags argument. Python's documentation + incorrectly state it is named flag_list. Closes GitLab issue + #606. +- Improve the workflow preview generation. Use polylines + instead of splines. Add state actions to the preview. + Highlight the initial state. +- Add help text to the workflow transition form comment field. +- Fix direct deployment instructions. +- Add user, group, and role dashboard widgets. +- Add test mixin detect database connection leaks. +- Remove tag create event registration from the tag + instances. The tag create event is not applicable to + existing tags. Removals -------- From 8141748677b4c35670db973e799eac3865d0b51d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 23:05:54 -0400 Subject: [PATCH 07/23] Add redirection after trashing a document Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 ++ docs/releases/3.2.4.rst | 2 ++ mayan/apps/documents/views/trashed_document_views.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 4193c968d9..450d1aac3b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -16,6 +16,8 @@ * Remove tag create event registration from the tag instances. The tag create event is not applicable to existing tags. +* Add proper redirection after moving a document to the + trash. 3.2.3 (2019-06-21) ================== diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index e8a6c9fdf8..8c33c8b0f2 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -30,6 +30,8 @@ Changes - Remove tag create event registration from the tag instances. The tag create event is not applicable to existing tags. +- Add proper redirection after moving a document to the + trash. Removals -------- diff --git a/mayan/apps/documents/views/trashed_document_views.py b/mayan/apps/documents/views/trashed_document_views.py index c12783b014..bf783303ed 100644 --- a/mayan/apps/documents/views/trashed_document_views.py +++ b/mayan/apps/documents/views/trashed_document_views.py @@ -10,6 +10,7 @@ from mayan.apps.acls.models import AccessControlList from mayan.apps.common.generics import ( ConfirmView, MultipleObjectConfirmActionView ) +from mayan.apps.common.settings import setting_home_view from ..icons import icon_document_list_deleted from ..models import DeletedDocument, Document @@ -33,6 +34,7 @@ class DocumentTrashView(MultipleObjectConfirmActionView): model = Document object_permission = permission_document_trash pk_url_kwarg = 'pk' + post_action_redirect = reverse_lazy(viewname=setting_home_view.value) success_message_singular = _( '%(count)d document moved to the trash.' ) From ff03186a2c758f3066c41effd36d4d2a25e1270d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 28 Jun 2019 23:26:29 -0400 Subject: [PATCH 08/23] Remove the INSTALLED_APPS setting The INSTALLED APPS setting is now replaced by the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. Exposing the INSTALLED_APPS setting had the side effect of blocking new apps that were added in new versions. Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 ++ docs/releases/3.2.4.rst | 2 ++ mayan/apps/common/settings.py | 30 ++++++++++++++++++++---------- mayan/settings/base.py | 11 +++++++++++ 4 files changed, 35 insertions(+), 10 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 450d1aac3b..b8061c8540 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -18,6 +18,8 @@ existing tags. * Add proper redirection after moving a document to the trash. +* Remove the INSTALLED_APPS setting. Replace it with + the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. 3.2.3 (2019-06-21) ================== diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index 8c33c8b0f2..8abc58cbc3 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -32,6 +32,8 @@ Changes existing tags. - Add proper redirection after moving a document to the trash. +- Remove the INSTALLED_APPS setting. Replace it with + the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. Removals -------- diff --git a/mayan/apps/common/settings.py b/mayan/apps/common/settings.py index e838c07a65..841549b38f 100644 --- a/mayan/apps/common/settings.py +++ b/mayan/apps/common/settings.py @@ -26,6 +26,26 @@ settings_db_sync_task_delay = namespace.add_setting( 'propagate.' ) ) +setting_disabled_apps = namespace.add_setting( + global_name='COMMON_DISABLED_APPS', + default=settings.COMMON_DISABLED_APPS, + help_text=_( + 'A list of strings designating all applications that are to be removed ' + 'from the list normally installed by Mayan EDMS. Each string should be ' + 'a dotted Python path to: an application configuration class (preferred), ' + 'or a package containing an application.' + ), +) +setting_extra_apps = namespace.add_setting( + global_name='COMMON_EXTRA_APPS', + default=settings.COMMON_EXTRA_APPS, + help_text=_( + 'A list of strings designating all applications that are installed ' + 'beyond those normally installed by Mayan EDMS. Each string should be ' + 'a dotted Python path to: an application configuration class (preferred), ' + 'or a package containing an application.' + ), +) setting_home_view = namespace.add_setting( global_name='COMMON_HOME_VIEW', default=DEFAULT_COMMON_HOME_VIEW, help_text=_( @@ -254,16 +274,6 @@ setting_django_file_upload_max_memory_size = namespace.add_setting( 'DATA_UPLOAD_MAX_MEMORY_SIZE.' ), ) -setting_django_installed_apps = namespace.add_setting( - global_name='INSTALLED_APPS', - default=settings.INSTALLED_APPS, - help_text=_( - 'A list of strings designating all applications that are enabled ' - 'in this Django installation. Each string should be a dotted ' - 'Python path to: an application configuration class (preferred), ' - 'or a package containing an application.' - ), -) setting_django_login_url = namespace.add_setting( global_name='LOGIN_URL', default=settings.LOGIN_URL, diff --git a/mayan/settings/base.py b/mayan/settings/base.py index f2cd8f833b..3a3f2783d9 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -358,6 +358,8 @@ else: BASE_INSTALLED_APPS = INSTALLED_APPS +COMMON_EXTRA_APPS = () +COMMON_DISABLED_APPS = () CONFIGURATION_FILEPATH = os.path.join(MEDIA_ROOT, CONFIGURATION_FILENAME) CONFIGURATION_LAST_GOOD_FILEPATH = os.path.join( @@ -376,3 +378,12 @@ for app in INSTALLED_APPS: 'Update the app references in the file config.yml as detailed ' 'in https://docs.mayan-edms.com/releases/3.2.html#backward-incompatible-changes' ) + + +for APP in COMMON_EXTRA_APPS: + INSTALLED_APPS = INSTALLED_APPS + (APP,) + + +INSTALLED_APPS = [ + APP for APP in INSTALLED_APPS if APP not in COMMON_DISABLED_APPS +] From 305f4d1afdcb5cf706fc191af6a560f6985d8802 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:10:22 -0400 Subject: [PATCH 09/23] Reduce code used to set bulk metadata Signed-off-by: Roberto Rosario --- mayan/apps/metadata/api.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/mayan/apps/metadata/api.py b/mayan/apps/metadata/api.py index 9becfc1913..c70c6acad8 100644 --- a/mayan/apps/metadata/api.py +++ b/mayan/apps/metadata/api.py @@ -105,15 +105,14 @@ def metadata_repr_as_list(metadata_list): def set_bulk_metadata(document, metadata_dictionary): - document_type = document.document_type - document_type_metadata_types = [ - document_type_metadata_type.metadata_type for document_type_metadata_type in document_type.metadata.all() - ] + document_type_metadata_types = document.document_type.metadata.values_list( + 'metadata_type', flat=True + ) for metadata_type_name, value in metadata_dictionary.items(): metadata_type = MetadataType.objects.get(name=metadata_type_name) - if metadata_type in document_type_metadata_types: + if document_type_metadata_types.filter(metadata_type=metadata_type).exists(): DocumentMetadata.objects.get_or_create( document=document, metadata_type=metadata_type, value=value ) From 24dcdfd32813f38e4fb018d6616d319431bbe9b0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:12:54 -0400 Subject: [PATCH 10/23] Improve email metadata support The feature can now work on emails with nested parts. Also the metadata.yaml attachment no longer needs to be the first attachment. Signed-off-by: Roberto Rosario --- HISTORY.rst | 3 + docs/releases/3.2.4.rst | 5 +- mayan/apps/sources/models/email_sources.py | 82 ++++++++++++---------- mayan/apps/sources/tests/test_models.py | 72 +++++++++++++++++++ 4 files changed, 123 insertions(+), 39 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b8061c8540..0c201ef1c6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -20,6 +20,9 @@ trash. * Remove the INSTALLED_APPS setting. Replace it with the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. +* Improve email metadata support. Can now work on + email with nested parts. Also the metadata.yaml + attachment no longer needs to be the first attachment. 3.2.3 (2019-06-21) ================== diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index 8abc58cbc3..25b0277f98 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -34,6 +34,9 @@ Changes trash. - Remove the INSTALLED_APPS setting. Replace it with the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. +- Improve email metadata support. Can now work on + email with nested parts. Also the metadata.yaml + attachment no longer needs to be the first attachment. Removals -------- @@ -53,7 +56,7 @@ Remove deprecated requirements:: Type in the console:: - $ pip install mayan-edms==3.2.3 + $ pip install mayan-edms==3.2.4 the requirements will also be updated automatically. diff --git a/mayan/apps/sources/models/email_sources.py b/mayan/apps/sources/models/email_sources.py index ca8b13846b..4c07219088 100644 --- a/mayan/apps/sources/models/email_sources.py +++ b/mayan/apps/sources/models/email_sources.py @@ -16,6 +16,7 @@ from django.db import models from django.utils.encoding import force_bytes from django.utils.translation import ugettext_lazy as _ +from mayan.apps.documents.models import Document from mayan.apps.metadata.api import set_bulk_metadata from mayan.apps.metadata.models import MetadataType @@ -54,8 +55,7 @@ class EmailBaseModel(IntervalBaseModel): help_text=_( 'Name of the attachment that will contains the metadata type ' 'names and value pairs to be assigned to the rest of the ' - 'downloaded attachments. Note: This attachment has to be the ' - 'first attachment.' + 'downloaded attachments.' ), max_length=128, verbose_name=_('Metadata attachment name') ) subject_metadata_type = models.ForeignKey( @@ -85,52 +85,61 @@ class EmailBaseModel(IntervalBaseModel): verbose_name_plural = _('Email sources') @staticmethod - def process_message(source, message_text, message_properties=None): + def process_message(source, message_text): from flanker import mime - counter = 1 - message = mime.from_string(force_bytes(message_text)) metadata_dictionary = {} - if not message_properties: - message_properties = {} - - message_properties['Subject'] = message_properties.get( - 'Subject', message.headers.get('Subject') - ) - - message_properties['From'] = message_properties.get( - 'From', message.headers.get('From') - ) - - if source.subject_metadata_type: - metadata_dictionary[ - source.subject_metadata_type.name - ] = message_properties.get('Subject') + message = mime.from_string(force_bytes(message_text)) if source.from_metadata_type: metadata_dictionary[ source.from_metadata_type.name - ] = message_properties.get('From') + ] = message.headers.get('From') + + if source.subject_metadata_type: + metadata_dictionary[ + source.subject_metadata_type.name + ] = message.headers.get('Subject') + + document_ids, parts_metadata_dictionary = EmailBaseModel._process_message(source=source, message=message) + + metadata_dictionary.update(parts_metadata_dictionary) + + if metadata_dictionary: + for document in Document.objects.filter(id__in=document_ids): + set_bulk_metadata( + document=document, + metadata_dictionary=metadata_dictionary + ) + + @staticmethod + def _process_message(source, message): + counter = 1 + document_ids = [] + metadata_dictionary = {} # Messages are tree based, do nested processing of message parts until # a message with no children is found, then work out way up. if message.parts: for part in message.parts: - EmailBaseModel.process_message( - source=source, message_text=part.to_string(), - message_properties=message_properties + part_document_ids, part_metadata_dictionary = EmailBaseModel._process_message( + source=source, message=part, ) + + document_ids.extend(part_document_ids) + metadata_dictionary.update(part_metadata_dictionary) else: # Treat inlines as attachments, both are extracted and saved as # documents if message.is_attachment() or message.is_inline(): - # Reject zero length attachments if len(message.body) == 0: - return + return document_ids, metadata_dictionary label = message.detected_file_name or 'attachment-{}'.format(counter) + counter = counter + 1 + with ContentFile(content=message.body, name=label) as file_object: if label == source.metadata_attachment_name: metadata_dictionary = yaml.load( @@ -147,12 +156,10 @@ class EmailBaseModel(IntervalBaseModel): source.uncompress == SOURCE_UNCOMPRESS_CHOICE_Y ) ) - if metadata_dictionary: - for document in documents: - set_bulk_metadata( - document=document, - metadata_dictionary=metadata_dictionary - ) + + for document in documents: + document_ids.append(document.pk) + else: # If it is not an attachment then it should be a body message part. # Another option is to use message.is_body() @@ -168,12 +175,11 @@ class EmailBaseModel(IntervalBaseModel): expand=SOURCE_UNCOMPRESS_CHOICE_N, file_object=file_object ) - if metadata_dictionary: - for document in documents: - set_bulk_metadata( - document=document, - metadata_dictionary=metadata_dictionary - ) + + for document in documents: + document_ids.append(document.pk) + + return document_ids, metadata_dictionary def clean(self): if self.subject_metadata_type: diff --git a/mayan/apps/sources/tests/test_models.py b/mayan/apps/sources/tests/test_models.py index 0d7fcdc624..9288ff57be 100644 --- a/mayan/apps/sources/tests/test_models.py +++ b/mayan/apps/sources/tests/test_models.py @@ -6,7 +6,13 @@ import shutil import mock from pathlib2 import Path +import yaml +try: + from yaml import CSafeDumper as SafeDumper +except ImportError: + from yaml import SafeDumper +from django.core import mail from django.utils.encoding import force_text from mayan.apps.documents.models import Document @@ -190,6 +196,72 @@ class EmailBaseTestCase(GenericDocumentTestCase): # Only two attachments and a body document self.assertEqual(2, Document.objects.count()) + def test_metadata_yaml_attachment(self): + TEST_METADATA_VALUE_1 = 'test value 1' + TEST_METADATA_VALUE_2 = 'test value 2' + + test_metadata_type_1 = MetadataType.objects.create( + name='test_metadata_type_1' + ) + test_metadata_type_2 = MetadataType.objects.create( + name='test_metadata_type_2' + ) + self.test_document_type.metadata.create( + metadata_type=test_metadata_type_1 + ) + self.test_document_type.metadata.create( + metadata_type=test_metadata_type_2 + ) + + test_metadata_yaml = yaml.dump( + Dumper=SafeDumper, data={ + test_metadata_type_1.name: TEST_METADATA_VALUE_1, + test_metadata_type_2.name: TEST_METADATA_VALUE_2, + } + ) + + # Create email with a test attachment first, then the metadata.yaml + # attachment + with mail.get_connection( + backend='django.core.mail.backends.locmem.EmailBackend' + ) as connection: + email_message = mail.EmailMultiAlternatives( + body='test email body', connection=connection, + subject='test email subject', to=['test@example.com'], + ) + + email_message.attach( + filename='test_attachment', + content='test_content', + ) + + email_message.attach( + filename='metadata.yaml', + content=test_metadata_yaml, + ) + + email_message.send() + + self._create_email_source() + self.source.store_body = True + self.source.save() + + EmailBaseModel.process_message( + source=self.source, message_text=mail.outbox[0].message() + ) + + self.assertEqual(Document.objects.count(), 2) + + for document in Document.objects.all(): + self.assertEqual( + document.metadata.get(metadata_type=test_metadata_type_1).value, + TEST_METADATA_VALUE_1 + ) + self.assertEqual( + document.metadata.get(metadata_type=test_metadata_type_2).value, + TEST_METADATA_VALUE_2 + ) + class IMAPSourceTestCase(GenericDocumentTestCase): auto_upload_document = False From 6eb105be9401c38bd195a94a22d544a8e865a1fa Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:21:29 -0400 Subject: [PATCH 11/23] Update source translation files Signed-off-by: Roberto Rosario --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 15 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 12 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 26 +- .../apps/acls/locale/cs/LC_MESSAGES/django.po | 15 +- .../acls/locale/da_DK/LC_MESSAGES/django.po | 12 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 46 +- .../apps/acls/locale/el/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 47 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 39 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 12 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 12 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 39 +- .../apps/acls/locale/lv/LC_MESSAGES/django.po | 40 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 50 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 31 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 12 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 39 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 55 ++- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 16 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 29 +- .../acls/locale/tr_TR/LC_MESSAGES/django.po | 20 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 12 +- .../apps/acls/locale/zh/LC_MESSAGES/django.po | 15 +- .../locale/ar/LC_MESSAGES/django.po | 54 +- .../locale/bg/LC_MESSAGES/django.po | 51 +- .../locale/bs_BA/LC_MESSAGES/django.po | 62 ++- .../locale/cs/LC_MESSAGES/django.po | 54 +- .../locale/da_DK/LC_MESSAGES/django.po | 51 +- .../locale/de_DE/LC_MESSAGES/django.po | 120 ++++- .../locale/el/LC_MESSAGES/django.po | 63 ++- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 126 ++++- .../locale/fa/LC_MESSAGES/django.po | 63 ++- .../locale/fr/LC_MESSAGES/django.po | 130 ++++- .../locale/hu/LC_MESSAGES/django.po | 51 +- .../locale/id/LC_MESSAGES/django.po | 51 +- .../locale/it/LC_MESSAGES/django.po | 111 ++++- .../locale/lv/LC_MESSAGES/django.po | 114 ++++- .../locale/nl_NL/LC_MESSAGES/django.po | 64 ++- .../locale/pl/LC_MESSAGES/django.po | 63 ++- .../locale/pt/LC_MESSAGES/django.po | 51 +- .../locale/pt_BR/LC_MESSAGES/django.po | 117 ++++- .../locale/ro_RO/LC_MESSAGES/django.po | 127 ++++- .../locale/ru/LC_MESSAGES/django.po | 74 ++- .../locale/sl_SI/LC_MESSAGES/django.po | 62 ++- .../locale/tr_TR/LC_MESSAGES/django.po | 62 ++- .../locale/vi_VN/LC_MESSAGES/django.po | 51 +- .../locale/zh/LC_MESSAGES/django.po | 118 ++++- .../locale/ar/LC_MESSAGES/django.po | 20 +- .../locale/bg/LC_MESSAGES/django.po | 17 +- .../locale/bs_BA/LC_MESSAGES/django.po | 31 +- .../locale/cs/LC_MESSAGES/django.po | 16 +- .../locale/da_DK/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.po | 32 +- .../locale/el/LC_MESSAGES/django.po | 36 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 36 +- .../locale/fa/LC_MESSAGES/django.po | 25 +- .../locale/fr/LC_MESSAGES/django.po | 40 +- .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.po | 16 +- .../locale/it/LC_MESSAGES/django.po | 32 +- .../locale/lv/LC_MESSAGES/django.po | 32 +- .../locale/nl_NL/LC_MESSAGES/django.po | 29 +- .../locale/pl/LC_MESSAGES/django.po | 25 +- .../locale/pt/LC_MESSAGES/django.po | 17 +- .../locale/pt_BR/LC_MESSAGES/django.po | 25 +- .../locale/ro_RO/LC_MESSAGES/django.po | 32 +- .../locale/ru/LC_MESSAGES/django.po | 29 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.po | 25 +- .../locale/vi_VN/LC_MESSAGES/django.po | 17 +- .../locale/zh/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/ar/LC_MESSAGES/django.po | 15 +- .../autoadmin/locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.po | 21 +- .../autoadmin/locale/cs/LC_MESSAGES/django.po | 13 +- .../locale/da_DK/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.po | 18 +- .../autoadmin/locale/el/LC_MESSAGES/django.po | 12 +- .../autoadmin/locale/en/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/es/LC_MESSAGES/django.po | 16 +- .../autoadmin/locale/fa/LC_MESSAGES/django.po | 12 +- .../autoadmin/locale/fr/LC_MESSAGES/django.po | 16 +- .../autoadmin/locale/hu/LC_MESSAGES/django.po | 15 +- .../autoadmin/locale/id/LC_MESSAGES/django.po | 15 +- .../autoadmin/locale/it/LC_MESSAGES/django.po | 15 +- .../autoadmin/locale/lv/LC_MESSAGES/django.po | 15 +- .../locale/nl_NL/LC_MESSAGES/django.po | 15 +- .../autoadmin/locale/pl/LC_MESSAGES/django.po | 19 +- .../autoadmin/locale/pt/LC_MESSAGES/django.po | 22 +- .../locale/pt_BR/LC_MESSAGES/django.po | 18 +- .../locale/ro_RO/LC_MESSAGES/django.po | 22 +- .../autoadmin/locale/ru/LC_MESSAGES/django.po | 16 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../autoadmin/locale/zh/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/ar/LC_MESSAGES/django.po | 88 +++- .../cabinets/locale/bg/LC_MESSAGES/django.po | 65 ++- .../locale/bs_BA/LC_MESSAGES/django.po | 93 +++- .../cabinets/locale/cs/LC_MESSAGES/django.po | 86 +++- .../locale/da_DK/LC_MESSAGES/django.po | 82 +++- .../locale/de_DE/LC_MESSAGES/django.po | 88 +++- .../cabinets/locale/el/LC_MESSAGES/django.po | 81 ++- .../cabinets/locale/en/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/es/LC_MESSAGES/django.po | 81 ++- .../cabinets/locale/fa/LC_MESSAGES/django.po | 81 ++- .../cabinets/locale/fr/LC_MESSAGES/django.po | 85 +++- .../cabinets/locale/hu/LC_MESSAGES/django.po | 80 ++- .../cabinets/locale/id/LC_MESSAGES/django.po | 63 ++- .../cabinets/locale/it/LC_MESSAGES/django.po | 77 ++- .../cabinets/locale/lv/LC_MESSAGES/django.po | 90 +++- .../locale/nl_NL/LC_MESSAGES/django.po | 65 ++- .../cabinets/locale/pl/LC_MESSAGES/django.po | 89 +++- .../cabinets/locale/pt/LC_MESSAGES/django.po | 68 ++- .../locale/pt_BR/LC_MESSAGES/django.po | 96 +++- .../locale/ro_RO/LC_MESSAGES/django.po | 100 +++- .../cabinets/locale/ru/LC_MESSAGES/django.po | 70 ++- .../locale/sl_SI/LC_MESSAGES/django.po | 72 ++- .../locale/tr_TR/LC_MESSAGES/django.po | 84 +++- .../locale/vi_VN/LC_MESSAGES/django.po | 63 ++- .../cabinets/locale/zh/LC_MESSAGES/django.po | 86 +++- .../checkouts/locale/ar/LC_MESSAGES/django.po | 12 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 15 +- .../checkouts/locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../checkouts/locale/el/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/en/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 17 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/fr/LC_MESSAGES/django.po | 20 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 13 +- .../checkouts/locale/lv/LC_MESSAGES/django.po | 20 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 20 +- .../checkouts/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 17 +- .../locale/ro_RO/LC_MESSAGES/django.po | 24 +- .../checkouts/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/zh/LC_MESSAGES/django.po | 9 +- .../common/locale/ar/LC_MESSAGES/django.po | 183 +++---- .../common/locale/bg/LC_MESSAGES/django.po | 180 +++---- .../common/locale/bs_BA/LC_MESSAGES/django.po | 201 ++++---- .../common/locale/cs/LC_MESSAGES/django.po | 183 +++---- .../common/locale/da_DK/LC_MESSAGES/django.po | 180 +++---- .../common/locale/de_DE/LC_MESSAGES/django.po | 445 ++++++++++++----- .../common/locale/el/LC_MESSAGES/django.po | 188 +++---- .../common/locale/en/LC_MESSAGES/django.po | 100 ++-- .../common/locale/es/LC_MESSAGES/django.po | 462 +++++++++++++----- .../common/locale/fa/LC_MESSAGES/django.po | 184 +++---- .../common/locale/fr/LC_MESSAGES/django.po | 213 ++++---- .../common/locale/hu/LC_MESSAGES/django.po | 180 +++---- .../common/locale/id/LC_MESSAGES/django.po | 180 +++---- .../common/locale/it/LC_MESSAGES/django.po | 256 ++++++---- .../common/locale/lv/LC_MESSAGES/django.po | 421 +++++++++++----- .../common/locale/nl_NL/LC_MESSAGES/django.po | 187 +++---- .../common/locale/pl/LC_MESSAGES/django.po | 191 ++++---- .../common/locale/pt/LC_MESSAGES/django.po | 180 +++---- .../common/locale/pt_BR/LC_MESSAGES/django.po | 364 +++++++++----- .../common/locale/ro_RO/LC_MESSAGES/django.po | 450 ++++++++++++----- .../common/locale/ru/LC_MESSAGES/django.po | 207 ++++---- .../common/locale/sl_SI/LC_MESSAGES/django.po | 183 +++---- .../common/locale/tr_TR/LC_MESSAGES/django.po | 190 +++---- .../common/locale/vi_VN/LC_MESSAGES/django.po | 180 +++---- .../common/locale/zh/LC_MESSAGES/django.po | 277 +++++++---- .../converter/locale/ar/LC_MESSAGES/django.po | 12 +- .../converter/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 20 +- .../converter/locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 35 +- .../converter/locale/el/LC_MESSAGES/django.po | 19 +- .../converter/locale/en/LC_MESSAGES/django.po | 2 +- .../converter/locale/es/LC_MESSAGES/django.po | 31 +- .../converter/locale/fa/LC_MESSAGES/django.po | 17 +- .../converter/locale/fr/LC_MESSAGES/django.po | 38 +- .../converter/locale/hu/LC_MESSAGES/django.po | 9 +- .../converter/locale/id/LC_MESSAGES/django.po | 9 +- .../converter/locale/it/LC_MESSAGES/django.po | 23 +- .../converter/locale/lv/LC_MESSAGES/django.po | 37 +- .../locale/nl_NL/LC_MESSAGES/django.po | 20 +- .../converter/locale/pl/LC_MESSAGES/django.po | 21 +- .../converter/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 21 +- .../locale/ro_RO/LC_MESSAGES/django.po | 38 +- .../converter/locale/ru/LC_MESSAGES/django.po | 25 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 17 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../converter/locale/zh/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 9 +- .../locale/bg/LC_MESSAGES/django.po | 11 +- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../locale/cs/LC_MESSAGES/django.po | 9 +- .../locale/da_DK/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/el/LC_MESSAGES/django.po | 8 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 8 +- .../locale/fa/LC_MESSAGES/django.po | 8 +- .../locale/fr/LC_MESSAGES/django.po | 8 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 8 +- .../locale/lv/LC_MESSAGES/django.po | 11 +- .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 14 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.po | 12 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 8 +- .../locale/ar/LC_MESSAGES/django.po | 15 +- .../locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../locale/cs/LC_MESSAGES/django.po | 15 +- .../locale/da_DK/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../locale/el/LC_MESSAGES/django.po | 12 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 32 +- .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.po | 16 +- .../locale/hu/LC_MESSAGES/django.po | 15 +- .../locale/id/LC_MESSAGES/django.po | 15 +- .../locale/it/LC_MESSAGES/django.po | 12 +- .../locale/lv/LC_MESSAGES/django.po | 15 +- .../locale/nl_NL/LC_MESSAGES/django.po | 15 +- .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.po | 18 +- .../locale/pt_BR/LC_MESSAGES/django.po | 15 +- .../locale/ro_RO/LC_MESSAGES/django.po | 18 +- .../locale/ru/LC_MESSAGES/django.po | 16 +- .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/tr_TR/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../locale/zh/LC_MESSAGES/django.po | 12 +- .../locale/ar/LC_MESSAGES/django.po | 20 +- .../locale/bg/LC_MESSAGES/django.po | 17 +- .../locale/bs_BA/LC_MESSAGES/django.po | 24 +- .../locale/cs/LC_MESSAGES/django.po | 20 +- .../locale/da_DK/LC_MESSAGES/django.po | 17 +- .../locale/de_DE/LC_MESSAGES/django.po | 41 +- .../locale/el/LC_MESSAGES/django.po | 28 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 45 +- .../locale/fa/LC_MESSAGES/django.po | 17 +- .../locale/fr/LC_MESSAGES/django.po | 40 +- .../locale/hu/LC_MESSAGES/django.po | 17 +- .../locale/id/LC_MESSAGES/django.po | 17 +- .../locale/it/LC_MESSAGES/django.po | 25 +- .../locale/lv/LC_MESSAGES/django.po | 41 +- .../locale/nl_NL/LC_MESSAGES/django.po | 21 +- .../locale/pl/LC_MESSAGES/django.po | 28 +- .../locale/pt/LC_MESSAGES/django.po | 21 +- .../locale/pt_BR/LC_MESSAGES/django.po | 35 +- .../locale/ro_RO/LC_MESSAGES/django.po | 42 +- .../locale/ru/LC_MESSAGES/django.po | 25 +- .../locale/sl_SI/LC_MESSAGES/django.po | 20 +- .../locale/tr_TR/LC_MESSAGES/django.po | 20 +- .../locale/vi_VN/LC_MESSAGES/django.po | 17 +- .../locale/zh/LC_MESSAGES/django.po | 21 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/el/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 13 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 13 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/lv/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 13 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 28 +- .../locale/bg/LC_MESSAGES/django.po | 24 +- .../locale/bs_BA/LC_MESSAGES/django.po | 42 +- .../locale/cs/LC_MESSAGES/django.po | 23 +- .../locale/da_DK/LC_MESSAGES/django.po | 20 +- .../locale/de_DE/LC_MESSAGES/django.po | 67 ++- .../locale/el/LC_MESSAGES/django.po | 40 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 69 ++- .../locale/fa/LC_MESSAGES/django.po | 34 +- .../locale/fr/LC_MESSAGES/django.po | 50 +- .../locale/hu/LC_MESSAGES/django.po | 20 +- .../locale/id/LC_MESSAGES/django.po | 20 +- .../locale/it/LC_MESSAGES/django.po | 39 +- .../locale/lv/LC_MESSAGES/django.po | 58 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 33 +- .../locale/pl/LC_MESSAGES/django.po | 40 +- .../locale/pt/LC_MESSAGES/django.po | 32 +- .../locale/pt_BR/LC_MESSAGES/django.po | 62 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 79 ++- .../locale/ru/LC_MESSAGES/django.po | 33 +- .../locale/sl_SI/LC_MESSAGES/django.po | 23 +- .../locale/tr_TR/LC_MESSAGES/django.po | 34 +- .../locale/vi_VN/LC_MESSAGES/django.po | 20 +- .../locale/zh/LC_MESSAGES/django.po | 32 +- .../locale/ar/LC_MESSAGES/django.po | 17 +- .../locale/bg/LC_MESSAGES/django.po | 14 +- .../locale/bs_BA/LC_MESSAGES/django.po | 17 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 14 +- .../locale/de_DE/LC_MESSAGES/django.po | 14 +- .../locale/el/LC_MESSAGES/django.po | 11 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 14 +- .../locale/fa/LC_MESSAGES/django.po | 11 +- .../locale/fr/LC_MESSAGES/django.po | 23 +- .../locale/hu/LC_MESSAGES/django.po | 14 +- .../locale/id/LC_MESSAGES/django.po | 14 +- .../locale/it/LC_MESSAGES/django.po | 11 +- .../locale/lv/LC_MESSAGES/django.po | 14 +- .../locale/nl_NL/LC_MESSAGES/django.po | 18 +- .../locale/pl/LC_MESSAGES/django.po | 15 +- .../locale/pt/LC_MESSAGES/django.po | 14 +- .../locale/pt_BR/LC_MESSAGES/django.po | 17 +- .../locale/ro_RO/LC_MESSAGES/django.po | 21 +- .../locale/ru/LC_MESSAGES/django.po | 19 +- .../locale/sl_SI/LC_MESSAGES/django.po | 17 +- .../locale/tr_TR/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.po | 14 +- .../locale/zh/LC_MESSAGES/django.po | 11 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 30 +- .../locale/el/LC_MESSAGES/django.po | 13 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 26 +- .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.po | 26 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.po | 13 +- .../locale/lv/LC_MESSAGES/django.po | 27 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 13 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 21 +- .../locale/ro_RO/LC_MESSAGES/django.po | 32 +- .../locale/ru/LC_MESSAGES/django.po | 17 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 122 ++--- .../locale/bg/LC_MESSAGES/django.po | 119 ++--- .../locale/bs_BA/LC_MESSAGES/django.po | 163 +++--- .../locale/cs/LC_MESSAGES/django.po | 122 ++--- .../locale/da_DK/LC_MESSAGES/django.po | 119 ++--- .../locale/de_DE/LC_MESSAGES/django.po | 217 +++++--- .../locale/el/LC_MESSAGES/django.po | 140 +++--- .../locale/en/LC_MESSAGES/django.po | 82 ++-- .../locale/es/LC_MESSAGES/django.po | 229 +++++---- .../locale/fa/LC_MESSAGES/django.po | 155 +++--- .../locale/fr/LC_MESSAGES/django.po | 203 +++++--- .../locale/hu/LC_MESSAGES/django.po | 119 ++--- .../locale/id/LC_MESSAGES/django.po | 119 ++--- .../locale/it/LC_MESSAGES/django.po | 127 ++--- .../locale/lv/LC_MESSAGES/django.po | 200 +++++--- .../locale/nl_NL/LC_MESSAGES/django.po | 119 ++--- .../locale/pl/LC_MESSAGES/django.po | 123 ++--- .../locale/pt/LC_MESSAGES/django.po | 119 ++--- .../locale/pt_BR/LC_MESSAGES/django.po | 219 ++++++--- .../locale/ro_RO/LC_MESSAGES/django.po | 226 +++++---- .../locale/ru/LC_MESSAGES/django.po | 123 ++--- .../locale/sl_SI/LC_MESSAGES/django.po | 122 ++--- .../locale/tr_TR/LC_MESSAGES/django.po | 143 +++--- .../locale/vi_VN/LC_MESSAGES/django.po | 119 ++--- .../locale/zh/LC_MESSAGES/django.po | 142 +++--- .../documents/locale/ar/LC_MESSAGES/django.po | 96 ++-- .../documents/locale/bg/LC_MESSAGES/django.po | 116 +++-- .../locale/bs_BA/LC_MESSAGES/django.po | 156 +++--- .../documents/locale/cs/LC_MESSAGES/django.po | 88 ++-- .../locale/da_DK/LC_MESSAGES/django.po | 85 ++-- .../locale/de_DE/LC_MESSAGES/django.po | 247 +++++++--- .../documents/locale/el/LC_MESSAGES/django.po | 157 +++--- .../documents/locale/en/LC_MESSAGES/django.po | 30 +- .../documents/locale/es/LC_MESSAGES/django.po | 294 +++++++---- .../documents/locale/fa/LC_MESSAGES/django.po | 129 +++-- .../documents/locale/fr/LC_MESSAGES/django.po | 300 ++++++++---- .../documents/locale/hu/LC_MESSAGES/django.po | 119 +++-- .../documents/locale/id/LC_MESSAGES/django.po | 127 +++-- .../documents/locale/it/LC_MESSAGES/django.po | 138 +++--- .../documents/locale/lv/LC_MESSAGES/django.po | 245 +++++++--- .../locale/nl_NL/LC_MESSAGES/django.po | 104 ++-- .../documents/locale/pl/LC_MESSAGES/django.po | 154 +++--- .../documents/locale/pt/LC_MESSAGES/django.po | 105 ++-- .../locale/pt_BR/LC_MESSAGES/django.po | 179 ++++--- .../locale/ro_RO/LC_MESSAGES/django.po | 288 +++++++---- .../documents/locale/ru/LC_MESSAGES/django.po | 127 +++-- .../locale/sl_SI/LC_MESSAGES/django.po | 114 +++-- .../locale/tr_TR/LC_MESSAGES/django.po | 150 +++--- .../locale/vi_VN/LC_MESSAGES/django.po | 92 ++-- .../documents/locale/zh/LC_MESSAGES/django.po | 140 +++--- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 17 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 14 +- .../locale/el/LC_MESSAGES/django.po | 14 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 14 +- .../locale/fa/LC_MESSAGES/django.po | 14 +- .../locale/fr/LC_MESSAGES/django.po | 14 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/lv/LC_MESSAGES/django.po | 17 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 18 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 14 +- .../locale/ro_RO/LC_MESSAGES/django.po | 17 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 13 +- .../events/locale/ar/LC_MESSAGES/django.po | 12 +- .../events/locale/bg/LC_MESSAGES/django.po | 9 +- .../events/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../events/locale/cs/LC_MESSAGES/django.po | 12 +- .../events/locale/da_DK/LC_MESSAGES/django.po | 9 +- .../events/locale/de_DE/LC_MESSAGES/django.po | 17 +- .../events/locale/el/LC_MESSAGES/django.po | 9 +- .../events/locale/en/LC_MESSAGES/django.po | 2 +- .../events/locale/es/LC_MESSAGES/django.po | 16 +- .../events/locale/fa/LC_MESSAGES/django.po | 9 +- .../events/locale/fr/LC_MESSAGES/django.po | 17 +- .../events/locale/hu/LC_MESSAGES/django.po | 9 +- .../events/locale/id/LC_MESSAGES/django.po | 9 +- .../events/locale/it/LC_MESSAGES/django.po | 9 +- .../events/locale/lv/LC_MESSAGES/django.po | 12 +- .../events/locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../events/locale/pl/LC_MESSAGES/django.po | 13 +- .../events/locale/pt/LC_MESSAGES/django.po | 9 +- .../events/locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../events/locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../events/locale/ru/LC_MESSAGES/django.po | 13 +- .../events/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../events/locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../events/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../events/locale/zh/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 15 +- .../locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../locale/cs/LC_MESSAGES/django.po | 15 +- .../locale/da_DK/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.po | 18 +- .../locale/el/LC_MESSAGES/django.po | 12 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 22 +- .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.po | 16 +- .../locale/hu/LC_MESSAGES/django.po | 15 +- .../locale/id/LC_MESSAGES/django.po | 15 +- .../locale/it/LC_MESSAGES/django.po | 12 +- .../locale/lv/LC_MESSAGES/django.po | 19 +- .../locale/nl_NL/LC_MESSAGES/django.po | 15 +- .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.po | 18 +- .../locale/pt_BR/LC_MESSAGES/django.po | 18 +- .../locale/ro_RO/LC_MESSAGES/django.po | 35 +- .../locale/ru/LC_MESSAGES/django.po | 16 +- .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/tr_TR/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../locale/zh/LC_MESSAGES/django.po | 12 +- .../linking/locale/ar/LC_MESSAGES/django.po | 19 +- .../linking/locale/bg/LC_MESSAGES/django.po | 16 +- .../locale/bs_BA/LC_MESSAGES/django.po | 27 +- .../linking/locale/cs/LC_MESSAGES/django.po | 19 +- .../locale/da_DK/LC_MESSAGES/django.po | 16 +- .../locale/de_DE/LC_MESSAGES/django.po | 43 +- .../linking/locale/el/LC_MESSAGES/django.po | 26 +- .../linking/locale/en/LC_MESSAGES/django.po | 2 +- .../linking/locale/es/LC_MESSAGES/django.po | 47 +- .../linking/locale/fa/LC_MESSAGES/django.po | 23 +- .../linking/locale/fr/LC_MESSAGES/django.po | 27 +- .../linking/locale/hu/LC_MESSAGES/django.po | 16 +- .../linking/locale/id/LC_MESSAGES/django.po | 16 +- .../linking/locale/it/LC_MESSAGES/django.po | 27 +- .../linking/locale/lv/LC_MESSAGES/django.po | 45 +- .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../linking/locale/pl/LC_MESSAGES/django.po | 24 +- .../linking/locale/pt/LC_MESSAGES/django.po | 16 +- .../locale/pt_BR/LC_MESSAGES/django.po | 27 +- .../locale/ro_RO/LC_MESSAGES/django.po | 50 +- .../linking/locale/ru/LC_MESSAGES/django.po | 20 +- .../locale/sl_SI/LC_MESSAGES/django.po | 19 +- .../locale/tr_TR/LC_MESSAGES/django.po | 23 +- .../locale/vi_VN/LC_MESSAGES/django.po | 16 +- .../linking/locale/zh/LC_MESSAGES/django.po | 27 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../locale/el/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 16 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 17 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/lv/LC_MESSAGES/django.po | 19 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 13 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 20 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 9 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 34 +- .../mailer/locale/bg/LC_MESSAGES/django.po | 31 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 83 +++- .../mailer/locale/cs/LC_MESSAGES/django.po | 34 +- .../mailer/locale/da_DK/LC_MESSAGES/django.po | 31 +- .../mailer/locale/de_DE/LC_MESSAGES/django.po | 95 ++-- .../mailer/locale/el/LC_MESSAGES/django.po | 86 +++- .../mailer/locale/en/LC_MESSAGES/django.po | 8 +- .../mailer/locale/es/LC_MESSAGES/django.po | 116 +++-- .../mailer/locale/fa/LC_MESSAGES/django.po | 31 +- .../mailer/locale/fr/LC_MESSAGES/django.po | 98 ++-- .../mailer/locale/hu/LC_MESSAGES/django.po | 31 +- .../mailer/locale/id/LC_MESSAGES/django.po | 31 +- .../mailer/locale/it/LC_MESSAGES/django.po | 47 +- .../mailer/locale/lv/LC_MESSAGES/django.po | 80 ++- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 31 +- .../mailer/locale/pl/LC_MESSAGES/django.po | 44 +- .../mailer/locale/pt/LC_MESSAGES/django.po | 35 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 44 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 108 ++-- .../mailer/locale/ru/LC_MESSAGES/django.po | 35 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 34 +- .../mailer/locale/tr_TR/LC_MESSAGES/django.po | 78 ++- .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 31 +- .../mailer/locale/zh/LC_MESSAGES/django.po | 61 ++- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/el/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/lv/LC_MESSAGES/django.po | 12 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 13 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 15 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 9 +- .../metadata/locale/ar/LC_MESSAGES/django.po | 33 +- .../metadata/locale/bg/LC_MESSAGES/django.po | 24 +- .../locale/bs_BA/LC_MESSAGES/django.po | 53 +- .../metadata/locale/cs/LC_MESSAGES/django.po | 27 +- .../locale/da_DK/LC_MESSAGES/django.po | 24 +- .../locale/de_DE/LC_MESSAGES/django.po | 90 ++-- .../metadata/locale/el/LC_MESSAGES/django.po | 24 +- .../metadata/locale/en/LC_MESSAGES/django.po | 2 +- .../metadata/locale/es/LC_MESSAGES/django.po | 93 ++-- .../metadata/locale/fa/LC_MESSAGES/django.po | 40 +- .../metadata/locale/fr/LC_MESSAGES/django.po | 84 ++-- .../metadata/locale/hu/LC_MESSAGES/django.po | 24 +- .../metadata/locale/id/LC_MESSAGES/django.po | 24 +- .../metadata/locale/it/LC_MESSAGES/django.po | 52 +- .../metadata/locale/lv/LC_MESSAGES/django.po | 86 ++-- .../locale/nl_NL/LC_MESSAGES/django.po | 24 +- .../metadata/locale/pl/LC_MESSAGES/django.po | 45 +- .../metadata/locale/pt/LC_MESSAGES/django.po | 29 +- .../locale/pt_BR/LC_MESSAGES/django.po | 53 +- .../locale/ro_RO/LC_MESSAGES/django.po | 93 ++-- .../metadata/locale/ru/LC_MESSAGES/django.po | 50 +- .../locale/sl_SI/LC_MESSAGES/django.po | 27 +- .../locale/tr_TR/LC_MESSAGES/django.po | 50 +- .../locale/vi_VN/LC_MESSAGES/django.po | 24 +- .../metadata/locale/zh/LC_MESSAGES/django.po | 47 +- .../mirroring/locale/ar/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/el/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/en/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 16 +- .../mirroring/locale/lv/LC_MESSAGES/django.po | 12 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 13 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 17 +- .../locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../mirroring/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/zh/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 9 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/cs/LC_MESSAGES/django.po | 12 +- .../motd/locale/da_DK/LC_MESSAGES/django.po | 9 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 14 +- .../apps/motd/locale/el/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/es/LC_MESSAGES/django.po | 17 +- .../apps/motd/locale/fa/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/fr/LC_MESSAGES/django.po | 14 +- .../apps/motd/locale/hu/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/id/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/it/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/lv/LC_MESSAGES/django.po | 17 +- .../motd/locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/pl/LC_MESSAGES/django.po | 13 +- .../apps/motd/locale/pt/LC_MESSAGES/django.po | 9 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 17 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 13 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../motd/locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../motd/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/zh/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 16 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 13 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../apps/ocr/locale/cs/LC_MESSAGES/django.po | 16 +- .../ocr/locale/da_DK/LC_MESSAGES/django.po | 13 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 25 +- .../apps/ocr/locale/el/LC_MESSAGES/django.po | 23 +- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 17 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 16 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 20 +- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 13 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 13 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 17 +- .../apps/ocr/locale/lv/LC_MESSAGES/django.po | 24 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 17 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 13 +- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 27 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 21 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../ocr/locale/tr_TR/LC_MESSAGES/django.po | 17 +- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../apps/ocr/locale/zh/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 20 +- .../locale/bg/LC_MESSAGES/django.po | 17 +- .../locale/bs_BA/LC_MESSAGES/django.po | 28 +- .../locale/cs/LC_MESSAGES/django.po | 18 +- .../locale/da_DK/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.po | 41 +- .../locale/el/LC_MESSAGES/django.po | 25 +- .../locale/en/LC_MESSAGES/django.po | 8 +- .../locale/es/LC_MESSAGES/django.po | 40 +- .../locale/fa/LC_MESSAGES/django.po | 24 +- .../locale/fr/LC_MESSAGES/django.po | 41 +- .../locale/hu/LC_MESSAGES/django.po | 25 +- .../locale/id/LC_MESSAGES/django.po | 15 +- .../locale/it/LC_MESSAGES/django.po | 21 +- .../locale/lv/LC_MESSAGES/django.po | 40 +- .../locale/nl_NL/LC_MESSAGES/django.po | 17 +- .../locale/pl/LC_MESSAGES/django.po | 21 +- .../locale/pt/LC_MESSAGES/django.po | 17 +- .../locale/pt_BR/LC_MESSAGES/django.po | 25 +- .../locale/ro_RO/LC_MESSAGES/django.po | 43 +- .../locale/ru/LC_MESSAGES/django.po | 21 +- .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/tr_TR/LC_MESSAGES/django.po | 21 +- .../locale/vi_VN/LC_MESSAGES/django.po | 17 +- .../locale/zh/LC_MESSAGES/django.po | 21 +- .../platform/locale/ar/LC_MESSAGES/django.po | 13 +- .../platform/locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../platform/locale/cs/LC_MESSAGES/django.po | 11 +- .../locale/da_DK/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../platform/locale/el/LC_MESSAGES/django.po | 8 +- .../platform/locale/en/LC_MESSAGES/django.po | 4 +- .../platform/locale/es/LC_MESSAGES/django.po | 10 +- .../platform/locale/fa/LC_MESSAGES/django.po | 10 +- .../platform/locale/fr/LC_MESSAGES/django.po | 10 +- .../platform/locale/hu/LC_MESSAGES/django.po | 11 +- .../platform/locale/id/LC_MESSAGES/django.po | 11 +- .../platform/locale/it/LC_MESSAGES/django.po | 10 +- .../platform/locale/lv/LC_MESSAGES/django.po | 13 +- .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../platform/locale/pl/LC_MESSAGES/django.po | 14 +- .../platform/locale/pt/LC_MESSAGES/django.po | 16 +- .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../platform/locale/ru/LC_MESSAGES/django.po | 14 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/tr_TR/LC_MESSAGES/django.po | 11 +- .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../platform/locale/zh/LC_MESSAGES/django.po | 8 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/el/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/lv/LC_MESSAGES/django.po | 12 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 13 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/zh/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/el/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 13 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 13 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/lv/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 13 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 9 +- .../sources/locale/ar/LC_MESSAGES/django.po | 47 +- .../sources/locale/bg/LC_MESSAGES/django.po | 44 +- .../locale/bs_BA/LC_MESSAGES/django.po | 109 +++-- .../sources/locale/cs/LC_MESSAGES/django.po | 47 +- .../locale/da_DK/LC_MESSAGES/django.po | 48 +- .../locale/de_DE/LC_MESSAGES/django.po | 154 ++++-- .../sources/locale/el/LC_MESSAGES/django.po | 84 ++-- .../sources/locale/en/LC_MESSAGES/django.po | 33 +- .../sources/locale/es/LC_MESSAGES/django.po | 164 +++++-- .../sources/locale/fa/LC_MESSAGES/django.po | 97 ++-- .../sources/locale/fr/LC_MESSAGES/django.po | 124 +++-- .../sources/locale/hu/LC_MESSAGES/django.po | 44 +- .../sources/locale/id/LC_MESSAGES/django.po | 48 +- .../sources/locale/it/LC_MESSAGES/django.po | 88 ++-- .../sources/locale/lv/LC_MESSAGES/django.po | 150 ++++-- .../locale/nl_NL/LC_MESSAGES/django.po | 54 +- .../sources/locale/pl/LC_MESSAGES/django.po | 48 +- .../sources/locale/pt/LC_MESSAGES/django.po | 48 +- .../locale/pt_BR/LC_MESSAGES/django.po | 89 ++-- .../locale/ro_RO/LC_MESSAGES/django.po | 158 ++++-- .../sources/locale/ru/LC_MESSAGES/django.po | 72 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 47 +- .../locale/tr_TR/LC_MESSAGES/django.po | 106 ++-- .../locale/vi_VN/LC_MESSAGES/django.po | 44 +- .../sources/locale/zh/LC_MESSAGES/django.po | 73 +-- .../storage/locale/ar/LC_MESSAGES/django.po | 12 +- .../storage/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../storage/locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../storage/locale/el/LC_MESSAGES/django.po | 13 +- .../storage/locale/en/LC_MESSAGES/django.po | 2 +- .../storage/locale/es/LC_MESSAGES/django.po | 13 +- .../storage/locale/fa/LC_MESSAGES/django.po | 13 +- .../storage/locale/fr/LC_MESSAGES/django.po | 13 +- .../storage/locale/hu/LC_MESSAGES/django.po | 9 +- .../storage/locale/id/LC_MESSAGES/django.po | 9 +- .../storage/locale/it/LC_MESSAGES/django.po | 13 +- .../storage/locale/lv/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../storage/locale/pl/LC_MESSAGES/django.po | 17 +- .../storage/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../storage/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../storage/locale/zh/LC_MESSAGES/django.po | 9 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 29 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 23 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 34 +- .../apps/tags/locale/cs/LC_MESSAGES/django.po | 26 +- .../tags/locale/da_DK/LC_MESSAGES/django.po | 23 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 31 +- .../apps/tags/locale/el/LC_MESSAGES/django.po | 33 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 16 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 38 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 33 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 46 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 38 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 23 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 38 +- .../apps/tags/locale/lv/LC_MESSAGES/django.po | 49 +- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 26 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 35 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 23 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 38 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 45 +- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 27 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 26 +- .../tags/locale/tr_TR/LC_MESSAGES/django.po | 33 +- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 23 +- .../apps/tags/locale/zh/LC_MESSAGES/django.po | 23 +- .../locale/ar/LC_MESSAGES/django.po | 11 +- .../locale/bg/LC_MESSAGES/django.po | 11 +- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../locale/cs/LC_MESSAGES/django.po | 11 +- .../locale/da_DK/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/el/LC_MESSAGES/django.po | 8 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 8 +- .../locale/fa/LC_MESSAGES/django.po | 8 +- .../locale/fr/LC_MESSAGES/django.po | 8 +- .../locale/hu/LC_MESSAGES/django.po | 11 +- .../locale/id/LC_MESSAGES/django.po | 11 +- .../locale/it/LC_MESSAGES/django.po | 8 +- .../locale/lv/LC_MESSAGES/django.po | 11 +- .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 14 +- .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.po | 12 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/tr_TR/LC_MESSAGES/django.po | 11 +- .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../locale/zh/LC_MESSAGES/django.po | 8 +- .../locale/ar/LC_MESSAGES/django.po | 52 +- .../locale/bg/LC_MESSAGES/django.po | 49 +- .../locale/bs_BA/LC_MESSAGES/django.po | 59 ++- .../locale/cs/LC_MESSAGES/django.po | 48 +- .../locale/da_DK/LC_MESSAGES/django.po | 45 +- .../locale/de_DE/LC_MESSAGES/django.po | 67 ++- .../locale/el/LC_MESSAGES/django.po | 53 +- .../locale/en/LC_MESSAGES/django.po | 38 +- .../locale/es/LC_MESSAGES/django.po | 67 ++- .../locale/fa/LC_MESSAGES/django.po | 53 +- .../locale/fr/LC_MESSAGES/django.po | 72 ++- .../locale/hu/LC_MESSAGES/django.po | 47 +- .../locale/id/LC_MESSAGES/django.po | 45 +- .../locale/it/LC_MESSAGES/django.po | 53 +- .../locale/lv/LC_MESSAGES/django.po | 64 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 53 +- .../locale/pl/LC_MESSAGES/django.po | 61 ++- .../locale/pt/LC_MESSAGES/django.po | 51 +- .../locale/pt_BR/LC_MESSAGES/django.po | 57 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 72 ++- .../locale/ru/LC_MESSAGES/django.po | 57 ++- .../locale/sl_SI/LC_MESSAGES/django.po | 48 +- .../locale/tr_TR/LC_MESSAGES/django.po | 56 ++- .../locale/vi_VN/LC_MESSAGES/django.po | 49 +- .../locale/zh/LC_MESSAGES/django.po | 53 +- 950 files changed, 21656 insertions(+), 12902 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 86ef081477..f7c74f6733 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -169,8 +171,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index 3b5d60a77e..89b7f558f0 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -169,8 +170,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po index 6941392004..c5c1174560 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -90,7 +92,9 @@ msgstr "API URL ukazujući na listu dozvola za ovu listu kontrole pristupa." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "URL API koji ukazuje na dozvolu u vezi sa listom kontrole pristupa kojoj je priložena. Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." +msgstr "" +"URL API koji ukazuje na dozvolu u vezi sa listom kontrole pristupa kojoj je " +"priložena. Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -105,7 +109,9 @@ msgstr "Nema takve dozvole: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista odvojenih primarnih ključeva za razdvajanje sa komandom dodeljuje se ovoj listi kontrola pristupa." +msgstr "" +"Lista odvojenih primarnih ključeva za razdvajanje sa komandom dodeljuje se " +"ovoj listi kontrola pristupa." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -170,8 +176,7 @@ msgid "Object ID" msgstr "ID objekta" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Numerički identifikator objekta za koji će se pristup mijenjati." #: workflow_actions.py:43 workflow_actions.py:158 @@ -185,7 +190,8 @@ msgstr "Uloge čiji će pristup biti modifikovan." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Dozvole za dodeljivanje / poništavanje / od uloge za gore izabrani objekat." +msgstr "" +"Dozvole za dodeljivanje / poništavanje / od uloge za gore izabrani objekat." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po index f0a3cb7eff..df870873dd 100644 --- a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jiri Fait , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -170,8 +172,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po index 0acd6b036a..81c991375d 100644 --- a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -170,8 +171,7 @@ msgid "Object ID" msgstr "Objekt ID" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po index 98d027bde6..a9d80a709d 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -56,7 +57,9 @@ msgstr "Berechtigungen" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "Objekt \"%s\" ist kein Modell und kann nicht auf Zugriffsberechtigungen überprüft werden." +msgstr "" +"Objekt \"%s\" ist kein Modell und kann nicht auf Zugriffsberechtigungen " +"überprüft werden." #: managers.py:236 #, python-format @@ -93,11 +96,15 @@ msgstr "API URL für die Liste der Berechtigungen dieser ACL" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL für die Berechtigung in Beziehung zur Zugriffsberechtigungsliste der sie zugeordnet ist. Diese URL unterscheidet sich von der normalen Workflow URL." +msgstr "" +"API URL für die Berechtigung in Beziehung zur Zugriffsberechtigungsliste der " +"sie zugeordnet ist. Diese URL unterscheidet sich von der normalen Workflow " +"URL." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Primärschlüssel der neuen Berechtigung für die Zugriffsberechtigungsliste." +msgstr "" +"Primärschlüssel der neuen Berechtigung für die Zugriffsberechtigungsliste." #: serializers.py:115 serializers.py:191 #, python-format @@ -108,11 +115,14 @@ msgstr "Keine solche Berechtigung: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Durch Komma getrennte Liste von Primärschlüsseln der zu dieser Zugriffsberechtigungsliste hinzuzufügenden Berechtigungen." +msgstr "" +"Durch Komma getrennte Liste von Primärschlüsseln der zu dieser " +"Zugriffsberechtigungsliste hinzuzufügenden Berechtigungen." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Primärschlüssel der Rolle die dieser Zugriffsberechtigung zugeordnet ist." +msgstr "" +"Primärschlüssel der Rolle die dieser Zugriffsberechtigung zugeordnet ist." #: views.py:62 #, python-format @@ -132,7 +142,9 @@ msgstr "Keine Zugriffsberechtigungen für dieses Objekt verfügbar" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "Über Zugriffsberechtigungen wird der Zugriff von Benutzern zu Systemobjekten kontrolliert." +msgstr "" +"Über Zugriffsberechtigungen wird der Zugriff von Benutzern zu Systemobjekten " +"kontrolliert." #: views.py:154 #, python-format @@ -158,7 +170,12 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "Unzureichende Berechtigungen werden durch ein übergeordnetes Objekt vererbt oder direkt an die Rolle erteilt. Sie können nicht direkt auf diesem Formular bearbeitet werden. Vererbte Berechtigungen müssen auf dem übergeordneten Objekt oder für die Rolle über das Einrichtungsmenü eingestellt werden." +msgstr "" +"Unzureichende Berechtigungen werden durch ein übergeordnetes Objekt vererbt " +"oder direkt an die Rolle erteilt. Sie können nicht direkt auf diesem " +"Formular bearbeitet werden. Vererbte Berechtigungen müssen auf dem " +"übergeordneten Objekt oder für die Rolle über das Einrichtungsmenü " +"eingestellt werden." #: workflow_actions.py:26 msgid "Object type" @@ -173,8 +190,7 @@ msgid "Object ID" msgstr "Objekt ID" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Numerischer Identifikator des Objekts" #: workflow_actions.py:43 workflow_actions.py:158 @@ -188,7 +204,9 @@ msgstr "Rollen deren Zugang bearbeitet wird." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Berechtigungen, die der Rolle für das ausgewählte Objekt erteilt oder entzogen werden." +msgstr "" +"Berechtigungen, die der Rolle für das ausgewählte Objekt erteilt oder " +"entzogen werden." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po index ba0fa8ae15..4d336f1837 100644 --- a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -169,9 +170,10 @@ msgid "Object ID" msgstr "Αναγνωριστικό αντικειμένου" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." -msgstr "Αριθμητικό αναγνωριστικό του αντικειμένου για το οποίο η πρόσβαση θα τροποποιηθεί." +msgid "Numeric identifier of the object for which the access will be modified." +msgstr "" +"Αριθμητικό αναγνωριστικό του αντικειμένου για το οποίο η πρόσβαση θα " +"τροποποιηθεί." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -184,7 +186,9 @@ msgstr "Ρόλοι των οποιων η πρόσβαση θα τροποποι #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Δικαιώματα προς χορήγηση/ανάληση προς/από τον ρόλο για το ανωτέρω επιλεγμένο αντικείμενο." +msgstr "" +"Δικαιώματα προς χορήγηση/ανάληση προς/από τον ρόλο για το ανωτέρω επιλεγμένο " +"αντικείμενο." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 69b17e1c43..515977122a 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index acac77c884..0498902c5e 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2015 # Roberto Rosario, 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -86,17 +87,24 @@ msgstr "Ver LCAs" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "URL de la API que apunta a la lista de permisos para esta lista de control de acceso." +msgstr "" +"URL de la API que apunta a la lista de permisos para esta lista de control " +"de acceso." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "URL de la API que apunta a un permiso en relación con la lista de control de acceso a la que está conectado. Esta URL es diferente de la URL canónica de flujo de trabajo." +msgstr "" +"URL de la API que apunta a un permiso en relación con la lista de control " +"de acceso a la que está conectado. Esta URL es diferente de la URL canónica " +"de flujo de trabajo." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Llave primaria del nuevo permiso para conceder a la lista de control de acceso." +msgstr "" +"Llave primaria del nuevo permiso para conceder a la lista de control de " +"acceso." #: serializers.py:115 serializers.py:191 #, python-format @@ -107,11 +115,15 @@ msgstr "No existe el permiso: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista separada por comas de las llaves primarias de permisos para conceder a esta lista de control de acceso." +msgstr "" +"Lista separada por comas de las llaves primarias de permisos para conceder a " +"esta lista de control de acceso." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Las llaves primarias de los roles a los que se vincula esta lista de control de acceso." +msgstr "" +"Las llaves primarias de los roles a los que se vincula esta lista de control " +"de acceso." #: views.py:62 #, python-format @@ -131,7 +143,9 @@ msgstr "No hay LCAs para este objeto" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "LCA significa Lista de Control de Acceso y es un método preciso para controlar el acceso de los usuarios a los objetos en el sistema." +msgstr "" +"LCA significa Lista de Control de Acceso y es un método preciso para " +"controlar el acceso de los usuarios a los objetos en el sistema." #: views.py:154 #, python-format @@ -157,7 +171,11 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "Los permisos deshabilitados se heredan de un objeto principal o se otorgan directamente al rol y no se pueden eliminar de esta vista. Los permisos heredados deben eliminarse de la LCA del objeto principal o de su rol a través del menú de Configuración." +msgstr "" +"Los permisos deshabilitados se heredan de un objeto principal o se otorgan " +"directamente al rol y no se pueden eliminar de esta vista. Los permisos " +"heredados deben eliminarse de la LCA del objeto principal o de su rol a " +"través del menú de Configuración." #: workflow_actions.py:26 msgid "Object type" @@ -172,8 +190,7 @@ msgid "Object ID" msgstr "ID de objeto" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Identificador numérico del objeto para el que se modificará el acceso." #: workflow_actions.py:43 workflow_actions.py:158 @@ -187,7 +204,9 @@ msgstr "Roles cuyo acceso será modificado." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Permisos para otorgar/revocar a los roles para el objeto seleccionado anteriormente." +msgstr "" +"Permisos para otorgar/revocar a los roles para el objeto seleccionado " +"anteriormente." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index 875b2f12ee..f6537ee7d6 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -91,7 +92,9 @@ msgstr "API URL اشاره گر به لیست اجازه های این دستر msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "URL API اشاره به اجازه در رابطه با لیست کنترل دسترسی که به آن متصل است. این URL متفاوت از URL کارآفرینی کانونی است." +msgstr "" +"URL API اشاره به اجازه در رابطه با لیست کنترل دسترسی که به آن متصل است. این " +"URL متفاوت از URL کارآفرینی کانونی است." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -106,7 +109,9 @@ msgstr "این اجازه ئوجود ندارد: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "لیست مجوز از کلیدهای مجاز مجاز برای حذف این لیست کنترل دسترسی جداگانه را از یکدیگر جدا کنید." +msgstr "" +"لیست مجوز از کلیدهای مجاز مجاز برای حذف این لیست کنترل دسترسی جداگانه را از " +"یکدیگر جدا کنید." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -171,8 +176,7 @@ msgid "Object ID" msgstr "شناسه اشیاء" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "شناسه عددی شئی که دسترسی به آن تغییر خواهد کرد." #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index 4dd3aa3113..6d1fd6bad1 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2016-2017 # Christophe CHAUVET , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -87,17 +88,24 @@ msgstr "Voir les droits" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "URL de l'API pointant vers la liste des autorisations pour cette liste de contrôle d'accès." +msgstr "" +"URL de l'API pointant vers la liste des autorisations pour cette liste de " +"contrôle d'accès." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "URL de l'API pointant vers une autorisation en relation avec la liste de contrôle d'accès à laquelle elle est attachée. Cette URL est différente de l'URL du flux de travail canonique." +msgstr "" +"URL de l'API pointant vers une autorisation en relation avec la liste de " +"contrôle d'accès à laquelle elle est attachée. Cette URL est différente de " +"l'URL du flux de travail canonique." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Clé principale de la nouvelle autorisation à accorder à la liste de contrôle d'accès." +msgstr "" +"Clé principale de la nouvelle autorisation à accorder à la liste de contrôle " +"d'accès." #: serializers.py:115 serializers.py:191 #, python-format @@ -108,11 +116,14 @@ msgstr "Aucune autorisation de ce genre : %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Liste séparée par des virgules des clés primaires d'autorisation à accorder à cette liste de contrôle d'accès." +msgstr "" +"Liste séparée par des virgules des clés primaires d'autorisation à accorder " +"à cette liste de contrôle d'accès." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Clés primaires du rôle auquel cette liste de contrôle d'accès se rattache." +msgstr "" +"Clés primaires du rôle auquel cette liste de contrôle d'accès se rattache." #: views.py:62 #, python-format @@ -173,9 +184,10 @@ msgid "Object ID" msgstr "Identifiant de l'objet" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." -msgstr "Identifiant numérique de l'objet pour lequel les droits d'accès vont être modifiés." +msgid "Numeric identifier of the object for which the access will be modified." +msgstr "" +"Identifiant numérique de l'objet pour lequel les droits d'accès vont être " +"modifiés." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -188,7 +200,8 @@ msgstr "Rôles pour lesquels les droits d'accès vont être modifiés." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Autorisations à accorder/révoquer au rôle pour l'objet sélectionné ci-dessus." +msgstr "" +"Autorisations à accorder/révoquer au rôle pour l'objet sélectionné ci-dessus." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index 2a05da59c5..4ea18eb29f 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -169,8 +170,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index 875b4e024e..28e4f6f7f1 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:44 @@ -169,8 +170,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 4f0b7f64c0..5a63d4b324 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniele Bortoluzzi , 2019 # Marco Camplese , 2016-2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -54,7 +55,9 @@ msgstr "Permessi" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "L'oggetto \"%s\" non è un modello e su di esso non si può eseguire un controllo accessi." +msgstr "" +"L'oggetto \"%s\" non è un modello e su di esso non si può eseguire un " +"controllo accessi." #: managers.py:236 #, python-format @@ -91,7 +94,10 @@ msgstr "URL delle API che punta alla lista controllo accessi" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL che indica una autorizzazione in relazione all'elenco di controllo di accesso a cui è associato. Questo URL è diverso dall'originale canonico URL." +msgstr "" +"API URL che indica una autorizzazione in relazione all'elenco di controllo " +"di accesso a cui è associato. Questo URL è diverso dall'originale canonico " +"URL." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -106,7 +112,9 @@ msgstr "Nessun permesso: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista separata da virgole delle chiavi primarie dei permessi per garantire l'accesso alle liste di controllo" +msgstr "" +"Lista separata da virgole delle chiavi primarie dei permessi per garantire " +"l'accesso alle liste di controllo" #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -130,7 +138,10 @@ msgstr "Non ci sono ACL per questo oggetto" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "ACL sta per Access Control List (lista di controllo degli accessi) ed è un metodo preciso per controllare l'accesso dell'utente agli oggetti nel sistema." +msgstr "" +"ACL sta per Access Control List (lista di controllo degli accessi) ed è un " +"metodo preciso per controllare l'accesso dell'utente agli oggetti nel " +"sistema." #: views.py:154 #, python-format @@ -156,7 +167,11 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "I permessi disabilitati sono ereditati da un oggetto padre o direttamente concessi al ruolo e non possono essere rimossi da questa schermata. I permessi ereditati vanno rimossi dalle ACL dell'oggetto padre o del ruolo tramite il menù Setup." +msgstr "" +"I permessi disabilitati sono ereditati da un oggetto padre o direttamente " +"concessi al ruolo e non possono essere rimossi da questa schermata. I " +"permessi ereditati vanno rimossi dalle ACL dell'oggetto padre o del ruolo " +"tramite il menù Setup." #: workflow_actions.py:26 msgid "Object type" @@ -171,9 +186,9 @@ msgid "Object ID" msgstr "ID dell'oggetto" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." -msgstr "Identificativo numerico dell'oggetto per il quale l'accesso sarà modificato" +msgid "Numeric identifier of the object for which the access will be modified." +msgstr "" +"Identificativo numerico dell'oggetto per il quale l'accesso sarà modificato" #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po index a1ff19296c..2c41a06576 100644 --- a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -90,11 +92,15 @@ msgstr "API URL, kas norāda uz piekļuves kontroles saraksta atļauju sarakstu. msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL, kas norāda uz atļauju saistībā ar piekļuves kontroles sarakstu, kuram tas ir pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." +msgstr "" +"API URL, kas norāda uz atļauju saistībā ar piekļuves kontroles sarakstu, " +"kuram tas ir pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Primārā atslēga priekš jaunās atļaujas, ko piešķirt piekļuves kontroles sarakstam." +msgstr "" +"Primārā atslēga priekš jaunās atļaujas, ko piešķirt piekļuves kontroles " +"sarakstam." #: serializers.py:115 serializers.py:191 #, python-format @@ -105,11 +111,15 @@ msgstr "Šādas atļaujas nav: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Ar komatu atdalīts saraksts ar atļauju primārajām atslēgām, kuras piešķirt šim piekļuves kontroles sarakstam." +msgstr "" +"Ar komatu atdalīts saraksts ar atļauju primārajām atslēgām, kuras piešķirt " +"šim piekļuves kontroles sarakstam." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Primārās atslēgas lomai, pie kuras šis piekļuves kontroles saraksts ir piesaistīts." +msgstr "" +"Primārās atslēgas lomai, pie kuras šis piekļuves kontroles saraksts ir " +"piesaistīts." #: views.py:62 #, python-format @@ -129,7 +139,9 @@ msgstr "Šim objektam nav neviens PKS" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "PKS apzīmē Piekļuves Kontroles Sarakstu un tā ir precīza metode, lai kontrolētu lietotāja piekļuvi sistēmā esošajiem objektiem." +msgstr "" +"PKS apzīmē Piekļuves Kontroles Sarakstu un tā ir precīza metode, lai " +"kontrolētu lietotāja piekļuvi sistēmā esošajiem objektiem." #: views.py:154 #, python-format @@ -155,7 +167,10 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "Atspējotas atļaujas tiek mantotas no mātes objekta vai tieši piešķirtas lomai, un tās nevar noņemt no šī skata. Mantotās atļaujas ir jānoņem no mātes objekta PKS vai no lomas, izmantojot Setup izvēlni." +msgstr "" +"Atspējotas atļaujas tiek mantotas no mātes objekta vai tieši piešķirtas " +"lomai, un tās nevar noņemt no šī skata. Mantotās atļaujas ir jānoņem no " +"mātes objekta PKS vai no lomas, izmantojot Setup izvēlni." #: workflow_actions.py:26 msgid "Object type" @@ -170,8 +185,7 @@ msgid "Object ID" msgstr "Objekta ID" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Objekta, kuram tiks rediģēta piekļuve, skaitliskais identifikators." #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po index 94a1878c8f..7917d4136b 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -55,7 +56,8 @@ msgstr "Permissies" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "Voorwerp \"%s\" is geen model en kan niet aangevinkt worden voor toegang" +msgstr "" +"Voorwerp \"%s\" is geen model en kan niet aangevinkt worden voor toegang" #: managers.py:236 #, python-format @@ -92,26 +94,37 @@ msgstr "UPI URL wijzend naar de permissielijst voor deze toegangscontrolelijst" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "UPI URL wijzend naar een permissie gerelateerd aan de toegangscontrolelijst waarvan het een aanhangsel is. Dit URL is anders dan de canonical Workflow URL" +msgstr "" +"UPI URL wijzend naar een permissie gerelateerd aan de toegangscontrolelijst " +"waarvan het een aanhangsel is. Dit URL is anders dan de canonical Workflow " +"URL" #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Primaire sleutel van de nieuwe permissie om toegang te geven tot de toeganscontrolelijst" +msgstr "" +"Primaire sleutel van de nieuwe permissie om toegang te geven tot de " +"toeganscontrolelijst" #: serializers.py:115 serializers.py:191 #, python-format msgid "No such permission: %s" -msgstr "Permissie niet gevonden: %s\n\nAlternative translation: Permissie bestaat niet (Permission does not exist)" +msgstr "" +"Permissie niet gevonden: %s\n" +"\n" +"Alternative translation: Permissie bestaat niet (Permission does not exist)" #: serializers.py:130 msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Kommagescheiden lijst van primaire permissie sleutels om toegang te geven tot deze toegangscontrole lijst" +msgstr "" +"Kommagescheiden lijst van primaire permissie sleutels om toegang te geven " +"tot deze toegangscontrole lijst" #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Primaire Sleutel van de rol waar deze togangscontrolelijst aan gekoppeld is. " +msgstr "" +"Primaire Sleutel van de rol waar deze togangscontrolelijst aan gekoppeld is. " #: views.py:62 #, python-format @@ -131,7 +144,9 @@ msgstr "Er zijn geen toegangscontrolelijsten voor dit onderwerp" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "ACL betekent Toegangscontrolelijst en is een precieze methode om gebruikerstoegang te geven of verwijderen voor objecten in het systeem" +msgstr "" +"ACL betekent Toegangscontrolelijst en is een precieze methode om " +"gebruikerstoegang te geven of verwijderen voor objecten in het systeem" #: views.py:154 #, python-format @@ -157,7 +172,11 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "Onbeschikbare of uitgeschakelde rechten zijn geërfd van een hoger niveau of direct geven aan de gebruikersrol en kunnen hier niet verwijderd worden. Geërfde rechten moeten verwijderd worden vanaf het hogere niveau of via de gebruikersrol via het Instellingen menu. " +msgstr "" +"Onbeschikbare of uitgeschakelde rechten zijn geërfd van een hoger niveau of " +"direct geven aan de gebruikersrol en kunnen hier niet verwijderd worden. " +"Geërfde rechten moeten verwijderd worden vanaf het hogere niveau of via de " +"gebruikersrol via het Instellingen menu. " #: workflow_actions.py:26 msgid "Object type" @@ -172,8 +191,7 @@ msgid "Object ID" msgstr "voorwerp identificatie" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Nummer van het voorwerp waarvoor de toegang wordt gewijzigd" #: workflow_actions.py:43 workflow_actions.py:158 @@ -187,7 +205,9 @@ msgstr "Gebruikersrol waarvoor de toegang wordt gewijzigd" #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Permissies to geven/verwijderen naar/van de rol voor het geselecteerde object hierboven " +msgstr "" +"Permissies to geven/verwijderen naar/van de rol voor het geselecteerde " +"object hierboven " #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index e52676cf01..c0dde75f81 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniel Winiarski , 2017 # Wojciech Warczakowski , 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -92,11 +95,15 @@ msgstr "API URL prowadzący do listy uprawnień dla listy kontroli dostępu." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL prowadzący do uprawnienia w liście kontroli dostępu, w której uprawnienie występuje. " +msgstr "" +"API URL prowadzący do uprawnienia w liście kontroli dostępu, w której " +"uprawnienie występuje. " #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Klucz główny nowego uprawnienia dla udzielenia dostępu do listy kontroli dostępu." +msgstr "" +"Klucz główny nowego uprawnienia dla udzielenia dostępu do listy kontroli " +"dostępu." #: serializers.py:115 serializers.py:191 #, python-format @@ -107,7 +114,9 @@ msgstr "Brak uprawnienia: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Rozdzielona przecinkami lista uprawnień kluczy głównych dla udzielenia dostępu do listy kontroli dostępu." +msgstr "" +"Rozdzielona przecinkami lista uprawnień kluczy głównych dla udzielenia " +"dostępu do listy kontroli dostępu." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -172,9 +181,9 @@ msgid "Object ID" msgstr "ID obiektu" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." -msgstr "Numeryczny identyfikator obiektu, dla którego dostęp zostanie zmodyfikowany." +msgid "Numeric identifier of the object for which the access will be modified." +msgstr "" +"Numeryczny identyfikator obiektu, dla którego dostęp zostanie zmodyfikowany." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 96d1eb459e..11f60cc83e 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -169,8 +170,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po index f3531fed85..ef7f3f79e5 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -86,17 +87,23 @@ msgstr "Visualizar Controle de Acesso \"ACLs\"" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "API URL apontando para a lista de permissões para esta lista de controle de acesso." +msgstr "" +"API URL apontando para a lista de permissões para esta lista de controle de " +"acesso." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL apontando para uma permissão em relação à lista de controle de acesso à qual ela está anexada. Esse URL é diferente do URL de fluxo de trabalho canônico." +msgstr "" +"API URL apontando para uma permissão em relação à lista de controle de " +"acesso à qual ela está anexada. Esse URL é diferente do URL de fluxo de " +"trabalho canônico." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Chave primária da nova permissão para aceder à lista de controle de acesso." +msgstr "" +"Chave primária da nova permissão para aceder à lista de controle de acesso." #: serializers.py:115 serializers.py:191 #, python-format @@ -107,11 +114,14 @@ msgstr "Sem permissão: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista de chaves primárias de permissão separadas por vírgulas para conceder a esta lista de controle de acesso." +msgstr "" +"Lista de chaves primárias de permissão separadas por vírgulas para conceder " +"a esta lista de controle de acesso." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "As chaves primárias da função a que esta lista de controle de acesso se liga." +msgstr "" +"As chaves primárias da função a que esta lista de controle de acesso se liga." #: views.py:62 #, python-format @@ -131,7 +141,9 @@ msgstr "Não há Controle de Acesso \"ACLs\" para este objeto" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "ACL significa Lista de Controle de Acesso - \"Acess Control List\" - e é um método preciso para controlar o acesso do usuário a objetos do sistema." +msgstr "" +"ACL significa Lista de Controle de Acesso - \"Acess Control List\" - e é um " +"método preciso para controlar o acesso do usuário a objetos do sistema." #: views.py:154 #, python-format @@ -172,8 +184,7 @@ msgid "Object ID" msgstr "ID do objeto" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Identificador numérico do objeto cujo acesso será modificado." #: workflow_actions.py:43 workflow_actions.py:158 @@ -187,7 +198,9 @@ msgstr "Papéis cujo acesso será modificado." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Permissões a serem concedidas/revogadas para o papel em relação ao objeto selecionado acima." +msgstr "" +"Permissões a serem concedidas/revogadas para o papel em relação ao objeto " +"selecionado acima." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po index 23d3188623..fe1d9699d2 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -53,7 +55,8 @@ msgstr "Permisiuni" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "Obiectul \"%s\" nu este un model și nu poate fi verificat pentru acces." +msgstr "" +"Obiectul \"%s\" nu este un model și nu poate fi verificat pentru acces." #: managers.py:236 #, python-format @@ -84,17 +87,23 @@ msgstr "Vezi ACL-uri" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "Adresă URL API care indică lista permisiunilor pentru această listă de control acces." +msgstr "" +"Adresă URL API care indică lista permisiunilor pentru această listă de " +"control acces." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "Adresă URL API care indică o permisiune în legătură cu lista de control al accesului la care este atașată. Această adresă URL este diferită de adresa URL canonică a fluxului de lucru." +msgstr "" +"Adresă URL API care indică o permisiune în legătură cu lista de control al " +"accesului la care este atașată. Această adresă URL este diferită de adresa " +"URL canonică a fluxului de lucru." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Cheie primară a noii permisiuni de acordare a listei de control al accesului." +msgstr "" +"Cheie primară a noii permisiuni de acordare a listei de control al accesului." #: serializers.py:115 serializers.py:191 #, python-format @@ -105,11 +114,15 @@ msgstr "Nu există o astfel de permisiune: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Liste separate prin virgulă de chei primare de permisiune pentru a acorda această listă de control acces." +msgstr "" +"Liste separate prin virgulă de chei primare de permisiune pentru a acorda " +"această listă de control acces." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Cheile primare ale rolului la care se leagă această listă de control al accesului." +msgstr "" +"Cheile primare ale rolului la care se leagă această listă de control al " +"accesului." #: views.py:62 #, python-format @@ -129,7 +142,9 @@ msgstr "Nu există ACL-uri pentru acest obiect" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "ACL reprezintă lista de control al accesului și este o metodă precisă de control al accesului utilizatorilor la obiecte din sistem." +msgstr "" +"ACL reprezintă lista de control al accesului și este o metodă precisă de " +"control al accesului utilizatorilor la obiecte din sistem." #: views.py:154 #, python-format @@ -155,7 +170,11 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "Permisiunile dezactivate sunt moștenite de la un obiect părinte sau acordate direct rolului și nu pot fi eliminate din această vizualizare. Prerogativele moștenite trebuie să fie eliminate din ACL-ul obiectului părinte sau din rolul acestora prin meniul Setup (Configurare)." +msgstr "" +"Permisiunile dezactivate sunt moștenite de la un obiect părinte sau acordate " +"direct rolului și nu pot fi eliminate din această vizualizare. Prerogativele " +"moștenite trebuie să fie eliminate din ACL-ul obiectului părinte sau din " +"rolul acestora prin meniul Setup (Configurare)." #: workflow_actions.py:26 msgid "Object type" @@ -170,9 +189,9 @@ msgid "Object ID" msgstr "ID obiect" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." -msgstr "Identificatorul numeric al obiectului pentru care va fi modificat accesul." +msgid "Numeric identifier of the object for which the access will be modified." +msgstr "" +"Identificatorul numeric al obiectului pentru care va fi modificat accesul." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -185,7 +204,9 @@ msgstr "Roluri a căror acces va fi modificat." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Permisiuni de acordare / revocare în / a rolului pentru obiectului selectat mai sus." +msgstr "" +"Permisiuni de acordare / revocare în / a rolului pentru obiectului selectat " +"mai sus." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index 60b8725901..3363d8664b 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -170,8 +173,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po index b19210dca9..11d710e210 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # kontrabant , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -90,11 +92,14 @@ msgstr "URL za API, ki kaže na seznam dovoljenj za ta nadzorni seznam dostopa." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "UR API-ja, ki kaže na dovoljenae v zvezi s seznamom za nadzor dostopa, na katerega je priključen. Ta URL je drugačen od kanoničnega URL-ja poteka dela." +msgstr "" +"UR API-ja, ki kaže na dovoljenae v zvezi s seznamom za nadzor dostopa, na " +"katerega je priključen. Ta URL je drugačen od kanoničnega URL-ja poteka dela." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Primarni ključ novega dovoljenja za odobritev na seznamu za nadzor dostopa." +msgstr "" +"Primarni ključ novega dovoljenja za odobritev na seznamu za nadzor dostopa." #: serializers.py:115 serializers.py:191 #, python-format @@ -105,11 +110,14 @@ msgstr "Neobstoječe dovoljenje: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Seznam primarnih ključev dovolilnic, ločenih z vejicami, za dodelitev tega seznama za nadzor dostopa." +msgstr "" +"Seznam primarnih ključev dovolilnic, ločenih z vejicami, za dodelitev tega " +"seznama za nadzor dostopa." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Primarni ključi vloge, na katere se ta kontrolni seznam za dostop poveže." +msgstr "" +"Primarni ključi vloge, na katere se ta kontrolni seznam za dostop poveže." #: views.py:62 #, python-format @@ -170,8 +178,7 @@ msgid "Object ID" msgstr "ID objekta" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "Številčni identifikator predmeta, za katerega bo dostop spremenjen." #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po index 83e39599ea..ea8c83199b 100644 --- a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -90,7 +91,9 @@ msgstr "Bu erişim kontrol listesinin izin listesine işaret eden API URL'si." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL'si, bağlı olduğu erişim kontrol listesiyle ilgili olarak bir izne işaret ediyor. Bu URL, kurallı iş akışı URL'sinden farklı." +msgstr "" +"API URL'si, bağlı olduğu erişim kontrol listesiyle ilgili olarak bir izne " +"işaret ediyor. Bu URL, kurallı iş akışı URL'sinden farklı." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -105,7 +108,9 @@ msgstr "Böyle bir izin yok: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Bu erişim denetim listesine vermek üzere birincil anahtarların virgülle ayrılmış listesi." +msgstr "" +"Bu erişim denetim listesine vermek üzere birincil anahtarların virgülle " +"ayrılmış listesi." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -170,8 +175,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po index 61070f2e21..074e87c072 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:44 @@ -169,8 +170,7 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po index 01fcd12ef9..8cbcc00216 100644 --- a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:44 @@ -90,7 +91,8 @@ msgstr "API URL指向此访问控制列表的权限列表。" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL指向与其附加的访问控制列表相关的权限。此URL与规范工作流URL不同。" +msgstr "" +"API URL指向与其附加的访问控制列表相关的权限。此URL与规范工作流URL不同。" #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -170,8 +172,7 @@ msgid "Object ID" msgstr "对象ID" #: workflow_actions.py:38 -msgid "" -"Numeric identifier of the object for which the access will be modified." +msgid "Numeric identifier of the object for which the access will be modified." msgstr "要为其修改访问权限的对象的数字标识符。" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index 083db56ea5..3c31191061 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -95,8 +97,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -128,7 +130,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +140,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +149,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +160,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +172,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +183,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +195,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 96a9868cd9..00190ad946 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -95,8 +96,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -128,7 +129,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +139,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +148,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +159,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +171,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +182,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +194,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po index 320caadd70..d53706a0b4 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -96,9 +98,11 @@ msgstr "Greška u serveru" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Došlo je do greške. Prijavljeno je administratoru sajta putem e-pošte i trebalo bi da se popravi uskoro. Hvala na strpljenju." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Došlo je do greške. Prijavljeno je administratoru sajta putem e-pošte i " +"trebalo bi da se popravi uskoro. Hvala na strpljenju." #: templates/appearance/about.html:10 msgid "About" @@ -129,7 +133,9 @@ msgstr "Obavljeno pod licensom:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -137,7 +143,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -145,7 +152,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -153,7 +163,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -161,7 +175,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -169,7 +186,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -177,8 +198,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -238,7 +264,9 @@ msgstr "Otkazati" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s od %(total)s) (Strana%(page_number)s od %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s od %(total)s) (Strana%(page_number)s od " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po index e19d2ad3b3..295955a5fc 100644 --- a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -95,8 +97,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -128,7 +130,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +140,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +149,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +160,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +172,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +183,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +195,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po index ba3d40059e..17f00d86dc 100644 --- a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -96,8 +97,8 @@ msgstr "Server fejl" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -129,7 +130,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -137,7 +140,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -145,7 +149,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -153,7 +160,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -161,7 +172,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -169,7 +183,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -177,8 +195,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po index 214cd53a22..54721d5647 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Bjoern Kowarsch , 2018 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -75,7 +76,8 @@ msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "Maximale Anzahl der Zeichen, die als Titel einer Ansicht angezeigt werden." +msgstr "" +"Maximale Anzahl der Zeichen, die als Titel einer Ansicht angezeigt werden." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -99,9 +101,11 @@ msgstr "Serverfehler" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren " +"gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." #: templates/appearance/about.html:10 msgid "About" @@ -113,7 +117,10 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n %(setting_project_title)s basiert auf %(project_title)s\n " +msgstr "" +"\n" +" %(setting_project_title)s basiert auf %(project_title)s\n" +" " #: templates/appearance/about.html:82 msgid "Version" @@ -132,58 +139,119 @@ msgstr "Veröffentlicht unter der Lizenz:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" +" " +msgstr "" +"\n" +"%(project_title)s ist eine Freie Open-Source Software, die Ihnen mit durch Roberto Rosario und andere " +"Mitwirkende zur Verfügung gestellt wird..\n" " " -msgstr "\n%(project_title)s ist eine Freie Open-Source Software, die Ihnen mit durch Roberto Rosario und andere Mitwirkende zur Verfügung gestellt wird..\n " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " -msgstr "\nEs bedeutet einen großen Aufwand, %(project_title)s so funktionsreich zu machen, wie es ist. Wir brauchen alle Hilfe, die wir bekommen können!" +msgstr "" +"\n" +"Es bedeutet einen großen Aufwand, %(project_title)s so funktionsreich zu " +"machen, wie es ist. Wir brauchen alle Hilfe, die wir bekommen können!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " -msgstr "\nWenn Sie %(project_title)s verwenden, erwägen Sie bitte eine Spende %(icon_social_paypal)s " +msgstr "" +"\n" +"Wenn Sie %(project_title)s verwenden, erwägen Sie bitte eine Spende %(icon_social_paypal)s " +"" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\nEine umfassende Liste der Neuerungen ist einsehbar in den Release Notes %(icon_documentation)s oder als Kurzversionim Changelog %(icon_documentation)s." +msgstr "" +"\n" +"Eine umfassende Liste der Neuerungen ist einsehbar in den Release Notes %(icon_documentation)s oder als Kurzversionim Changelog %(icon_documentation)s." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\nBei Fragen schauen Sie zunächst in die Dokumentation %(icon_documentation)s oder die Wiki %(icon_wiki)s." +msgstr "" +"\n" +"Bei Fragen schauen Sie zunächst in die Dokumentation %(icon_documentation)s " +"oder die Wiki " +"%(icon_wiki)s." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\nSollten Sie einen Bug gefunden oder eine Idee für eine neue Funktion haben, dann besuchen Sie entweder das Forum %(icon_forum)s oder erstellen Sie ein Ticket in der Quellenverwaltung %(icon_source_code)s. " +msgstr "" +"\n" +"Sollten Sie einen Bug gefunden oder eine Idee für eine neue Funktion haben, " +"dann besuchen Sie entweder das Forum %(icon_forum)s oder erstellen Sie ein Ticket in " +"der Quellenverwaltung %(icon_source_code)s. " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" " +msgstr "" +"\n" +"Machen Sie dieses Projekt bekannt. Berichten Sie Ihren Freunden und " +"Kollegen, wie angenehm die Arbeit mit %(project_title)s ist!\n" +" Folgen Sie uns auf Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, oder Instagram %(icon_social_instagram)s\n" " " -msgstr "\nMachen Sie dieses Projekt bekannt. Berichten Sie Ihren Freunden und Kollegen, wie angenehm die Arbeit mit %(project_title)s ist!\n Folgen Sie uns auf Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, oder Instagram %(icon_social_instagram)s\n " #: templates/appearance/base.html:32 msgid "Warning" @@ -241,7 +309,9 @@ msgstr "Abbrechen" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von %(total_pages)s)" +msgstr "" +"Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po index 926a8114d3..2abe44cf52 100644 --- a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -95,9 +96,12 @@ msgstr "Σφάλμα διακομηστή" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Παρουσιάστηκε ένα σφάλμα. Έχει αναφερθεί στον διαχειριστή του ιστότοπου μέσω ηλεκτρονικού ταχυδρομείου και θα διευθετηθεί σύντομα. Ευχαριστούμε για την υπομονή σας." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Παρουσιάστηκε ένα σφάλμα. Έχει αναφερθεί στον διαχειριστή του ιστότοπου μέσω " +"ηλεκτρονικού ταχυδρομείου και θα διευθετηθεί σύντομα. Ευχαριστούμε για την " +"υπομονή σας." #: templates/appearance/about.html:10 msgid "About" @@ -128,7 +132,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +142,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +151,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +162,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +174,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +185,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +197,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -237,7 +263,9 @@ msgstr "Άκυρο" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Σύνολο (%(start)s - %(end)s από %(total)s) (Σελίδα %(page_number)s από %(total_pages)s)" +msgstr "" +"Σύνολο (%(start)s - %(end)s από %(total)s) (Σελίδα %(page_number)s από " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -261,7 +289,8 @@ msgstr "Ξεκινώντας" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Προτού μπορέσετε να χρησιμοποιήσετε πλήρως το Mayan EDMS χρειάζεστε τα εξής:" +msgstr "" +"Προτού μπορέσετε να χρησιμοποιήσετε πλήρως το Mayan EDMS χρειάζεστε τα εξής:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index a881ed0a95..5297228cd8 100644 --- a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index b6cfb480af..2702c2e76d 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -72,7 +73,8 @@ msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "Número máximo de caracteres que se mostrarán como el título de la vista." +msgstr "" +"Número máximo de caracteres que se mostrarán como el título de la vista." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -96,9 +98,11 @@ msgstr "Error de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Ha habido un error. Se ha informado a los administradores del sitio vía e-mail y debería corregirse en breve. Gracias por su paciencia." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Ha habido un error. Se ha informado a los administradores del sitio vía e-" +"mail y debería corregirse en breve. Gracias por su paciencia." #: templates/appearance/about.html:10 msgid "About" @@ -110,7 +114,10 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n                    %(setting_project_title)s se basa en %(project_title)s\n                " +msgstr "" +"\n" +"                    %(setting_project_title)s se basa en %(project_title)s\n" +"                " #: templates/appearance/about.html:82 msgid "Version" @@ -129,58 +136,125 @@ msgstr "Publicado bajo la licencia:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " -msgstr "\n                %(project_title)s es un software gratuito y de código abierto realizado con por Roberto Rosario y colaboradores.\n            " +msgstr "" +"\n" +"                %(project_title)s es un software gratuito y de código " +"abierto realizado con por Roberto Rosario y colaboradores.\n" +"            " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " -msgstr "\n                Se necesita un gran esfuerzo para hacer que %(project_title)s sea tan rico en funcionalidad como lo es. ¡Necesitamos toda la ayuda que podamos conseguir!\n            " +msgstr "" +"\n" +"                Se necesita un gran esfuerzo para hacer que " +"%(project_title)s sea tan rico en funcionalidad como lo es. ¡Necesitamos " +"toda la ayuda que podamos conseguir!\n" +"            " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " -msgstr "\n                Si usa %(project_title)s por favor considerar hacer una donación %(icon_social_paypal)s\n            " +msgstr "" +"\n" +"                Si usa %(project_title)s por favor considerar hacer una donación " +"%(icon_social_paypal)s\n" +"            " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\n                La lista completa de cambios está disponible a través de Notas de la versión %(icon_documentation)s o la versión corta Changelog %(icon_documentation)s .\n            " +msgstr "" +"\n" +"                La lista completa de cambios está disponible a través de Notas de la versión %(icon_documentation)s o la versión corta Changelog %(icon_documentation)s .\n" +"            " #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\n                Para preguntas, consulte la Documentación %(icon_documentation)s o el Wiki %(icon_wiki)s .\n            " +msgstr "" +"\n" +"                Para preguntas, consulte la Documentación %(icon_documentation)s o " +" el Wiki " +"%(icon_wiki)s .\n" +"            " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\n                Si encontró un error o tiene una idea característica, visite el Forum %(icon_forum)s o abra un ticket en el Repositorio de código fuente %(icon_source_code)s \n            " +msgstr "" +"\n" +"                Si encontró un error o tiene una idea característica, visite " +"el Forum " +"%(icon_forum)s o abra un ticket en el Repositorio de código fuente " +"%(icon_source_code)s \n" +"            " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "\n                Riega la voz. ¡Habla con tus amigos y colegas sobre lo increíble que es %(project_title)s!\n                Síguenos en Twitter %(icon_social_twitter)s , Facebook %(icon_social_facebook)s o Instagram %(icon_social_instagram)s \n            " +msgstr "" +"\n" +"                Riega la voz. ¡Habla con tus amigos y colegas sobre lo " +"increíble que es %(project_title)s!\n" +"                Síguenos en Twitter %(icon_social_twitter)s , Facebook " +"%(icon_social_facebook)s o Instagram %(icon_social_instagram)s \n" +"            " #: templates/appearance/base.html:32 msgid "Warning" @@ -238,7 +312,9 @@ msgstr "Cancelar" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index 693ddae19c..ffe7071a9d 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -96,9 +97,11 @@ msgstr "خطای سرور" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "یک خطا وجود دارد از طریق پست الکترونیکی به مدیران سایت گزارش شده است و باید به زودی تنظیم شود. از صبر و شکیبایی شما متشکریم" +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"یک خطا وجود دارد از طریق پست الکترونیکی به مدیران سایت گزارش شده است و باید " +"به زودی تنظیم شود. از صبر و شکیبایی شما متشکریم" #: templates/appearance/about.html:10 msgid "About" @@ -129,7 +132,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -137,7 +142,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -145,7 +151,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -153,7 +162,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -161,7 +174,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -169,7 +185,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -177,8 +197,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -238,7 +263,9 @@ msgstr "لغو" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "مجموع (%(start)s - %(end)s از %(total)s) (صفحه %(page_number)s از %(total_pages)s)" +msgstr "" +"مجموع (%(start)s - %(end)s از %(total)s) (صفحه %(page_number)s از " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -262,7 +289,9 @@ msgstr "شروع کردن" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "قبل از اینکه بتوانید به طور کامل از EDMS مایان استفاده کنید، به موارد زیر نیاز دارید:" +msgstr "" +"قبل از اینکه بتوانید به طور کامل از EDMS مایان استفاده کنید، به موارد زیر " +"نیاز دارید:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index a77c1125ff..c2f733d506 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Escudero , 2017 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -100,9 +101,12 @@ msgstr "Erreur du serveur" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Une erreur vient de se produire. Elle a été signalée aux administrateurs du site par courriel et devrait être résolue rapidement. Merci de votre patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Une erreur vient de se produire. Elle a été signalée aux administrateurs du " +"site par courriel et devrait être résolue rapidement. Merci de votre " +"patience." #: templates/appearance/about.html:10 msgid "About" @@ -114,7 +118,11 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n %(setting_project_title)s est basé sur %(project_title)s\n " +msgstr "" +"\n" +" %(setting_project_title)s est basé sur " +"%(project_title)s\n" +" " #: templates/appearance/about.html:82 msgid "Version" @@ -133,58 +141,126 @@ msgstr "Publié sous la licence :" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" +" " +msgstr "" +"\n" +" %(project_title)s est un logiciel libre et gratuit conçu " +"pour vous par Roberto Rosario et les contributeurs.\n" " " -msgstr "\n %(project_title)s est un logiciel libre et gratuit conçu pour vous par Roberto Rosario et les contributeurs.\n " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" +" " +msgstr "" +"\n" +" Beaucoup d'efforts ont été nécessaires pour faire" +"%(project_title)s aussi complet en terme de fonctionnalités. Nous avons " +"besoin de toute l'aide que nous pouvons obtenir!\n" " " -msgstr "\n Beaucoup d'efforts ont été nécessaires pour faire%(project_title)s aussi complet en terme de fonctionnalités. Nous avons besoin de toute l'aide que nous pouvons obtenir!\n " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" +" " +msgstr "" +"\n" +" Si vous utilisez %(project_title)s s'il vous plaît considérez faire un don " +"%(icon_social_paypal)s\n" " " -msgstr "\n Si vous utilisez %(project_title)s s'il vous plaît considérez faire un don %(icon_social_paypal)s\n " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" " +msgstr "" +"\n" +" La liste complète des changements est disponible dans les notes de publication %(icon_documentation)s ou en version courte dans " +"le journal des modifications %(icon_documentation)s.\n" " " -msgstr "\n La liste complète des changements est disponible dans les notes de publication %(icon_documentation)s ou en version courte dans le journal des modifications %(icon_documentation)s.\n " #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" +" " +msgstr "" +"\n" +" Pour trouver des réponses à vos questions consultez la documentation " +"%(icon_documentation)s ou le wiki %(icon_wiki)s.\n" " " -msgstr "\n Pour trouver des réponses à vos questions consultez la documentation %(icon_documentation)s ou le wiki %(icon_wiki)s.\n " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" +" " +msgstr "" +"\n" +" Si vous avez trouvé un bogue ou une idée pour une nouvelle " +"fonctionnalité, visitez le forum %(icon_forum)s ou soumettez un nouveau billet " +"dans le dépôt de code source %(icon_source_code)s.\n" " " -msgstr "\n Si vous avez trouvé un bogue ou une idée pour une nouvelle fonctionnalité, visitez le forum %(icon_forum)s ou soumettez un nouveau billet dans le dépôt de code source %(icon_source_code)s.\n " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" " +msgstr "" +"\n" +" Faites passer le mot. Parlez à vos amis et vos collègues de " +"comment %(project_title)s est génial!\n" +" Suivez-nous sur Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s ou Instagram %(icon_social_instagram)s\n" " " -msgstr "\n Faites passer le mot. Parlez à vos amis et vos collègues de comment %(project_title)s est génial!\n Suivez-nous sur Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s ou Instagram %(icon_social_instagram)s\n " #: templates/appearance/base.html:32 msgid "Warning" @@ -242,7 +318,9 @@ msgstr "Annuler" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s sur %(total)s) (Page %(page_number)s sur %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s sur %(total)s) (Page %(page_number)s sur " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -266,7 +344,9 @@ msgstr "Démarrage" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont nécessaires :" +msgstr "" +"Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont " +"nécessaires :" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index 7f1ba64878..253c3f1b68 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -96,8 +97,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -129,7 +130,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -137,7 +140,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -145,7 +149,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -153,7 +160,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -161,7 +172,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -169,7 +183,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -177,8 +195,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index 36d082315e..d298064a25 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:12 settings.py:9 @@ -95,8 +96,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -128,7 +129,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +139,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +148,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +159,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +171,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +182,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +194,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index 24d09a54b5..c63f9e369b 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Andrea Evangelisti , 2018 # Daniele Bortoluzzi , 2019 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -98,9 +99,11 @@ msgstr "Errore del server" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "C'è stato un errore. Questo è stato riportato all'amministratore del sito via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"C'è stato un errore. Questo è stato riportato all'amministratore del sito " +"via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." #: templates/appearance/about.html:10 msgid "About" @@ -112,7 +115,9 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n%(setting_project_title)s è basato su %(project_title)s" +msgstr "" +"\n" +"%(setting_project_title)s è basato su %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -131,58 +136,114 @@ msgstr "Rilasciato sotto la licenza:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " -msgstr "\n%(project_title)s è un software libero e open-source fatto con da Roberto Rosario e altri collaboratori." +msgstr "" +"\n" +"%(project_title)s è un software libero e open-source fatto con da Roberto " +"Rosario e altri collaboratori." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " -msgstr "\nServe un grande sforzo per rendere %(project_title)s così ricco di funzionalità. Abbiamo bisogno di tutto l'aiuto possibie!" +msgstr "" +"\n" +"Serve un grande sforzo per rendere %(project_title)s così ricco di " +"funzionalità. Abbiamo bisogno di tutto l'aiuto possibie!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " -msgstr "\nSe usi %(project_title)s puoi pensare di fare una donazione %(icon_social_paypal)s" +msgstr "" +"\n" +"Se usi %(project_title)s puoi pensare di fare una donazione %(icon_social_paypal)s" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\nLa lista completa dei cambiamenti è disponibile nelle Note di rilascio %(icon_documentation)s o in versione più breve nel Changelog %(icon_documentation)s." +msgstr "" +"\n" +"La lista completa dei cambiamenti è disponibile nelle Note di rilascio " +"%(icon_documentation)s o in versione più breve nel Changelog %(icon_documentation)s." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\nPer dubbi o domande guarda la documentazione %(icon_documentation)s o il Wiki %(icon_wiki)s." +msgstr "" +"\n" +"Per dubbi o domande guarda la documentazione %(icon_documentation)s o il Wiki %(icon_wiki)s." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\nSe trovi un bug o hai un'idea per una nuova funzionalità, visita il Forum %(icon_forum)s o apri un ticket nel repository del codice %(icon_source_code)s." +msgstr "" +"\n" +"Se trovi un bug o hai un'idea per una nuova funzionalità, visita il Forum %(icon_forum)s o apri un ticket nel repository del codice %(icon_source_code)s." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "\nDiffondi il verbo. Dillo ai tuoi amici e colleghi quanto è bello %(project_title)s!\nSeguici su Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s o Instagram %(icon_social_instagram)s" +msgstr "" +"\n" +"Diffondi il verbo. Dillo ai tuoi amici e colleghi quanto è bello " +"%(project_title)s!\n" +"Seguici su Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s o Instagram %(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -240,7 +301,9 @@ msgstr "Annullare" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di %(total_pages)s)" +msgstr "" +"Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po index 82cad48340..ba314f082e 100644 --- a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -96,9 +98,11 @@ msgstr "Servera kļūda" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Radusies kļūda. Par to ir ziņots vietnes administratoriem, izmantojot e-pastu, un drīzumā tai būtu jābūt atrisinātai. Paldies par pacietību." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Radusies kļūda. Par to ir ziņots vietnes administratoriem, izmantojot e-" +"pastu, un drīzumā tai būtu jābūt atrisinātai. Paldies par pacietību." #: templates/appearance/about.html:10 msgid "About" @@ -110,7 +114,9 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n%(setting_project_title)s ir balstīts uz %(project_title)s" +msgstr "" +"\n" +"%(setting_project_title)s ir balstīts uz %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -129,58 +135,114 @@ msgstr "Izdots saskaņā ar licenci:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " -msgstr "\n%(project_title)s ir bezmaksas un atvērtā pirmkoda programmatūra, kas jums tiek piedāvāta ar Roberto Rosario un ziedotājiem." +msgstr "" +"\n" +"%(project_title)s ir bezmaksas un atvērtā pirmkoda programmatūra, kas jums " +"tiek piedāvāta ar Roberto Rosario un ziedotājiem." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " -msgstr "\nTas prasa lielas pūles, lai padarītu %(project_title)s tikpat iespēju bagātu, cik tas ir. Mums ir vajadzīga visa palīdzība, ko mēs varam iegūt!" +msgstr "" +"\n" +"Tas prasa lielas pūles, lai padarītu %(project_title)s tikpat iespēju " +"bagātu, cik tas ir. Mums ir vajadzīga visa palīdzība, ko mēs varam iegūt!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " -msgstr "\nJa izmantojat %(project_title)s, lūdzu, apsveriet iespēju veikt ziedojumu %(icon_social_paypal)s" +msgstr "" +"\n" +"Ja izmantojat %(project_title)s, lūdzu, apsveriet iespēju veikt ziedojumu " +"%(icon_social_paypal)s" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\nPilns izmaiņu saraksts ir pieejams, skatot Release notes %(icon_documentation)s vai īso versiju Changelog %(icon_documentation)s ." +msgstr "" +"\n" +"Pilns izmaiņu saraksts ir pieejams, skatot Release notes " +"%(icon_documentation)s vai īso versiju Changelog %(icon_documentation)s ." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\nJautājumu gadījumā pārbaudiet dokumentāciju %(icon_documentation)s vai Wiki %(icon_wiki)s ." +msgstr "" +"\n" +"Jautājumu gadījumā pārbaudiet dokumentāciju %(icon_documentation)s vai Wiki %(icon_wiki)s ." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\nJa atradāt kļūdu vai ir kāda funkcionalitātes ideja, apmeklējiet forumu %(icon_forum)s vai atveriet biļeti pirmkoda repozitorijā %(icon_source_code)s ." +msgstr "" +"\n" +"Ja atradāt kļūdu vai ir kāda funkcionalitātes ideja, apmeklējiet forumu %(icon_forum)s vai atveriet biļeti pirmkoda repozitorijā %(icon_source_code)s ." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "\nIzplatiet vārdu. Runājiet ar saviem draugiem un kolēģiem par to, cik lielisks %(project_title)s ir! Sekojiet mums Twitter %(icon_social_twitter)s , Facebook %(icon_social_facebook)s vai Instagram %(icon_social_instagram)s" +msgstr "" +"\n" +"Izplatiet vārdu. Runājiet ar saviem draugiem un kolēģiem par to, cik " +"lielisks %(project_title)s ir! Sekojiet mums Twitter %(icon_social_twitter)s , Facebook " +"%(icon_social_facebook)s vai Instagram %(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -238,7 +300,9 @@ msgstr "Atcelt" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Kopā (%(start)s - %(end)s no %(total)s) (lappuse %(page_number)s no %(total_pages)s)" +msgstr "" +"Kopā (%(start)s - %(end)s no %(total)s) (lappuse %(page_number)s no " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po index 8120a7cb4e..a07a198e47 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Johan Braeken, 2017 # Justin Albstbstmeijer , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -98,9 +99,12 @@ msgstr "Server fout" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor uw geduld." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de " +"beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor " +"uw geduld." #: templates/appearance/about.html:10 msgid "About" @@ -131,7 +135,9 @@ msgstr "Uitgegeven onder de licentie:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -139,7 +145,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -147,7 +154,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -155,7 +165,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -163,7 +177,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -171,7 +188,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -179,8 +200,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -240,7 +266,9 @@ msgstr "Onderbreek" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van %(total_pages)s)" +msgstr "" +"Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -264,7 +292,9 @@ msgstr "Beginnen" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende nodig:" +msgstr "" +"Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende " +"nodig:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index cce54d9f54..0822f24e1c 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016,2018 # Wojciech Warczakowski , 2017 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -98,9 +101,11 @@ msgstr "Błąd serwera" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i " +"wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." #: templates/appearance/about.html:10 msgid "About" @@ -131,7 +136,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -139,7 +146,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -147,7 +155,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -155,7 +166,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -163,7 +178,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -171,7 +189,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -179,8 +201,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -240,7 +267,9 @@ msgstr "Anuluj" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z %(total_pages)s)" +msgstr "" +"Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index c9884e3c57..624f8d8b46 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -95,8 +96,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -128,7 +129,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +139,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +148,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +159,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +171,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +182,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +194,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po index 74a956b2f3..abd0b9f856 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -74,7 +75,8 @@ msgstr "" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "Número máximo de caracteres que serão mostrados como o título da vista." +msgstr "" +"Número máximo de caracteres que serão mostrados como o título da vista." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -98,9 +100,11 @@ msgstr "Erro de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Houve um erro. Os administradores da página foram informados por e-mail e deverão corrigir em breve. Obrigado pela paciência." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Houve um erro. Os administradores da página foram informados por e-mail e " +"deverão corrigir em breve. Obrigado pela paciência." #: templates/appearance/about.html:10 msgid "About" @@ -112,7 +116,9 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n%(setting_project_title)s é baseado em %(project_title)s" +msgstr "" +"\n" +"%(setting_project_title)s é baseado em %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -131,58 +137,117 @@ msgstr "Lançado sob a licença:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " -msgstr "\n%(project_title)s é um software gratuito e de código aberto feito para você com por Roberto Rosario e seus colaboradores." +msgstr "" +"\n" +"%(project_title)s é um software gratuito e de código aberto feito para você " +"com por Roberto Rosario e seus colaboradores." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " -msgstr "\nMuito esforço é necessário para tornar %(project_title)s tão rico em recursos. Precisamos de toda a ajuda que pudermos obter!" +msgstr "" +"\n" +"Muito esforço é necessário para tornar %(project_title)s tão rico em " +"recursos. Precisamos de toda a ajuda que pudermos obter!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " -msgstr "\nSe você utiliza %(project_title)s, por favor, considere realizar uma doação %(icon_social_paypal)s" +msgstr "" +"\n" +"Se você utiliza %(project_title)s, por favor, considere realizar uma doação " +"%(icon_social_paypal)s" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\nA lista de mudanças está disponível de maneira detalhada nas Notas de Lançamento %(icon_documentation)s ou, em versão mais curta, no Registro de Mudanças%(icon_documentation)s." +msgstr "" +"\n" +"A lista de mudanças está disponível de maneira detalhada nas Notas de Lançamento %(icon_documentation)s ou, em versão mais curta, " +"no Registro de Mudanças%(icon_documentation)s." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\nCaso tenha dúvidas consulte a Documentação%(icon_documentation)s ou a Wiki%(icon_wiki)s." +msgstr "" +"\n" +"Caso tenha dúvidas consulte a Documentação%(icon_documentation)s ou a Wiki%(icon_wiki)s." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\nSe você encontrar algum erro ou tiver ideias para novos recursos, visite o Fórum%(icon_forum)s ou abra um chamado no Repositório de Código Fonte%(icon_source_code)s." +msgstr "" +"\n" +"Se você encontrar algum erro ou tiver ideias para novos recursos, visite o " +"Fórum" +"%(icon_forum)s ou abra um chamado no Repositório de Código Fonte" +"%(icon_source_code)s." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "\n\nEspalhe a palavra! Fale com seus amigos e colegas sobre como o %(project_title)s é incrível!\nSiga-nos no Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, ou Instagram%(icon_social_instagram)s" +msgstr "" +"\n" +"\n" +"Espalhe a palavra! Fale com seus amigos e colegas sobre como o " +"%(project_title)s é incrível!\n" +"Siga-nos no Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, ou Instagram%(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -240,7 +305,9 @@ msgstr "Cancelar" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po index fb15ce017b..2bb4c85ed7 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 # Stefaniu Criste , 2016 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -73,7 +75,8 @@ msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "Numărul maxim de caractere care vor fi afișate ca titlu de vizualizare." +msgstr "" +"Numărul maxim de caractere care vor fi afișate ca titlu de vizualizare." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -97,9 +100,11 @@ msgstr "Eroare la server" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "A apărut o eroare. A fost raportată administratorilor site-ului prin e-mail și va fi reparatî în scurt timp. Mulțumim pentru răbdarea dvs." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"A apărut o eroare. A fost raportată administratorilor site-ului prin e-mail " +"și va fi reparatî în scurt timp. Mulțumim pentru răbdarea dvs." #: templates/appearance/about.html:10 msgid "About" @@ -111,7 +116,9 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n%(setting_project_title)s se bazează pe %(project_title)s" +msgstr "" +"\n" +"%(setting_project_title)s se bazează pe %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -130,58 +137,120 @@ msgstr "Lansat sub licența:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " -msgstr "\n%(project_title)s este un software gratuit și cu sursă deschisă care ți-a fost prezentat cu de Roberto Rosario și colaboratorii." +msgstr "" +"\n" +"%(project_title)s este un software gratuit și cu sursă deschisă care ți-a " +"fost prezentat cu de Roberto Rosario și colaboratorii." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" +" " +msgstr "" +"\n" +" Este necesar un efort deosebit pentru a face " +"%(project_title)s atât de bun. Avem nevoie de cât mai mult ajutor!\n" " " -msgstr "\n Este necesar un efort deosebit pentru a face %(project_title)s atât de bun. Avem nevoie de cât mai mult ajutor!\n " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" +" " +msgstr "" +"\n" +" Dacă utilizați %(project_title)s vă rugăm să aveți în vedere efectuarea unei " +"donații %(icon_social_paypal)s\n" " " -msgstr "\n Dacă utilizați %(project_title)s vă rugăm să aveți în vedere efectuarea unei donații %(icon_social_paypal)s\n " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\nLista completă a modificărilor este disponibilă prin notele Note de lansare%(icon_documentation)s sau versiunea scurtă Istoricul modificărilor %(icon_documentation)s ." +msgstr "" +"\n" +"Lista completă a modificărilor este disponibilă prin notele Note " +"de lansare%(icon_documentation)s sau versiunea scurtă Istoricul modificărilor %(icon_documentation)s ." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" +" " +msgstr "" +"\n" +" Pentru întrebări verificații Documentația%(icon_documentation)s sau " +"Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\n Pentru întrebări verificații Documentația%(icon_documentation)s sau Wiki %(icon_wiki)s.\n " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\nDacă ați găsit un bug sau aveți o idee de noi caracteristici, vizitați Forumul %(icon_forum)s sau deschideți un bilet în depozitul de coduri sursă%(icon_source_code)s." +msgstr "" +"\n" +"Dacă ați găsit un bug sau aveți o idee de noi caracteristici, vizitați Forumul " +"%(icon_forum)s sau deschideți un bilet în depozitul de coduri sursă" +"%(icon_source_code)s." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "\nImprastie vestea. Discutați cu prietenii și colegii despre cât de minunat este %(project_title)s!\nUrmăriți-ne pe Twitter %(icon_social_twitter)s,Facebook %(icon_social_facebook)s, sau Instagram %(icon_social_instagram)s" +msgstr "" +"\n" +"Imprastie vestea. Discutați cu prietenii și colegii despre cât de minunat " +"este %(project_title)s!\n" +"Urmăriți-ne pe Twitter %(icon_social_twitter)s,Facebook %(icon_social_facebook)s, sau Instagram %(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -239,7 +308,9 @@ msgstr "Anulează" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s- %(end)s din %(total)s) ( Pagina %(page_number)s din %(total_pages)s )" +msgstr "" +"Total (%(start)s- %(end)s din %(total)s) ( Pagina %(page_number)s din " +"%(total_pages)s )" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -263,7 +334,9 @@ msgstr "Să începem" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți următoarele:" +msgstr "" +"Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți " +"următoarele:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index ebac2d6d82..5f872de1e5 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -97,9 +100,11 @@ msgstr "Ошибка сервера" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной почте, и она будет исправлена. Спасибо за терпение." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной " +"почте, и она будет исправлена. Спасибо за терпение." #: templates/appearance/about.html:10 msgid "About" @@ -111,7 +116,9 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n%(setting_project_title)s основан(ы) на %(project_title)s" +msgstr "" +"\n" +"%(setting_project_title)s основан(ы) на %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -130,7 +137,9 @@ msgstr "Выпущено под лицензией:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -138,7 +147,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -146,7 +156,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -154,7 +167,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -162,7 +179,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -170,7 +190,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -178,8 +202,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -239,7 +268,9 @@ msgstr "Отменить" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из %(total_pages)s)" +msgstr "" +"Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -263,7 +294,9 @@ msgstr "Приступая к работе" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan EDMS:" +msgstr "" +"Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan " +"EDMS:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" @@ -283,7 +316,8 @@ msgstr "Ошибка соединения с сервером" #: templates/appearance/root.html:67 msgid "Check you network connection and try again in a few moments." -msgstr "Проверьте ваше соединение с сетью и попробуйте еще раз через некоторое время." +msgstr "" +"Проверьте ваше соединение с сетью и попробуйте еще раз через некоторое время." #: templatetags/appearance_tags.py:17 msgid "None" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po index 2035940bff..a2be324616 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # kontrabant , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -96,9 +98,11 @@ msgstr "Napaka strežnika" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Prišlo je do napake. Sporočena je administratorjem spletnega mesta po elektronski pošti in naj bi bila kmalu odpravljena. Hvala za potrpljenje." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Prišlo je do napake. Sporočena je administratorjem spletnega mesta po " +"elektronski pošti in naj bi bila kmalu odpravljena. Hvala za potrpljenje." #: templates/appearance/about.html:10 msgid "About" @@ -129,7 +133,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -137,7 +143,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -145,7 +152,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -153,7 +163,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -161,7 +175,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -169,7 +186,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -177,8 +198,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -238,7 +264,9 @@ msgstr "Prekliči" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Skupaj (%(start)s - %(end)s od %(total)s) (Stran %(page_number)s od %(total_pages)s)" +msgstr "" +"Skupaj (%(start)s - %(end)s od %(total)s) (Stran %(page_number)s od " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po index cb41f469c8..1e28470c00 100644 --- a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -97,9 +98,11 @@ msgstr "Server hatası" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Bir hata oldu. Site yöneticilerine e-posta yoluyla bildirildi ve kısa süre içinde düzeltilmesi gerekiyor. Sabrınız için teşekkürler." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Bir hata oldu. Site yöneticilerine e-posta yoluyla bildirildi ve kısa süre " +"içinde düzeltilmesi gerekiyor. Sabrınız için teşekkürler." #: templates/appearance/about.html:10 msgid "About" @@ -130,7 +133,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -138,7 +143,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -146,7 +152,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -154,7 +163,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -162,7 +175,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -170,7 +186,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -178,8 +198,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -239,7 +264,9 @@ msgstr "İptal" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Toplam (%(start)s - %(end)s / %(total)s) (Sayfa %(page_number)s / %(total_pages)s)" +msgstr "" +"Toplam (%(start)s - %(end)s / %(total)s) (Sayfa %(page_number)s / " +"%(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -263,7 +290,8 @@ msgstr "Başlarken" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Maya EDMS'i tam olarak kullanabilmeniz için aşağıdakilere ihtiyacınız vardır:" +msgstr "" +"Maya EDMS'i tam olarak kullanabilmeniz için aşağıdakilere ihtiyacınız vardır:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po index a8fbd3220e..dcfa84d1af 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:12 settings.py:9 @@ -95,8 +96,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -128,7 +129,9 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -136,7 +139,8 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -144,7 +148,10 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " msgstr "" @@ -152,7 +159,11 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -160,7 +171,10 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " msgstr "" @@ -168,7 +182,11 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " msgstr "" @@ -176,8 +194,13 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po index fc16356564..9a3041a3e0 100644 --- a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:12 settings.py:9 @@ -96,9 +97,11 @@ msgstr "服务器错误" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "出现了错误。它已通过电子邮件报告给网站管理员,应该很快就会修复。谢谢你的耐心。" +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"出现了错误。它已通过电子邮件报告给网站管理员,应该很快就会修复。谢谢你的耐" +"心。" #: templates/appearance/about.html:10 msgid "About" @@ -110,7 +113,10 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "\n                    %(setting_project_title)s基于%(project_title)s\n                " +msgstr "" +"\n" +"                    %(setting_project_title)s基于%(project_title)s\n" +"                " #: templates/appearance/about.html:82 msgid "Version" @@ -129,58 +135,120 @@ msgstr "根据许可证发布:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought " +"to you with by Roberto Rosario and contributors.\n" " " -msgstr "\n                %(project_title)s是一个免费的开源软件,由Roberto Rosario和贡献者提供。\n            " +msgstr "" +"\n" +"                %(project_title)s是一个免费的开源软件,由Roberto Rosario和贡" +"献者提供。\n" +"            " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-" +"rich as it is. We need all the help we can get!\n" " " -msgstr "\n                要使%(project_title)s功能丰富,需要付出很大的努力。我们需要得到更多的帮助!\n            " +msgstr "" +"\n" +"                要使%(project_title)s功能丰富,需要付出很大的努力。我们需要得" +"到更多的帮助!\n" +"            " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation " +"%(icon_social_paypal)s\n" " " -msgstr "\n                如果您使用%(project_title)s,请考虑捐款%(icon_social_paypal)s \n            " +msgstr "" +"\n" +"                如果您使用%(project_title)s,请考虑捐款%(icon_social_paypal)s \n" +"            " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "\n                完整的更改列表可见于发行说明%(icon_documentation)s 或简短版本更改日志%(icon_documentation)s 。\n            " +msgstr "" +"\n" +"                完整的更改列表可见于发行说明%(icon_documentation)s " +"或简短版本更改日志%(icon_documentation)s 。\n" +"            " #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or " +"the Wiki " +"%(icon_wiki)s.\n" " " -msgstr "\n                有关问题,请查看文档%(icon_documentation)s Wiki %(icon_wiki)s 。\n            " +msgstr "" +"\n" +"                有关问题,请查看文档%(icon_documentation)s Wiki %(icon_wiki)s 。\n" +"            " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum " +"%(icon_forum)s or open a ticket in the Source code repository " +"%(icon_source_code)s.\n" " " -msgstr "\n                如果您发现了bug或有功能创意,请访问论坛%(icon_forum)s 或在源代码仓库%(icon_source_code)s 提交问题。\n            " +msgstr "" +"\n" +"                如果您发现了bug或有功能创意,请访问论坛%(icon_forum)s 或在源代码仓" +"库%(icon_source_code)s 提交问题。\n" +"            " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about " +"how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook " +"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "\n                宣传这个软件。和你的朋友和同事谈谈%(project_title)s真棒!\n                在 Twitter %(icon_social_twitter)s Facebook %(icon_social_facebook)s ,或 Instagram %(icon_social_instagram)s 关注我们\n            " +msgstr "" +"\n" +"                宣传这个软件。和你的朋友和同事谈谈%(project_title)s真棒!\n" +"                在 Twitter %(icon_social_twitter)s Facebook " +"%(icon_social_facebook)s ,或 Instagram %(icon_social_instagram)s 关注我" +"们\n" +"            " #: templates/appearance/base.html:32 msgid "Warning" @@ -238,7 +306,9 @@ msgstr "取消" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "总计(%(start)s - %(end)s,%(total)s)(第%(page_number)s页,总%(total_pages)s页)" +msgstr "" +"总计(%(start)s - %(end)s,%(total)s)(第%(page_number)s页," +"总%(total_pages)s页)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index 8ffe808856..83032b0617 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -63,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -147,7 +149,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index 7b75409342..bc6490826b 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -63,8 +64,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -143,7 +144,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Промяна на парола на потребители от супер потребител и служител не е " +"разрешено. Използвайте администраторския модул за тези случаи." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po index 0fd4e84796..6cf9acd95f 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -38,7 +40,9 @@ msgstr "Zapamti" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Molimo unesite ispravan e-mail i lozinku. Imajte na umu da je polje za lozinku osetljivo na slovo." +msgstr "" +"Molimo unesite ispravan e-mail i lozinku. Imajte na umu da je polje za " +"lozinku osetljivo na slovo." #: forms.py:27 msgid "This account is inactive." @@ -60,12 +64,14 @@ msgstr "Postavite lozinku" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Kontroliše mehanizam koji se koristi za autentifikaciju korisnika. Opcije su: korisničko ime, e-pošta" +msgstr "" +"Kontroliše mehanizam koji se koristi za autentifikaciju korisnika. Opcije " +"su: korisničko ime, e-pošta" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -92,7 +98,8 @@ msgstr "Resetovanje lozinke" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Resetovanje lozinke završeno! Kliknite na link ispod kako biste se prijavili." +msgstr "" +"Resetovanje lozinke završeno! Kliknite na link ispod kako biste se prijavili." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -145,7 +152,9 @@ msgstr "Izmjenite lozinku korisnika: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user i staff user reset lozinke nije dozvoljen, koristite administratorski interface za takve slučajeve" +msgstr "" +"Super user i staff user reset lozinke nije dozvoljen, koristite " +"administratorski interface za takve slučajeve" #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po index e1d978e403..e6be9cd14d 100644 --- a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -63,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po index 96704c0e27..c3433f84c0 100644 --- a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -64,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po index bbd9b3838e..36fd0bf6c4 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2019 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -42,7 +43,9 @@ msgstr "Angemeldet bleiben" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass das Passwortfeld Groß- und Kleinschreibung unterscheidet." +msgstr "" +"Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass " +"das Passwortfeld Groß- und Kleinschreibung unterscheidet." #: forms.py:27 msgid "This account is inactive." @@ -64,12 +67,14 @@ msgstr "Passwort festlegen" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-Mail-Adresse" +msgstr "" +"Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-" +"Mail-Adresse" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -96,7 +101,8 @@ msgstr "Passwort zurücksetzen" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Passwortrücksetzung erfolgreich! Klicken Sie auf den Link um sich anzumelden." +msgstr "" +"Passwortrücksetzung erfolgreich! Klicken Sie auf den Link um sich anzumelden." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -148,7 +154,9 @@ msgstr "Passwort ändern für Benutzer: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Superuser und Staff-Benutzer löschen ist nicht erlaubt. Benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Superuser und Staff-Benutzer löschen ist nicht erlaubt. Benutzen Sie die " +"Administratoren-Oberfläche dafür." #: views.py:196 #, python-format @@ -158,4 +166,6 @@ msgstr "Passwort für Benutzer %s erfolgreich zurückgesetzt." #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": %(error)s" +msgstr "" +"Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": " +"%(error)s" diff --git a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po index 06f4d7fcce..97c3c95db5 100644 --- a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -37,7 +38,9 @@ msgstr "Να με θυμάσαι" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Παρακαλώ εισάγετε το email και τον κωδικό σας. Σημειώστε ότι το πεδίο του κωδικού κάνει διάκριση μεταξύ κεφαλαίων και πεζών χαρακτήρων." +msgstr "" +"Παρακαλώ εισάγετε το email και τον κωδικό σας. Σημειώστε ότι το πεδίο του " +"κωδικού κάνει διάκριση μεταξύ κεφαλαίων και πεζών χαρακτήρων." #: forms.py:27 msgid "This account is inactive." @@ -59,12 +62,14 @@ msgstr "Ορισμός κωδικού" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Ελέγχει τονμηχανισμό που χρησιμοποιείται για την πιστοποίηση των χρηστών. Οι διαθέσιμες επιλογές είναι: Όνομα χρήστη, email" +msgstr "" +"Ελέγχει τονμηχανισμό που χρησιμοποιείται για την πιστοποίηση των χρηστών. Οι " +"διαθέσιμες επιλογές είναι: Όνομα χρήστη, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -91,7 +96,9 @@ msgstr "Επαναφορά κωδικού πρόσβασης" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Η επαναφορά του κωδικού πρόσβασης ολοκληρώθηκε! Επιλέξτε τον παρακάτω σύνδεσμο για να συνδεθείτε." +msgstr "" +"Η επαναφορά του κωδικού πρόσβασης ολοκληρώθηκε! Επιλέξτε τον παρακάτω " +"σύνδεσμο για να συνδεθείτε." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -104,7 +111,9 @@ msgstr "Υποβολή" #: templates/authentication/password_reset_done.html:15 msgid "Password reset email sent!" -msgstr "Έγινε αποστολή ηλεκτρονικού μηνύματος για την επαναφορά του κωδικού πρόσβασης!" +msgstr "" +"Έγινε αποστολή ηλεκτρονικού μηνύματος για την επαναφορά του κωδικού " +"πρόσβασης!" #: views.py:74 msgid "Your password has been successfully changed." @@ -143,7 +152,9 @@ msgstr "Αλλαγή κωδικού για τον χρήστη: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Η αρχικοποίηση κωδικών για τον υπερχρήστη και το προσωπικό δεν επιτρέπεται. Κάντε χρήση του περιβάλλοντος διαχείρισης γι' αυτές τις περιπτώσεις." +msgstr "" +"Η αρχικοποίηση κωδικών για τον υπερχρήστη και το προσωπικό δεν επιτρέπεται. " +"Κάντε χρήση του περιβάλλοντος διαχείρισης γι' αυτές τις περιπτώσεις." #: views.py:196 #, python-format @@ -153,4 +164,5 @@ msgstr "" #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Σφάλμακατά την αρχικοποίηση του κωδικού του χρήστη \"%(user)s\": %(error)s" +msgstr "" +"Σφάλμακατά την αρχικοποίηση του κωδικού του χρήστη \"%(user)s\": %(error)s" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index 30ea2c9e06..271b123659 100644 --- a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po index 010603d0d4..ed74b5d798 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2017-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -38,7 +39,9 @@ msgstr "Recuérdame" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Introduzca una dirección de correo y contraseña válidos. Recuerde que la contraseña es sensible a mayúsculas." +msgstr "" +"Introduzca una dirección de correo y contraseña válidos. Recuerde que la " +"contraseña es sensible a mayúsculas." #: forms.py:27 msgid "This account is inactive." @@ -60,13 +63,17 @@ msgstr "Asignar contraseña" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controla el mecanismo utilizado para el usuario autenticado. Las opciones son: 'username' nombre de usuario, 'email' correo electrónico" +msgstr "" +"Controla el mecanismo utilizado para el usuario autenticado. Las opciones " +"son: 'username' nombre de usuario, 'email' correo electrónico" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." -msgstr "El tiempo máximo que un usuario que haga clic en la casilla \"Recuérdeme\" permanecerá registrado. El valor es el tiempo en segundos." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." +msgstr "" +"El tiempo máximo que un usuario que haga clic en la casilla \"Recuérdeme\" " +"permanecerá registrado. El valor es el tiempo en segundos." #: templates/authentication/login.html:11 msgid "Login" @@ -92,7 +99,9 @@ msgstr "Restablecimiento de contraseña" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Restablecimiento de contraseña completado! Haga clic en el enlace de abajo para iniciar sesión." +msgstr "" +"Restablecimiento de contraseña completado! Haga clic en el enlace de abajo " +"para iniciar sesión." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -144,7 +153,9 @@ msgstr "Cambiar contraseñas para el usuario: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite cambiar la contraseña del super usuario y del usuario de " +"personal. Use la interfaz de administración para estos casos." #: views.py:196 #, python-format @@ -154,4 +165,5 @@ msgstr "Restablecimiento de contraseña exitoso para el usuario: %s." #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " +msgstr "" +"Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 6a0b5fbc13..82b007c1b8 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -39,7 +40,9 @@ msgstr "مرا به خاطر بسپار" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "لطفا یک ایمیل و کلمه عبور معتبر وارد کنید. توجه کنید که کلمه عبور به حروف کوچک و بزرگ حساس است." +msgstr "" +"لطفا یک ایمیل و کلمه عبور معتبر وارد کنید. توجه کنید که کلمه عبور به حروف " +"کوچک و بزرگ حساس است." #: forms.py:27 msgid "This account is inactive." @@ -61,12 +64,14 @@ msgstr "قراردادن رمز عبور" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "کنترل مکانیزم مورد استفاده برای تأیید هویت کاربر. گزینه ها عبارتند از: نام کاربری، ایمیل" +msgstr "" +"کنترل مکانیزم مورد استفاده برای تأیید هویت کاربر. گزینه ها عبارتند از: نام " +"کاربری، ایمیل" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -145,7 +150,9 @@ msgstr "تغییر رمز عبور برای کاربر: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "بازپروری کاربر با کاربر و کارکنان فوق العاده مجاز نیست، از رابط کاربری مدیریت برای این موارد استفاده کنید." +msgstr "" +"بازپروری کاربر با کاربر و کارکنان فوق العاده مجاز نیست، از رابط کاربری " +"مدیریت برای این موارد استفاده کنید." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index f4f0568e3b..14b7685d75 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -42,7 +43,9 @@ msgstr "Se souvenir de moi" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Veuillez entrer un courriel et mot de passe valide. Notez que le mot de passe est sensible à la casse." +msgstr "" +"Veuillez entrer un courriel et mot de passe valide. Notez que le mot de " +"passe est sensible à la casse." #: forms.py:27 msgid "This account is inactive." @@ -64,12 +67,14 @@ msgstr "Mettre un mot de passe" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Contrôle le mécanisme utilisé pour identifier l'utilisateur. Les options sont : nom d'utilisateur, courriel" +msgstr "" +"Contrôle le mécanisme utilisé pour identifier l'utilisateur. Les options " +"sont : nom d'utilisateur, courriel" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -96,7 +101,9 @@ msgstr "Réinitialiser le mot de passe" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Réinitialisation du mot de passe terminée! Cliquez sur le lien ci-dessous pour vous connecter." +msgstr "" +"Réinitialisation du mot de passe terminée! Cliquez sur le lien ci-dessous " +"pour vous connecter." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -126,12 +133,14 @@ msgstr "Le changement de mot de passe n'est pas autorisé pour ce compte." #: views.py:145 #, python-format msgid "Password change request performed on %(count)d user" -msgstr "Demande de changement de mot de passe exécutée sur %(count)d utilisateur" +msgstr "" +"Demande de changement de mot de passe exécutée sur %(count)d utilisateur" #: views.py:147 #, python-format msgid "Password change request performed on %(count)d users" -msgstr "Demande de changement de mot de passe exécutée sur %(count)d utilisateurs" +msgstr "" +"Demande de changement de mot de passe exécutée sur %(count)d utilisateurs" #: views.py:156 msgid "Change user password" @@ -148,7 +157,10 @@ msgstr "Changer le mot de passe pour l'utilisateur: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "La réinitialisation des mots de passe pour les comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." +msgstr "" +"La réinitialisation des mots de passe pour les comptes super utilisateur et " +"staff n'est pas autorisée ici, veuillez le faire via l'interface " +"d'administration." #: views.py:196 #, python-format @@ -158,4 +170,6 @@ msgstr "Le mot de passe de l'utilisateur : %s a été ré-initialisé avec succ #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur \"%(user)s\" : %(error)s" +msgstr "" +"Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur " +"\"%(user)s\" : %(error)s" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 094042356c..016fdff845 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -64,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index 736f62aa97..9d1628ccc6 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 settings.py:9 @@ -37,7 +38,8 @@ msgstr "" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" +msgstr "" +"Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" #: forms.py:27 msgid "This account is inactive." @@ -63,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index 32a6d9dd63..eb8242dee0 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniele Bortoluzzi , 2019 # Marco Camplese , 2016-2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -39,7 +40,9 @@ msgstr "Ricordami" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Inserisci email e password corretti. Si noti che il campo password è case-sensitive." +msgstr "" +"Inserisci email e password corretti. Si noti che il campo password è case-" +"sensitive." #: forms.py:27 msgid "This account is inactive." @@ -61,12 +64,14 @@ msgstr "Imposta password" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni sono: username, email" +msgstr "" +"Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni " +"sono: username, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -93,7 +98,8 @@ msgstr "Reimposta la password" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Reimpostazione della password completata! Clicca sul link sotto per accedere" +msgstr "" +"Reimpostazione della password completata! Clicca sul link sotto per accedere" #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -145,7 +151,9 @@ msgstr "Cambia la password dell'utente: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Al super utente e utente non è consentito di reimpostare la password personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito di reimpostare la password " +"personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:196 #, python-format @@ -155,4 +163,6 @@ msgstr "Effettuato reset della password per l'utente: %s." #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Errore per il reimpostamento della password per l'utente \"%(user)s\": %(error)s" +msgstr "" +"Errore per il reimpostamento della password per l'utente \"%(user)s\": " +"%(error)s" diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po index 5b82eb938b..286f7aa6db 100644 --- a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -38,7 +40,9 @@ msgstr "Atceries mani" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Lūdzu, ievadiet pareizu e-pasta adresi un paroli. Ņemiet vērā, ka paroles lauks ir reģistrjutīgs." +msgstr "" +"Lūdzu, ievadiet pareizu e-pasta adresi un paroli. Ņemiet vērā, ka paroles " +"lauks ir reģistrjutīgs." #: forms.py:27 msgid "This account is inactive." @@ -60,12 +64,14 @@ msgstr "Uzstādīt paroli" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Kontrolē lietotāja autentifikācijas mehānismu. Iespējas ir: lietotājvārds, e-pasts" +msgstr "" +"Kontrolē lietotāja autentifikācijas mehānismu. Iespējas ir: lietotājvārds, e-" +"pasts" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -92,7 +98,9 @@ msgstr "Paroles atiestatīšana" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Paroles atiestatīšana pabeigta! Lai pierakstītos, noklikšķiniet uz tālāk redzamās saites." +msgstr "" +"Paroles atiestatīšana pabeigta! Lai pierakstītos, noklikšķiniet uz tālāk " +"redzamās saites." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -145,7 +153,9 @@ msgstr "Mainīt paroli lietotājam: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super lietotāju un darbinieku lietotāju paroles atiestatīšana nav atļauta, šajos gadījumos izmantojiet admin saskarni." +msgstr "" +"Super lietotāju un darbinieku lietotāju paroles atiestatīšana nav atļauta, " +"šajos gadījumos izmantojiet admin saskarni." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po index 743d6e8356..a3948cd6c5 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Justin Albstbstmeijer , 2016 # Martin Horseling , 2018 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -39,7 +40,9 @@ msgstr "Onthoud mij" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het wachtwoord-invulveld hoofdlettergevoelig is." +msgstr "" +"Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het " +"wachtwoord-invulveld hoofdlettergevoelig is." #: forms.py:27 msgid "This account is inactive." @@ -61,12 +64,14 @@ msgstr "Stel paswoord in" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: gebruikersnaam, email" +msgstr "" +"Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: " +"gebruikersnaam, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -145,7 +150,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." +msgstr "" +"Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, " +"gebruik de admin gebruiker voor deze zaken." #: views.py:196 #, python-format @@ -155,4 +162,6 @@ msgstr "" #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": %(error)s" +msgstr "" +"Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": " +"%(error)s" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index ce8ca56477..d4130876f6 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2016-2017 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -61,12 +64,14 @@ msgstr "Ustaw hasło" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, email" +msgstr "" +"Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, " +"email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -147,7 +152,9 @@ msgstr "Zmień hasło użytkownika: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." +msgstr "" +"Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu " +"administratora w takich przypadkach." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 9d4cb1ea02..a2e1e659e7 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -64,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -144,7 +145,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Não é permitido redefinir a senha de administradores ou de membros da equipa, utilize a interface de administrador para estes casos." +msgstr "" +"Não é permitido redefinir a senha de administradores ou de membros da " +"equipa, utilize a interface de administrador para estes casos." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po index 400fe69425..8c84c7dccd 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -39,7 +40,9 @@ msgstr "Lembrar de mim" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Por favor, indique um e-mail e senha corretamente. Note que o campo de senha diferencia maiúsculas de minúsculas." +msgstr "" +"Por favor, indique um e-mail e senha corretamente. Note que o campo de senha " +"diferencia maiúsculas de minúsculas." #: forms.py:27 msgid "This account is inactive." @@ -61,12 +64,14 @@ msgstr "Configurar senha" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controla o mecanismo usado para autenticar o usuário. As opções são: nome de usuário, e-mail" +msgstr "" +"Controla o mecanismo usado para autenticar o usuário. As opções são: nome de " +"usuário, e-mail" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -145,7 +150,9 @@ msgstr "Alterar senha para o usuário: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " +"interface de administração para esses casos." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po index a03126e0ae..79c4f18ac7 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -38,7 +40,9 @@ msgstr "Amintește-ți de mine" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Introduceți un e-mail și o parolă corecte. Rețineți! Câmpul parolei este sensibil la minuscule." +msgstr "" +"Introduceți un e-mail și o parolă corecte. Rețineți! Câmpul parolei este " +"sensibil la minuscule." #: forms.py:27 msgid "This account is inactive." @@ -60,12 +64,14 @@ msgstr "Seteaza parola" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controlează mecanismul utilizat pentru utilizatorul autentificat. Opțiunile sunt: numele de utilizator, e-mailul" +msgstr "" +"Controlează mecanismul utilizat pentru utilizatorul autentificat. Opțiunile " +"sunt: numele de utilizator, e-mailul" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -92,7 +98,9 @@ msgstr "Reinițializarea parolei" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Reinițializarea parolei este finalizată! Faceți clic pe link-ul de mai jos pentru a vă conecta." +msgstr "" +"Reinițializarea parolei este finalizată! Faceți clic pe link-ul de mai jos " +"pentru a vă conecta." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -145,7 +153,9 @@ msgstr "Schimbați parola pentru utilizatorul: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super utilizator și parola de utilizator personalul resetarea nu este permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "" +"Super utilizator și parola de utilizator personalul resetarea nu este " +"permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index cb7073fb2d..d5e4bf250d 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -38,7 +41,9 @@ msgstr "" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Пожалуйста, введите правильный адрес электронной почты и пароль с учетом регистра." +msgstr "" +"Пожалуйста, введите правильный адрес электронной почты и пароль с учетом " +"регистра." #: forms.py:27 msgid "This account is inactive." @@ -60,12 +65,14 @@ msgstr "" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Управление механизмом, используемым для аутентификации пользователя. Возможные варианты: имя пользователя, адрес электронной почты" +msgstr "" +"Управление механизмом, используемым для аутентификации пользователя. " +"Возможные варианты: имя пользователя, адрес электронной почты" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -146,7 +153,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Сброс паролей суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po index c0d709932f..7ed6d1cab0 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -63,8 +65,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po index 709583cb95..ce2015ebb8 100644 --- a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -38,7 +39,9 @@ msgstr "Beni hatırla" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Lütfen doğru bir e-posta ve şifre girin. Parola alanının büyük / küçük harfe duyarlı olduğunu unutmayın." +msgstr "" +"Lütfen doğru bir e-posta ve şifre girin. Parola alanının büyük / küçük harfe " +"duyarlı olduğunu unutmayın." #: forms.py:27 msgid "This account is inactive." @@ -60,12 +63,14 @@ msgstr "" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Kimliği doğrulanmış kullanıcı için kullanılan mekanizmayı denetler. Seçenekler şunlardır: kullanıcı adı, e-posta" +msgstr "" +"Kimliği doğrulanmış kullanıcı için kullanılan mekanizmayı denetler. " +"Seçenekler şunlardır: kullanıcı adı, e-posta" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -144,7 +149,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Süper kullanıcı ve çalışanların parola sıfırlamasına izin verilmez, bu durumlarda admin arayüzünü kullanın." +msgstr "" +"Süper kullanıcı ve çalışanların parola sıfırlamasına izin verilmez, bu " +"durumlarda admin arayüzünü kullanın." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po index 0643212b6b..b0de3d50e9 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 settings.py:9 @@ -63,8 +64,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -142,7 +143,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po index 3eb698d60b..45f9e5a4ab 100644 --- a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 settings.py:9 @@ -64,8 +65,8 @@ msgstr "控制用于经过身份验证的用户的机制。选项包括:用户 #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" -" in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " +"in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po index 266d74ffff..a25654103e 100644 --- a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mohammed ALDOUB , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -53,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po index 60e95e82a3..2092a31477 100644 --- a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pavlin Koldamov , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Pavlin Koldamov , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po index 2c9ef74cde..3a99b6b9bd 100644 --- a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # www.ping.ba , 2019 # Atdhe Tabaku , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -54,8 +56,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 @@ -72,8 +74,7 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Upravo ste završili instalaciju %(project_title)s, " -"čestitam!" +"Upravo ste završili instalaciju %(project_title)s, čestitam!" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" diff --git a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po index 64eb19f6ad..e4fe671e77 100644 --- a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -49,8 +50,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po index 404d8117ab..f33c077182 100644 --- a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po index 429342444c..08ebe92c2b 100644 --- a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Berny , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -52,13 +53,12 @@ msgstr "Auto-Admin Eigenschaften" #: settings.py:14 msgid "Sets the email of the automatically created super user account." -msgstr "" -"Setzt die E-Mailadresse für das automatisch erstellte Superuser-Konto." +msgstr "Setzt die E-Mailadresse für das automatisch erstellte Superuser-Konto." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" "Das Passwort für das automatisch erstellte Superuser-Konto. Wenn Sie das " "Feld leer lassen, wird ein Zufallspasswort erstellt." diff --git a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po index 61c6f7e40b..9ccd58537f 100644 --- a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po index 9b95982446..694e2a5854 100644 --- a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po index 91e1458ec5..2285f6922c 100644 --- a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # jmcainzos , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -31,8 +31,8 @@ msgid "" "Welcome Admin! You have been given superuser privileges. Use them with " "caution." msgstr "" -"¡Bienvenido Admin! Se le han otorgado privilegios de superusuario. Úsalo con" -" precaución." +"¡Bienvenido Admin! Se le han otorgado privilegios de superusuario. Úsalo con " +"precaución." #: models.py:15 msgid "Account" @@ -58,8 +58,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" "La contraseña de la cuenta de superusuario creada automáticamente. Si es " "igual a Ninguno, la contraseña se genera aleatoriamente." diff --git a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po index c643dbeff9..aeb9c945ff 100644 --- a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Mehdi Amani , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -54,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po index 8f84741b2a..6016ae0d13 100644 --- a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po @@ -2,26 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Christophe CHAUVET , 2019 # Thierry Schott , 2019 # Yves Dubois , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -33,8 +33,8 @@ msgid "" "Welcome Admin! You have been given superuser privileges. Use them with " "caution." msgstr "" -"Bienvenue Admin! Vous avez reçu des privilèges de superutilisateur. " -"Utilisez-les avec prudence." +"Bienvenue Admin! Vous avez reçu des privilèges de superutilisateur. Utilisez-" +"les avec prudence." #: models.py:15 msgid "Account" @@ -58,8 +58,8 @@ msgstr "Définit le courriel du compte superutilisateur créé automatiquement." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" "Le mot de passe du compte superutilisateur créé automatiquement. S'il est " "vide, le mot de passe est généré de manière aléatoire." diff --git a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po index f9a59b3590..69ca22a1ad 100644 --- a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # molnars , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: molnars , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po index a0640065c5..34169c1617 100644 --- a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dzikri Hakim , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Dzikri Hakim , 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:9 @@ -53,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po index cae426ed59..0fff5c6ca6 100644 --- a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po @@ -2,26 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pierpaolo Baldan , 2019 # Marco Camplese , 2019 # Andrea Evangelisti , 2019 # Daniele Bortoluzzi , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Daniele Bortoluzzi , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -57,8 +57,8 @@ msgstr "Imposta l'email dell'account superutente creato in automatico." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" "La password dell'accoutn superutente creato in automatico. Se è uguale a " "None, la password è generata in maniera casuale." @@ -77,8 +77,7 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Hai appena completato l'installazione di %(project_title)s , " -"congratulazioni!" +"Hai appena completato l'installazione di %(project_title)s , congratulazioni!" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" diff --git a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po index c2731d3021..8ad917cc25 100644 --- a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -55,8 +56,8 @@ msgstr "Iestata automātiski izveidotā super lietotāja konta e-pastu." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" "Automātiski izveidotā super lietotāja konta parole. Ja tā ir vienāds ar " "Neko, parole tiek ģenerēta automātiski." diff --git a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po index 587c28d59e..5cc1adff71 100644 --- a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2019 # Justin Albstbstmeijer , 2019 # Martin Horseling , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Martin Horseling , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -55,8 +56,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po index d441df90cf..0dd91b2b75 100644 --- a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mic , 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -54,8 +56,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 @@ -72,8 +74,7 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Właśnie ukończyłeś instalację %(project_title)s. " -"Gratulacje!" +"Właśnie ukończyłeś instalację %(project_title)s. Gratulacje!" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po index 17cf631268..27450a3d38 100644 --- a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po @@ -2,23 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" -"Last-Translator: Manuela Silva , 2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Last-Translator: Manuela Silva , " +"2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,8 +55,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 @@ -96,5 +98,5 @@ msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -"Certifique-se de que altera a senha para aumentar a segurança e que desativa" -" esta mensagem." +"Certifique-se de que altera a senha para aumentar a segurança e que desativa " +"esta mensagem." diff --git a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po index 631cee611c..58a09e31e0 100644 --- a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Rogerio Falcone , 2019 # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" -"Last-Translator: José Samuel Facundo da Silva , 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Last-Translator: José Samuel Facundo da Silva , " +"2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -56,8 +58,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po index 69235e7abc..4d19b064a1 100644 --- a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Badea Gabriel , 2019 # Stefaniu Criste , 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -57,8 +59,8 @@ msgstr "Setează e-mailul contului de superutilizator creat automat." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" "Parola contului de superutilizator creat automat. Dacă este egală cu None, " "parola este generată aleator." @@ -104,5 +106,5 @@ msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru" -" a dezactiva acest mesaj." +"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru " +"a dezactiva acest mesaj." diff --git a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po index b5bd67f23e..6200ef59bb 100644 --- a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sergey Glita , 2019 # lilo.panic, 2019 # mizhgan , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -55,8 +57,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po index 0f9290d6c0..da639ff62c 100644 --- a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po @@ -2,20 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -49,8 +51,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po index 7021e027f0..0a0a9ce149 100644 --- a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Caner Başaran , 2019 # serhatcan77 , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: serhatcan77 , 2019\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -54,8 +55,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po index b57691af61..3da3adfde5 100644 --- a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Trung Phan Minh , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:9 @@ -53,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po index 24996ddbc0..82acd24dff 100644 --- a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:9 @@ -53,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal" -" to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal " +"to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po index e2619e6959..7b08e8ba39 100644 --- a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po @@ -2,32 +2,57 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mohammed ALDOUB , 2017 # Yaman Sanobar , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "الخزائن" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "خزانة" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "خزانة" + +#: events.py:17 +#, fuzzy +#| msgid "Add to cabinets" +msgid "Document added to cabinet" +msgstr "اضافة الى الخزائن" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "ازالة من الخزائن" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "ازالة من الخزائن" @@ -60,6 +85,16 @@ msgstr "الكل" msgid "Details" msgstr "التفاصيل" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinet" +msgid "get_cabinets()" +msgstr "انشاء خزانة " + #: models.py:35 search.py:16 msgid "Label" msgstr "العنوان" @@ -126,8 +161,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -211,6 +245,18 @@ msgstr "" msgid "Add" msgstr "إضافة" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "اضافة الى الخزائن" +msgstr[1] "اضافة الى الخزائن" +msgstr[2] "اضافة الى الخزائن" +msgstr[3] "اضافة الى الخزائن" +msgstr[4] "اضافة الى الخزائن" +msgstr[5] "اضافة الى الخزائن" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -244,6 +290,24 @@ msgstr "" msgid "Remove" msgstr "إزالة" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "ازالة من الخزائن" +msgstr[1] "ازالة من الخزائن" +msgstr[2] "ازالة من الخزائن" +msgstr[3] "ازالة من الخزائن" +msgstr[4] "ازالة من الخزائن" +msgstr[5] "ازالة من الخزائن" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "ازالة من الخزائن" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -257,3 +321,13 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Create cabinet" +msgid "Select cabinets" +msgstr "انشاء خزانة " + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po index 616647778d..7c195c6b54 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Pavlin Koldamov , 2017 # Iliya Georgiev , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Iliya Georgiev , 2017\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -28,6 +29,22 @@ msgstr "" msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -60,6 +77,14 @@ msgstr "" msgid "Details" msgstr "Детайли" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "" @@ -126,8 +151,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -211,6 +235,13 @@ msgstr "" msgid "Add" msgstr "Добави" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" +msgstr[1] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -244,6 +275,18 @@ msgstr "" msgid "Remove" msgstr "Премахнете" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" +msgstr[1] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -257,3 +300,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po index e7e6d40d3f..1217a2f1eb 100644 --- a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po @@ -2,32 +2,58 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # www.ping.ba , 2017 # Atdhe Tabaku , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Ormarić" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Ormarić" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Ormarić" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Kabinet za dokumente" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Izbrišite iz ormarića" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Izbrišite iz ormarića" @@ -60,6 +86,18 @@ msgstr "Sve" msgid "Details" msgstr "Detalji" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Ormari koji sadrže dokument:%s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Stvori kabinete" + #: models.py:35 search.py:16 msgid "Label" msgstr "Labela" @@ -126,16 +164,15 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Ime ovog nivoa kabineta dodato imenima svojih pretka." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL krajnje tačke API koja prikazuje dokumente liste unutar ovog kabineta." #: serializers.py:68 serializers.py:179 msgid "Comma separated list of document primary keys to add to this cabinet." msgstr "" -"Spisak primarnih ključeva dokumenata koji su odvojeni zarezom za dodavanje u" -" ovaj kabinet." +"Spisak primarnih ključeva dokumenata koji su odvojeni zarezom za dodavanje u " +"ovaj kabinet." #: serializers.py:158 msgid "" @@ -216,6 +253,15 @@ msgstr "Dodajte zahtevu u kabinu na %(count)d dokumentima" msgid "Add" msgstr "Dodati" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Dodajte dokumente u ormare" +msgstr[1] "Dodajte dokumente u ormare" +msgstr[2] "Dodajte dokumente u ormare" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -249,6 +295,21 @@ msgstr "Uklonite sa zahteva u kabini izvršenom na %(count)d dokumenata" msgid "Remove" msgstr "Ukloniti" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Ukloni dokumente is kabineta" +msgstr[1] "Ukloni dokumente is kabineta" +msgstr[2] "Ukloni dokumente is kabineta" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Ukloni dokumente is kabineta" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Ormari iz kojih će izabrani dokumenti biti uklonjeni." @@ -262,3 +323,15 @@ msgstr "Dokument:%(document)s ne nalazi se u kabinetu:%(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokument:%(document)s je izbrisan sa kabineta:%(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Izbriši kabinete" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Ormari na koje će se dodati odabrani dokumenti." diff --git a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po index 9c7f017ecf..f2b905d49e 100644 --- a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po @@ -2,31 +2,56 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 # Sebastian Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Sebastian Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Kabinety" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Kabinet" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Kabinet" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Kabinet dokumentu" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Odstranit z kabinetů" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Odstranit z kabinetů" @@ -59,6 +84,16 @@ msgstr "Vše" msgid "Details" msgstr "Detail" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Vytvořit kabinet" + #: models.py:35 search.py:16 msgid "Label" msgstr "Označení" @@ -125,8 +160,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -210,6 +244,16 @@ msgstr "" msgid "Add" msgstr "Přidat" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Přidat dokument do kabinetu" +msgstr[1] "Přidat dokument do kabinetu" +msgstr[2] "Přidat dokument do kabinetu" +msgstr[3] "Přidat dokument do kabinetu" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -243,6 +287,22 @@ msgstr "" msgid "Remove" msgstr "Odstranit" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Odstranit dokument z kabinetů" +msgstr[1] "Odstranit dokument z kabinetů" +msgstr[2] "Odstranit dokument z kabinetů" +msgstr[3] "Odstranit dokument z kabinetů" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Odstranit dokument z kabinetů" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Kabinety ze kterých budou vybrané dokumenty odstraněny" @@ -256,3 +316,15 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Odstranit kabinet" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets from which the selected documents will be removed." +msgid "Cabinets to which the document will be added." +msgstr "Kabinety ze kterých budou vybrané dokumenty odstraněny" diff --git a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po index fc46965b20..09f84dca44 100644 --- a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,6 +27,30 @@ msgstr "" msgid "Cabinets" msgstr "Samlesager" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Samlesag" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Samlesag" + +#: events.py:17 +#, fuzzy +#| msgid "Documents can be added to many cabinets." +msgid "Document added to cabinet" +msgstr "Dokumenter kan tilføjes flere samlesager" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Fjern fra samlesag" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Fjern fra samlesag" @@ -58,6 +83,16 @@ msgstr "Alle" msgid "Details" msgstr "Detaljer" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Opret samlesager" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etiket" @@ -124,8 +159,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -209,6 +243,14 @@ msgstr "" msgid "Add" msgstr "Tilføj" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Tilføj dokumenter til samlesag" +msgstr[1] "Tilføj dokumenter til samlesag" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -242,6 +284,20 @@ msgstr "" msgid "Remove" msgstr "Fjern" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Fjern dokumenter fra samlesager" +msgstr[1] "Fjern dokumenter fra samlesager" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Fjern dokumenter fra samlesager" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Samlesager hvorfra dokumentet bliver fjernet" @@ -255,3 +311,15 @@ msgstr "Dokumentet: %(document)s er ikke i samlesagen: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokumentet: %(document)s er fjernet fra samlesagen: %(cabinet)s" + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Slet samlesager" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets from which the selected documents will be removed." +msgid "Cabinets to which the document will be added." +msgstr "Samlesager hvorfra dokumentet bliver fjernet" diff --git a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po index 3170d14ca6..06c72934a7 100644 --- a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Jesaja Everling , 2017 # Bjoern Kowarsch , 2018 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -29,6 +30,30 @@ msgstr "" msgid "Cabinets" msgstr "Aktenschränke" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Aktenschrank" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Aktenschrank" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Dokumenten-Aktenschrank" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Aus Aktenschrank entfernen" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Aus Aktenschrank entfernen" @@ -61,6 +86,18 @@ msgstr "Alle" msgid "Details" msgstr "Details" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Aktenschränke mit Dokument %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Aktenschränke anlegen" + #: models.py:35 search.py:16 msgid "Label" msgstr "Bezeichner" @@ -129,8 +166,7 @@ msgstr "" "Elemente." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "Die URL dieses API-Endpunkts zeigt eine Liste der Dokumente in diesem " "Aktenschrank." @@ -147,8 +183,8 @@ msgid "" "URL is different than the canonical document URL." msgstr "" "Die auf ein Dokument zeigende API-URL im Verhältnis zum dem Aktenschrank, " -"der das Dokument speichert. Diese URL unterscheidet sich von der kanonischen" -" URL des Dokuments." +"der das Dokument speichert. Diese URL unterscheidet sich von der kanonischen " +"URL des Dokuments." #: templates/cabinets/cabinet_details.html:17 msgid "Navigation:" @@ -227,6 +263,14 @@ msgstr "%(count)d Dokumente zu Aktenschrank hinzugefügt" msgid "Add" msgstr "Hinzufügen" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Dokumente zu Aktenschrank hinzufügen" +msgstr[1] "Dokumente zu Aktenschrank hinzufügen" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -263,6 +307,20 @@ msgstr "%(count)d Dokumente aus Aktenschrank entfernt" msgid "Remove" msgstr "Entfernen" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Dokumente aus Aktenschrank entfernen" +msgstr[1] "Dokumente aus Aktenschrank entfernen" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Dokumente aus Aktenschrank entfernen" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Aktenschränke aus denen die ausgewählten Dokumente entfernt werden." @@ -276,3 +334,15 @@ msgstr "Dokument %(document)s ist nicht im Aktenschrank %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokument %(document)s entfernt aus Aktenschrank %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Aktenschränke löschen" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Aktenschränke zu denen die ausgewählten Dokumente hinzugefügt werden." diff --git a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po index 5e59fa6e6a..d49a85c936 100644 --- a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,6 +26,30 @@ msgstr "" msgid "Cabinets" msgstr "Ερμάρια" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Ερμάριο" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Ερμάριο" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Ερμάριο εγγράφων" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Αφαίρεση από ερμάρια" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Αφαίρεση από ερμάρια" @@ -58,6 +82,18 @@ msgstr "Όλα" msgid "Details" msgstr "Λεπτομέρειες" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Ερμάρια που περιέχουν έγγραφο: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Δημιουργία ερμαρίων" + #: models.py:35 search.py:16 msgid "Label" msgstr "Ετικέτα" @@ -124,8 +160,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -209,6 +244,14 @@ msgstr "Προσθήκη σε ερμάριο πραγματοποιήθηκε σ msgid "Add" msgstr "Προσθήκη" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Προσθήκη εγγράφων στα ερμάρια" +msgstr[1] "Προσθήκη εγγράφων στα ερμάρια" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -242,6 +285,20 @@ msgstr "Αφαίρεση από ερμάριο πραγματοποιήθηκε msgid "Remove" msgstr "Αφαίρεση" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Αφαίρεση εγγράφων από ερμάρια" +msgstr[1] "Αφαίρεση εγγράφων από ερμάρια" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Αφαίρεση εγγράφων από ερμάρια" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Ερμάρια από τα οποία τα επιλεγμένα έγγραφα θα αφαιρεθούν." @@ -255,3 +312,15 @@ msgstr "Έγγραφο: %(document)s δεν περιέχεται στο ερμά #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Έγγραφο: %(document)s αφαιρέθηκε από το ερμάριο: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Διαγραφή ερμαρίων" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Ερμάρια στα οποία τα επιλεγμένα έγγραφα θα προστεθούν." diff --git a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po index 46aacc0831..9a7a352dcd 100644 --- a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po index c2ef87d951..f3cbb8c10a 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Roberto Rosario, 2018\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,6 +26,30 @@ msgstr "" msgid "Cabinets" msgstr "Archivadores" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Archivador" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Archivador" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Archivador de documento" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Remover de archivador" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Remover de archivador" @@ -58,6 +82,18 @@ msgstr "Todos" msgid "Details" msgstr "Detalles" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Archivadores que contienen el documento: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Crear archivadores" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etiqueta" @@ -126,8 +162,7 @@ msgstr "" "contienen. " #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL del servicio de la API que muetra los documentos contenidos en este " "archivador. " @@ -223,6 +258,14 @@ msgstr "Solicitud de añadir a gabinete realizada en %(count)d documentos" msgid "Add" msgstr "Agregar" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Agregar documentos a archivadores" +msgstr[1] "Agregar documentos a archivadores" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -257,6 +300,20 @@ msgstr "Solicitud de retirar del gabinete realizada en el documento %(count)d" msgid "Remove" msgstr "Eliminar" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Remover documentos de archivadores" +msgstr[1] "Remover documentos de archivadores" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Remover documentos de archivadores" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Gabinetes de los que se eliminarán los documentos seleccionados." @@ -270,3 +327,15 @@ msgstr "Documento: %(document)s no está en el gabinete: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Documento: %(document)s retirado del gabinete: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Borrar archivadores" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Archivador a los cuales el documento seleccionado va a ser agregado." diff --git a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po index 1585163e28..8a73cce416 100644 --- a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mehdi Amani , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mehdi Amani , 2017\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -27,6 +27,30 @@ msgstr "" msgid "Cabinets" msgstr "کابینت" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "کابینه" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "کابینه" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "کابینه سند" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "حذف از کابینت" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "حذف از کابینت" @@ -59,6 +83,18 @@ msgstr "همه" msgid "Details" msgstr "جزئیات" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "کابینت حاوی اسناد: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "ایجاد کابینت" + #: models.py:35 search.py:16 msgid "Label" msgstr "برچسب" @@ -125,8 +161,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "نام این سطح کابینه به نام اجداد آن اضافه شده است." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "URL نقطه پایان API نشان دادن اسناد لیست در داخل این کابینه." #: serializers.py:68 serializers.py:179 @@ -213,6 +248,14 @@ msgstr "اضافه کردن به درخواست کابینه در اسناد %(c msgid "Add" msgstr "افزودن" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "اسناد را به کابینت اضافه کنید" +msgstr[1] "اسناد را به کابینت اضافه کنید" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -246,6 +289,20 @@ msgstr "از درخواست کابینت بر روی اسناد %(count)d انج msgid "Remove" msgstr "حذف" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "اسناد را از کابینت حذف کنید" +msgstr[1] "اسناد را از کابینت حذف کنید" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "اسناد را از کابینت حذف کنید" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "کابینت هایی که اسناد انتخاب شده حذف خواهند شد." @@ -259,3 +316,15 @@ msgstr "سند: %(document)s در کابینه نیست: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "سند: %(document)s حذف شده از کابینه: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "حذف کابینت" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "کابینت هایی که اسناد انتخاب شده اضافه خواهند شد." diff --git a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po index 636573b900..399255cf3c 100644 --- a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po @@ -2,27 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Thierry Schott , 2017 # Christophe CHAUVET , 2017 # Yves Dubois , 2018 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,6 +30,30 @@ msgstr "" msgid "Cabinets" msgstr "Classeurs" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Classeur" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Classeur" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Classeur de document" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Retirer des classeurs" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Retirer des classeurs" @@ -62,6 +86,18 @@ msgstr "Tout" msgid "Details" msgstr "Détails" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Classeurs contenant le document : %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Créer des classeurs" + #: models.py:35 search.py:16 msgid "Label" msgstr "Libellé" @@ -128,8 +164,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Le nom de ce niveau de classeur a été ajouté au nom de ses ancêtres." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL du point de terminaison de l'API listant les documents contenus dans ce " "classeur." @@ -187,8 +222,8 @@ msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." msgstr "" -"L'utilisation des classeurs est une méthode multi-niveaux pour organiser vos" -" documents. Chaque classeur peut contenir autant des documents que d'autres " +"L'utilisation des classeurs est une méthode multi-niveaux pour organiser vos " +"documents. Chaque classeur peut contenir autant des documents que d'autres " "sous-niveaux de classeurs." #: views.py:173 @@ -222,6 +257,14 @@ msgstr "Demande d'ajout au classeur effectuée sur %(count)d documents" msgid "Add" msgstr "Ajouter" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Ajouter des documents au classeur" +msgstr[1] "Ajouter des documents au classeur" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -257,6 +300,20 @@ msgstr "Demande de retrait du classeur effectuée sur %(count)d documents" msgid "Remove" msgstr "Retirer" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Supprimer des documents des classeurs" +msgstr[1] "Supprimer des documents des classeurs" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Supprimer des documents des classeurs" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Classeurs desquels les documents sélectionnés seront retirés." @@ -270,3 +327,15 @@ msgstr "Le document : %(document)s n'est pas dans le classeur : %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Le document : %(document)s a été retiré du classeur : %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Supprimer des classeurs" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Classeurs auxquels les documents sélectionnés seront ajoutés." diff --git a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po index 7d165fc74a..52212e8eb8 100644 --- a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2017 # molnars , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: molnars , 2017\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -27,6 +28,30 @@ msgstr "" msgid "Cabinets" msgstr "Fiók" +#: events.py:11 +#, fuzzy +#| msgid "Cabinets" +msgid "Cabinet created" +msgstr "Fiók" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinets" +msgid "Cabinet edited" +msgstr "Fiók" + +#: events.py:17 +#, fuzzy +#| msgid "Add to cabinets" +msgid "Document added to cabinet" +msgstr "Fiókhoz adás" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Fiókból törlés" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Fiókból törlés" @@ -59,6 +84,16 @@ msgstr "Mind" msgid "Details" msgstr "Részletek" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +#, fuzzy +#| msgid "Cabinets" +msgid "get_cabinets()" +msgstr "Fiók" + #: models.py:35 search.py:16 msgid "Label" msgstr "Cimke" @@ -125,8 +160,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -210,6 +244,14 @@ msgstr "" msgid "Add" msgstr "" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Fiókhoz adás" +msgstr[1] "Fiókhoz adás" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -243,6 +285,20 @@ msgstr "" msgid "Remove" msgstr "Levétel" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Fiókból törlés" +msgstr[1] "Fiókból törlés" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Fiókból törlés" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -256,3 +312,13 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Add to cabinets" +msgid "Select cabinets" +msgstr "Fiókhoz adás" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po index 6530abe43f..7c92092f6b 100644 --- a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dzikri Hakim , 2017 # Sehat , 2017 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -28,6 +29,22 @@ msgstr "" msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -60,6 +77,14 @@ msgstr "" msgid "Details" msgstr "Detail" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "Label" @@ -126,8 +151,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -211,6 +235,12 @@ msgstr "" msgid "Add" msgstr "tambah" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -244,6 +274,17 @@ msgstr "" msgid "Remove" msgstr "hapus" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -257,3 +298,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po index 637f35250a..d603670d0e 100644 --- a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po @@ -2,27 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Giovanni Tricarico , 2017 # Pierpaolo Baldan , 2017 # Marco Camplese , 2017 # Andrea Evangelisti , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Andrea Evangelisti , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,6 +30,30 @@ msgstr "" msgid "Cabinets" msgstr "Contenitori" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Contenitore" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Contenitore" + +#: events.py:17 +#, fuzzy +#| msgid "Add to cabinets" +msgid "Document added to cabinet" +msgstr "Aggiungi a contenitori" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Rimuovi da contenitori" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Rimuovi da contenitori" @@ -62,6 +86,16 @@ msgstr "Tutti" msgid "Details" msgstr "Dettagli" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinet" +msgid "get_cabinets()" +msgstr "Crea contenitore" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etichetta" @@ -128,8 +162,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -213,6 +246,14 @@ msgstr "" msgid "Add" msgstr "Aggiungi" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Aggiungi a contenitori" +msgstr[1] "Aggiungi a contenitori" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -246,6 +287,20 @@ msgstr "" msgid "Remove" msgstr "Rimuovi" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Rimuovi da contenitori" +msgstr[1] "Rimuovi da contenitori" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Rimuovi da contenitori" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -259,3 +314,13 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Create cabinet" +msgid "Select cabinets" +msgstr "Crea contenitore" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po index 508b7cbada..43779c3022 100644 --- a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po @@ -2,30 +2,55 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Kabineti" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Kabinets" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Kabinets" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Dokumentu kabinets" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Noņemiet no kabinetiem" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Noņemiet no kabinetiem" @@ -58,6 +83,18 @@ msgstr "Visi" msgid "Details" msgstr "Detaļas" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Kabineti, kas satur dokumentu: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Izveidot kabinetus" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etiķete" @@ -124,8 +161,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Šī kabineta līmeņa nosaukums pievienots to senču vārdiem." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "API gala punkta URL, kurā redzami saraksta dokumenti šajā kabinetā." #: serializers.py:68 serializers.py:179 @@ -139,8 +175,8 @@ msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" -"API URL, kas norāda uz dokumentu saistībā ar kabinetu, kas to glabā. Šis URL" -" atšķiras no kanoniskā dokumenta URL." +"API URL, kas norāda uz dokumentu saistībā ar kabinetu, kas to glabā. Šis URL " +"atšķiras no kanoniskā dokumenta URL." #: templates/cabinets/cabinet_details.html:17 msgid "Navigation:" @@ -217,6 +253,15 @@ msgstr "Pieprasījums pievienot pie kabineta izpildīts %(count)d dokumentiem" msgid "Add" msgstr "Pievienot" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Pievienot dokumentus kabinetiem" +msgstr[1] "Pievienot dokumentus kabinetiem" +msgstr[2] "Pievienot dokumentus kabinetiem" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -250,6 +295,21 @@ msgstr "Pieprasījums noņemt no kabineta veikts %(count)d dokumentiem" msgid "Remove" msgstr "Noņemt" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Noņemt dokumentus no kabinetiem" +msgstr[1] "Noņemt dokumentus no kabinetiem" +msgstr[2] "Noņemt dokumentus no kabinetiem" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Noņemt dokumentus no kabinetiem" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Kabineti, no kuriem tiks izņemti atlasītie dokumenti." @@ -263,3 +323,15 @@ msgstr "Dokuments: %(document)s nav kabinetā: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokuments: %(document)s ir noņemts no kabineta: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Dzēst kabinetus" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Kabienti, kuriem iezīmētie dokumenti tiks pievienoti." diff --git a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po index 3a7838869a..3d2cacd5bc 100644 --- a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po @@ -2,27 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Lucas Weel , 2017 # Justin Albstbstmeijer , 2017 # Johan Braeken, 2017 # Evelijn Saaltink , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Evelijn Saaltink , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,6 +31,22 @@ msgstr "" msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -62,6 +79,14 @@ msgstr "" msgid "Details" msgstr "Gegevens" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "Label" @@ -128,8 +153,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -213,6 +237,13 @@ msgstr "" msgid "Add" msgstr "Voeg toe" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" +msgstr[1] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -246,6 +277,18 @@ msgstr "" msgid "Remove" msgstr "Verwijder" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" +msgstr[1] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -259,3 +302,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po index daeaad8ad2..3d0c4aa427 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po @@ -2,31 +2,57 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Wojciech Warczakowski , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Wojciech Warczakowski , 2017\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Szafki" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Szafka" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Szafka" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Szafka na dokumenty" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Usuń z szafek" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Usuń z szafek" @@ -59,6 +85,18 @@ msgstr "Wszystkie" msgid "Details" msgstr "Szczegóły" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Szafki zawierające dokument: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Utwórz szafki" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etykieta" @@ -125,8 +163,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -212,6 +249,16 @@ msgstr "" msgid "Add" msgstr "Dodaj" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Dodaj dokumenty do szafek" +msgstr[1] "Dodaj dokumenty do szafek" +msgstr[2] "Dodaj dokumenty do szafek" +msgstr[3] "Dodaj dokumenty do szafek" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -245,6 +292,22 @@ msgstr "" msgid "Remove" msgstr "Usuń" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Usuń dokumenty z szafek" +msgstr[1] "Usuń dokumenty z szafek" +msgstr[2] "Usuń dokumenty z szafek" +msgstr[3] "Usuń dokumenty z szafek" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Usuń dokumenty z szafek" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Szafki, z których wybrane dokumenty zostaną usunięte." @@ -258,3 +321,15 @@ msgstr "Dokument %(document)s nie znajduje się w szafce %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokument %(document)s usunięto z szafki %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Usuń szafki" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Szafki, w których zostaną umieszczone wybrane dokumenty." diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po index 425c1063c0..1e89d3ee6d 100644 --- a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Emerson Soares , 2017 # Manuela Silva , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" -"Last-Translator: Manuela Silva , 2017\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Last-Translator: Manuela Silva , " +"2017\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -28,6 +30,22 @@ msgstr "" msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -60,6 +78,14 @@ msgstr "" msgid "Details" msgstr "Detalhes" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "Nome" @@ -126,8 +152,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -211,6 +236,13 @@ msgstr "" msgid "Add" msgstr "Adicionar" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" +msgstr[1] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -244,6 +276,18 @@ msgstr "" msgid "Remove" msgstr "Remover" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" +msgstr[1] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -257,3 +301,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po index 04a448a2c2..60107f5296 100644 --- a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Aline Freitas , 2017 # Roberto Rosario, 2017 # Jadson Ribeiro , 2017 # José Samuel Facundo da Silva , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" -"Last-Translator: José Samuel Facundo da Silva , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Last-Translator: José Samuel Facundo da Silva , " +"2018\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -29,6 +31,30 @@ msgstr "" msgid "Cabinets" msgstr "Pasta" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Pasta" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Pasta" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Pasta de documentos" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Remover da pasta" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Remover da pasta" @@ -61,6 +87,18 @@ msgstr "Todos" msgid "Details" msgstr "Detalhes" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Pasta com documento: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Criar pastas" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etiqueta" @@ -127,8 +165,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "O nome deste nível de pasta anexado aos nomes de seus antepassados." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL do ponto de extremidade da API mostrando os documentos da lista dentro " "desta pasta." @@ -144,8 +181,8 @@ msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" -"API URL que aponta para um documento em relação à pasta que o armazena. Este" -" URL é diferente do URL do documento que está de acordo com as normas " +"API URL que aponta para um documento em relação à pasta que o armazena. Este " +"URL é diferente do URL do documento que está de acordo com as normas " "estabelecidas." #: templates/cabinets/cabinet_details.html:17 @@ -190,9 +227,8 @@ msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." msgstr "" -"As pastas funcionam como um método multinível de organização dos documentos." -" Cada pasta pode conter tanto documentos como outras pastas de nível " -"inferior." +"As pastas funcionam como um método multinível de organização dos documentos. " +"Cada pasta pode conter tanto documentos como outras pastas de nível inferior." #: views.py:173 msgid "No cabinets available" @@ -225,6 +261,14 @@ msgstr "Adicionar a pasta o pedido executado em %(count)d documento" msgid "Add" msgstr "Adicionar" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Adicionar documentos as pastas" +msgstr[1] "Adicionar documentos as pastas" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -258,6 +302,20 @@ msgstr "Remover da solicitação de pasta realizada em %(count)d documentos" msgid "Remove" msgstr "Remover" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Excluir documentos de pastas" +msgstr[1] "Excluir documentos de pastas" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Excluir documentos de pastas" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Pastas das quais os documentos selecionados serão removidos." @@ -271,3 +329,15 @@ msgstr "Documento: %(document)s não está na pasta: %(cabinet)s" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Documento: %(document)s removido da pasta: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Excluir pastas" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Pastas aos quais os documentos selecionados serão adicionados." diff --git a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po index 486820b5a9..373a8f6dc5 100644 --- a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po @@ -2,33 +2,59 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Badea Gabriel , 2017 # Stefaniu Criste , 2017 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Fișete" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Fișet" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Fișet" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Fișet de documente" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Scoateți din fișete" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Scoateți din fișete" @@ -61,6 +87,18 @@ msgstr "Toate" msgid "Details" msgstr "Detalii" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Fișete care conțin documentul: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Creați fișete" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etichetă" @@ -128,17 +166,16 @@ msgstr "" "Numele acestui nivel de fișet a fost anexat la numele precesorilor săi." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" -"Adresa URL a punctului de sfârșit API care afișează documentele din listă în" -" interiorul acestui fișet." +"Adresa URL a punctului de sfârșit API care afișează documentele din listă în " +"interiorul acestui fișet." #: serializers.py:68 serializers.py:179 msgid "Comma separated list of document primary keys to add to this cabinet." msgstr "" -"Listă de chei primare separate prin virgulă de documente pentru a le adăuga" -" în acest fișet." +"Listă de chei primare separate prin virgulă de documente pentru a le adăuga " +"în acest fișet." #: serializers.py:158 msgid "" @@ -222,13 +259,21 @@ msgstr "" #, python-format msgid "Add to cabinet request performed on %(count)d documents" msgstr "" -"Solicitarea de adăugare la fișet a fost efectuată pentru %(count)d documente" -" " +"Solicitarea de adăugare la fișet a fost efectuată pentru %(count)d documente " #: views.py:233 msgid "Add" msgstr "Adaugă" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Adăugați documente la fișete" +msgstr[1] "Adăugați documente la fișete" +msgstr[2] "Adăugați documente la fișete" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -262,6 +307,21 @@ msgstr "Cererea de eliminarea din fișet efectuată pe %(count)d documente" msgid "Remove" msgstr "Elimină" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Scoateți documente din fișete" +msgstr[1] "Scoateți documente din fișete" +msgstr[2] "Scoateți documente din fișete" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Scoateți documente din fișete" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Fișetele din care vor fi eliminate documentele selectate." @@ -275,3 +335,15 @@ msgstr "Documentul: %(document)s nu este în fișetul: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Documentul: %(document)sa fost scos din fișetul: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Ștergeți fișete" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Fișetele la care vor fi adăugate documentele selectate." diff --git a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po index b5302fd687..a7dd584d92 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po @@ -2,33 +2,51 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # D Muzzle , 2017 # Sergey Glita , 2017 # panasoft , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: panasoft , 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -61,6 +79,14 @@ msgstr "" msgid "Details" msgstr "Детали" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "Ярлык" @@ -127,8 +153,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -212,6 +237,15 @@ msgstr "" msgid "Add" msgstr "Добавить" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -245,6 +279,20 @@ msgstr "" msgid "Remove" msgstr "Удалить" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -258,3 +306,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po index 2251069765..68110a1370 100644 --- a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po @@ -2,30 +2,48 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: kontrabant , 2017\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -58,6 +76,14 @@ msgstr "" msgid "Details" msgstr "Podrobnosti" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "Oznaka" @@ -124,8 +150,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -209,6 +234,15 @@ msgstr "" msgid "Add" msgstr "" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -242,6 +276,20 @@ msgstr "" msgid "Remove" msgstr "" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -255,3 +303,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po index 7c655fc937..b908172d55 100644 --- a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: serhatcan77 , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,6 +27,30 @@ msgstr "" msgid "Cabinets" msgstr "Dolaplar" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "Dolap" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "Dolap" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "Belge dolabı" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "Dolaplardan Çıkar" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Dolaplardan Çıkar" @@ -58,6 +83,18 @@ msgstr "Herşey" msgid "Details" msgstr "Ayrıntılar" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "Belgeyi içeren dolaplar: %s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "Dolap oluştur" + #: models.py:35 search.py:16 msgid "Label" msgstr "Etiket" @@ -124,8 +161,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Bu dolap seviyesinin adı atalarının adlarına eklendi." #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "Bu kabin içindeki liste belgelerini gösteren API bitiş noktasının URL'si." @@ -213,6 +249,14 @@ msgstr "%(count)d belgeleri üzerinde yapılan dolap talebine ekle" msgid "Add" msgstr "Ekle" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "Dolaplara belge ekle" +msgstr[1] "Dolaplara belge ekle" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -246,6 +290,20 @@ msgstr "%(count)d belgeleri üzerinde gerçekleştirilen dolap isteğini kaldır msgid "Remove" msgstr "Çıkar" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "Dolaplardan belgeleri çıkar" +msgstr[1] "Dolaplardan belgeleri çıkar" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "Dolaplardan belgeleri çıkar" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Seçilen belgelerin çıkarılacağı dolaplar." @@ -259,3 +317,15 @@ msgstr "%(document)s belgesi dolapta değil: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr " %(document)s belgesi dolaptan kaldırıldı: %(cabinet)s." + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "Dolapları sil" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "Seçilen dokümanlar dolaplara eklenecek." diff --git a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po index 24b7f0450f..6e62115f22 100644 --- a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Trung Phan Minh , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Trung Phan Minh , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -27,6 +28,22 @@ msgstr "" msgid "Cabinets" msgstr "" +#: events.py:11 +msgid "Cabinet created" +msgstr "" + +#: events.py:14 +msgid "Cabinet edited" +msgstr "" + +#: events.py:17 +msgid "Document added to cabinet" +msgstr "" + +#: events.py:20 +msgid "Document removed from cabinet" +msgstr "" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -59,6 +76,14 @@ msgstr "" msgid "Details" msgstr "Chi tiết" +#: methods.py:18 +msgid "Return a list of cabinets containing the document" +msgstr "" + +#: methods.py:20 +msgid "get_cabinets()" +msgstr "" + #: models.py:35 search.py:16 msgid "Label" msgstr "" @@ -125,8 +150,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -210,6 +234,12 @@ msgstr "" msgid "Add" msgstr "Thêm" +#: views.py:235 +#, python-format +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -243,6 +273,17 @@ msgstr "" msgid "Remove" msgstr "Xóa" +#: views.py:325 +#, python-format +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "" + +#: views.py:338 +#, python-format +msgid "Remove document \"%s\" from cabinets" +msgstr "" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -256,3 +297,11 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" + +#: wizard_steps.py:18 +msgid "Select cabinets" +msgstr "" + +#: wizard_steps.py:32 +msgid "Cabinets to which the document will be added." +msgstr "" diff --git a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po index 0b76f2a2ed..3875e4beae 100644 --- a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,6 +26,30 @@ msgstr "" msgid "Cabinets" msgstr "文档柜" +#: events.py:11 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet created" +msgstr "文档柜" + +#: events.py:14 +#, fuzzy +#| msgid "Cabinet" +msgid "Cabinet edited" +msgstr "文档柜" + +#: events.py:17 +#, fuzzy +#| msgid "Document cabinet" +msgid "Document added to cabinet" +msgstr "文档柜" + +#: events.py:20 +#, fuzzy +#| msgid "Remove from cabinets" +msgid "Document removed from cabinet" +msgstr "从文档柜中删除" + #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "从文档柜中删除" @@ -58,6 +82,18 @@ msgstr "所有" msgid "Details" msgstr "细节" +#: methods.py:18 +#, fuzzy +#| msgid "Cabinets containing document: %s" +msgid "Return a list of cabinets containing the document" +msgstr "文档柜包含文档:%s" + +#: methods.py:20 +#, fuzzy +#| msgid "Create cabinets" +msgid "get_cabinets()" +msgstr "创建文档柜" + #: models.py:35 search.py:16 msgid "Label" msgstr "标签" @@ -124,8 +160,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "此文档柜级别的名称附加到其祖级的名称。" #: serializers.py:32 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "API端点的URL,显示此文档柜内的列表文档。" #: serializers.py:68 serializers.py:179 @@ -156,7 +191,9 @@ msgstr "删除文档柜:%s?" msgid "" "Cabinet levels can contain documents or other cabinet sub levels. To add " "documents to a cabinet, select the cabinet view of a document view." -msgstr "文档柜级别可以包含文档或其他文档柜子级别。要将文档添加到文档柜,请选择文档视图的文档视图。" +msgstr "" +"文档柜级别可以包含文档或其他文档柜子级别。要将文档添加到文档柜,请选择文档视" +"图的文档视图。" #: views.py:126 msgid "This cabinet level is empty" @@ -176,7 +213,8 @@ msgstr "编辑文档柜:%s" msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." -msgstr "文档柜是组织文档的多级方法。每个文档柜都可以包含文档以及其他子级文档柜。" +msgstr "" +"文档柜是组织文档的多级方法。每个文档柜都可以包含文档以及其他子级文档柜。" #: views.py:173 msgid "No cabinets available" @@ -209,6 +247,13 @@ msgstr "在%(count)d文档上执行的添加到文档柜请求" msgid "Add" msgstr "添加" +#: views.py:235 +#, fuzzy, python-format +#| msgid "Add documents to cabinets" +msgid "Add %(count)d document to cabinets" +msgid_plural "Add %(count)d documents to cabinets" +msgstr[0] "将文档添加至文档柜" + #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -242,6 +287,19 @@ msgstr "在%(count)d文档上执行的从文档柜中删除请求" msgid "Remove" msgstr "移除" +#: views.py:325 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove %(count)d document from cabinets" +msgid_plural "Remove %(count)d documents from cabinets" +msgstr[0] "将文档从文档柜中删除" + +#: views.py:338 +#, fuzzy, python-format +#| msgid "Remove documents from cabinets" +msgid "Remove document \"%s\" from cabinets" +msgstr "将文档从文档柜中删除" + #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "将从中删除所选文档的文档柜。" @@ -255,3 +313,15 @@ msgstr "文档:%(document)s不在文档柜:%(cabinet)s中。" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "文档:%(document)s从文档柜中删除:%(cabinet)s。" + +#: wizard_steps.py:18 +#, fuzzy +#| msgid "Delete cabinets" +msgid "Select cabinets" +msgstr "删除文档柜" + +#: wizard_steps.py:32 +#, fuzzy +#| msgid "Cabinets to which the selected documents will be added." +msgid "Cabinets to which the document will be added." +msgstr "将添加所选文档的文档柜。" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index b0da2f6489..ad739652bb 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 2cb61a2b85..200a3697d2 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po index 4412a6b0b3..d4a64cfbda 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -171,7 +173,8 @@ msgstr "Primarni ključ dokumenta koji treba proveriti." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "niste prvobitno proverili ovaj dokument. Naporno proverite u dokumentu: %s?" +msgstr "" +"niste prvobitno proverili ovaj dokument. Naporno proverite u dokumentu: %s?" #: views.py:41 #, python-format diff --git a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po index d706a68dff..e6e75a6b5e 100644 --- a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po index 13270eb1aa..87e6b9e7aa 100644 --- a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po index 8793f50b97..80ee1df584 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Bjoern Kowarsch , 2018 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-28 21:17+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -174,7 +175,9 @@ msgstr "Primärschlüssel des auszubuchenden Dokuments." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s trotzdem zwingend eingebucht werden?" +msgstr "" +"Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s " +"trotzdem zwingend eingebucht werden?" #: views.py:41 #, python-format @@ -212,7 +215,9 @@ msgstr "Ausbuchungsende" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "Das Ausbuchen eines Dokuments verhindert für eine bestimmte Zeit gewisse Operationen." +msgstr "" +"Das Ausbuchen eines Dokuments verhindert für eine bestimmte Zeit gewisse " +"Operationen." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po index 57769e700f..d6f38c4f0b 100644 --- a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index 7a4e421844..a174a46b0a 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index 56015f7ab5..debfaba73d 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-30 16:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -171,7 +172,9 @@ msgstr "Llave primaria del documento que se va a reservar." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Usted no reservó inicialmente este documento. ¿Devolver forzosamente el documento: %s?" +msgstr "" +"Usted no reservó inicialmente este documento. ¿Devolver forzosamente el " +"documento: %s?" #: views.py:41 #, python-format @@ -209,7 +212,9 @@ msgstr "Expiración de la reservación" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "Reservar un documento bloquea ciertas operaciones del documento durante un período de tiempo predeterminado." +msgstr "" +"Reservar un documento bloquea ciertas operaciones del documento durante un " +"período de tiempo predeterminado." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index 4e218ae24c..f779601057 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index 72927e0373..12723f92ee 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2017 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-17 13:31+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -132,7 +133,8 @@ msgstr "Verrouillages du document" #: models.py:64 msgid "Check out expiration date and time must be in the future." -msgstr "La date et l'heure d'expiration du verrouillage doit se situer dans le futur." +msgstr "" +"La date et l'heure d'expiration du verrouillage doit se situer dans le futur." #: models.py:116 msgid "New version block" @@ -175,7 +177,9 @@ msgstr "Clé primaire du document devant être verrouillé." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Vous n'êtes pas celui qui a originellement verrouillé ce document. Êtes vous certain de vouloir forcer le déverrouillage de : %s?" +msgstr "" +"Vous n'êtes pas celui qui a originellement verrouillé ce document. Êtes vous " +"certain de vouloir forcer le déverrouillage de : %s?" #: views.py:41 #, python-format @@ -213,7 +217,9 @@ msgstr "Expiration du verrouillage" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "Le verrouillage d'un document bloque certaines opérations sur le document pendant une durée prédéterminée." +msgstr "" +"Le verrouillage d'un document bloque certaines opérations sur le document " +"pendant une durée prédéterminée." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 8b86fb295c..079390e56a 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index 9b32ac5f27..c78cccd783 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-14 11:19+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index 3ee63afef2..9d5c78bfd1 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -171,7 +172,9 @@ msgstr "" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Non hai originariamente fatto il checkout di questo documento. Forzare nel documento: %s?" +msgstr "" +"Non hai originariamente fatto il checkout di questo documento. Forzare nel " +"documento: %s?" #: views.py:41 #, python-format diff --git a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po index ed8fadf2a5..8ab2418b16 100644 --- a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-30 08:08+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -171,7 +173,9 @@ msgstr "Izrakstāmā dokumenta primārā atslēga." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Sākotnēji jūs šo dokuments neizrakstījāt. Piespiedus pierakstīt dokumentu: %s?" +msgstr "" +"Sākotnēji jūs šo dokuments neizrakstījāt. Piespiedus pierakstīt dokumentu: " +"%s?" #: views.py:41 #, python-format @@ -209,7 +213,9 @@ msgstr "Izraksta derīguma termiņš" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "Dokumenta izrakstīšana bloķē noteiktas dokumentu darbības uz iepriekš noteiktu laika periodu." +msgstr "" +"Dokumenta izrakstīšana bloķē noteiktas dokumentu darbības uz iepriekš " +"noteiktu laika periodu." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po index db64e3f6b1..d46549b79b 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 9359ebb4a9..dc4b007c4e 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2017 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -105,7 +108,8 @@ msgstr "Data i czas blokady" #: models.py:35 msgid "Amount of time to hold the document checked out in minutes." -msgstr "Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." +msgstr "" +"Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." #: models.py:37 msgid "Check out expiration date and time" @@ -172,7 +176,9 @@ msgstr "" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie dokumentu: %s?" +msgstr "" +"Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie " +"dokumentu: %s?" #: views.py:41 #, python-format diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 5309f61b5b..00ae61c08c 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po index 5c7da2f43e..c87ee4e937 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -173,7 +174,9 @@ msgstr "Chave primária do documento que será reservado." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Você não reservou inicialmente este documento. Devolver forçosamente o documento: %s?" +msgstr "" +"Você não reservou inicialmente este documento. Devolver forçosamente o " +"documento: %s?" #: views.py:41 #, python-format @@ -211,7 +214,9 @@ msgstr "Expiração da reserva" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "Reservar um documento bloqueia certas operações do documento por um período de tempo pré-determinado." +msgstr "" +"Reservar um documento bloqueia certas operações do documento por um período " +"de tempo pré-determinado." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po index eb1d91cc3a..b1f227af38 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-02 05:01+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -104,7 +106,9 @@ msgstr "Data și ora consemnării ieșirii" #: models.py:35 msgid "Amount of time to hold the document checked out in minutes." -msgstr "Total timp alocat în minute pentru a deține documentul în mod consemnat ca ieșit." +msgstr "" +"Total timp alocat în minute pentru a deține documentul în mod consemnat ca " +"ieșit." #: models.py:37 msgid "Check out expiration date and time" @@ -171,7 +175,9 @@ msgstr "Cheia primară a documentului care urmează să fie consemnat ca ieșit. msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Nu ați inițiat consemnarea ca ieșit a acestui document. Consemnați forțat intrarea documentului: %s?" +msgstr "" +"Nu ați inițiat consemnarea ca ieșit a acestui document. Consemnați forțat " +"intrarea documentului: %s?" #: views.py:41 #, python-format @@ -209,7 +215,9 @@ msgstr "Expirarea consemnării ca ieșit" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "Consemnarea ca ieșit blochează unele operații asupra documentului pentru o perioadă de timp prestabilită." +msgstr "" +"Consemnarea ca ieșit blochează unele operații asupra documentului pentru o " +"perioadă de timp prestabilită." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 170132b733..50df211c8f 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po index 203d3588da..2bfb47d16d 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po index b34d5a0457..c1326ebacf 100644 --- a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po index 43323a26a5..c914f0deb8 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po index f3367bf62b..df97246d9c 100644 --- a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-02 03:31+0000\n" "Last-Translator: Philip Hai \n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 76a604d5b4..8aca0c6fc7 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -197,8 +199,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -316,76 +318,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,29 +410,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +440,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,31 +458,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,31 +492,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,17 +517,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +535,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +544,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +556,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,22 +564,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,24 +587,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index 92f8bc8eee..62d1c14c33 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -197,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -316,76 +317,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,29 +409,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,31 +457,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,31 +491,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,17 +516,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,22 +563,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,24 +586,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po index 1689b7c18e..887a2c33f6 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -177,7 +179,9 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Backend baze podataka je podešeno da koristi SKLite. SKLite treba koristiti samo za razvoj i testiranje, a ne za proizvodnju." +msgstr "" +"Backend baze podataka je podešeno da koristi SKLite. SKLite treba koristiti " +"samo za razvoj i testiranje, a ne za proizvodnju." #: literals.py:34 msgid "Days" @@ -198,8 +202,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,76 +321,95 @@ msgstr "Automatski omogućite evidenciju za sve aplikacije." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Vreme za odlaganje pozadinskih zadataka koji zavise od baze podataka obavezuju se da se propagiraju." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Vreme za odlaganje pozadinskih zadataka koji zavise od baze podataka " +"obavezuju se da se propagiraju." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Omogućite prijavljivanje grešaka izvan sistemskih mogućnosti evidentiranja grešaka." +msgstr "" +"Omogućite prijavljivanje grešaka izvan sistemskih mogućnosti evidentiranja " +"grešaka." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Put do log datoteke koja će pratiti greške tokom proizvodnje" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr " Backend skladišta koju svi radnici mogu koristiti za dijeljenje datoteka." +msgstr "" +" Backend skladišta koju svi radnici mogu koristiti za dijeljenje datoteka." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,29 +418,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +448,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,31 +466,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,31 +500,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,17 +525,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +543,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +552,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +564,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,22 +572,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,24 +595,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 @@ -631,7 +645,8 @@ msgstr "Kreirati" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Unesite važeći 'interni naziv' koji se sastoji od slova, brojeva i podčrtava." +msgstr "" +"Unesite važeći 'interni naziv' koji se sastoji od slova, brojeva i podčrtava." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po index ba38a740cc..18cf75c6ce 100644 --- a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -196,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -315,76 +317,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,29 +409,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,31 +457,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,31 +491,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,17 +516,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,22 +563,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,24 +586,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po index ec4d551730..cb7f6ea5d7 100644 --- a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -196,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -315,76 +316,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,29 +408,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +438,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,31 +456,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,31 +490,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,17 +515,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +533,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +542,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +554,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,22 +562,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,24 +585,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po index 733d65bc91..4ae562f11e 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Bjoern Kowarsch , 2018 @@ -16,14 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -67,14 +68,22 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Wählen Sie Einträge aus, die entfernt werden sollen. Mit der Steuerungstaste können mehrere Einträge ausgewählt werden. Wenn die Auswahl vollständig ist, klicken Sie den folgenden Button oder doppelklicken Sie auf die Liste um die Aktion durchzuführen." +msgstr "" +"Wählen Sie Einträge aus, die entfernt werden sollen. Mit der Steuerungstaste " +"können mehrere Einträge ausgewählt werden. Wenn die Auswahl vollständig ist, " +"klicken Sie den folgenden Button oder doppelklicken Sie auf die Liste um die " +"Aktion durchzuführen." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Wählen Sie Einträge aus, die hinzugefügt werden sollen. Mit der Steuerungstaste können mehrere Einträge ausgewählt werden. Wenn die Auswahl vollständig ist, klicken Sie den folgenden Button oder doppelklicken Sie auf die Liste um die Aktion durchzuführen." +msgstr "" +"Wählen Sie Einträge aus, die hinzugefügt werden sollen. Mit der " +"Steuerungstaste können mehrere Einträge ausgewählt werden. Wenn die Auswahl " +"vollständig ist, klicken Sie den folgenden Button oder doppelklicken Sie auf " +"die Liste um die Aktion durchzuführen." #: generics.py:287 msgid "Add all" @@ -178,13 +187,17 @@ msgstr "Werkzeuge" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "Diese Funktion ist veraltet und wird in einer zukünftigen Version entfernt." +msgstr "" +"Diese Funktion ist veraltet und wird in einer zukünftigen Version entfernt." #: literals.py:16 msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Sie benutzen SQLite als Datenbank-Backend. SQLite sollte nur für Entwicklungs- und Testzwecke verwendet werden, jedoch nicht in Produktivumgebungen." +msgstr "" +"Sie benutzen SQLite als Datenbank-Backend. SQLite sollte nur für " +"Entwicklungs- und Testzwecke verwendet werden, jedoch nicht in " +"Produktivumgebungen." #: literals.py:34 msgid "Days" @@ -201,25 +214,33 @@ msgstr "Minuten" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "Begrenzt die extrahierten Daten auf die spezifizierten app_label oder app_label.ModelName." +msgstr "" +"Begrenzt die extrahierten Daten auf die spezifizierten app_label oder " +"app_label.ModelName." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "Die Datenbank von welcher die Daten exportiert werden. Falls nicht ausgefüllt wird \"default\" als Datenbankname verwendet." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"Die Datenbank von welcher die Daten exportiert werden. Falls nicht " +"ausgefüllt wird \"default\" als Datenbankname verwendet." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "Die Datenbank in welche die Daten importiert werden. Falls nicht ausgefüllt wird \"default\" als Datenbankname verwendet." +msgstr "" +"Die Datenbank in welche die Daten importiert werden. Falls nicht ausgefüllt " +"wird \"default\" als Datenbankname verwendet." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "Erzwingt die Umstellung der Datenbank selbst wenn die Zieldatenbank nicht leer ist." +msgstr "" +"Erzwingt die Umstellung der Datenbank selbst wenn die Zieldatenbank nicht " +"leer ist." #: menus.py:10 msgid "System" @@ -324,157 +345,269 @@ msgstr "Protokollierung für alle Apps automatisch einschalten." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung " +"auf einen Datenbankcommit warten." -#: settings.py:32 +#: settings.py:33 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." -msgstr "Name des Formulars, das mit dem Markenanker im Hauptmenü verknüpft ist. Zu diesem Formular werden die Benutzer auch nach dem Anmeldevorgang weitergeleitet." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Eine Liste aller Applikationen (String), welche für diese Django-" +"Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter " +"Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem " +"Anwendungspaket sein." -#: settings.py:41 +#: settings.py:43 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Eine Liste aller Applikationen (String), welche für diese Django-" +"Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter " +"Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem " +"Anwendungspaket sein." + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" +"Name des Formulars, das mit dem Markenanker im Hauptmenü verknüpft ist. Zu " +"diesem Formular werden die Benutzer auch nach dem Anmeldevorgang " +"weitergeleitet." + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Fehlerprotokollierung außerhalb des regulären Systemfehlerprotokolls aktivieren." +msgstr "" +"Fehlerprotokollierung außerhalb des regulären Systemfehlerprotokolls " +"aktivieren." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Der Pfad zur Protokolldatei, in der Fehler im Produktivbetrieb aufgezeichnet werden." +msgstr "" +"Der Pfad zur Protokolldatei, in der Fehler im Produktivbetrieb aufgezeichnet " +"werden." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Der im Hauptmenü angezeigte Name." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "Die URL der Installation oder Webseite des Projekts." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Datenbackend, das alle Worker benutzen können, um Dateien zu teilen." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "Eine Liste aller Hosts bzw. Domainnamen, die mit dieser Seite funktionieren. Sie dient als Sicherheitsmaßnahme um Angriffe über HTTP Hostheader zu verhindern, welche selbst unter vermeintlich sicheren Webserverkonfigurationen möglich sein können. Werte in dieser Liste können voll qualifizierte Domainnamen enthalten, die exakt gegen den Hostheader des Requests geprüft werden (ohne Prüfung von Groß-/Kleinschreibung und Port). Werte, die mit einem Punkt beginnen werden wie eine Subdomain Wildcard behandelt, so steht z.B. '.example.com' für 'example.com' oder 'www.example.com' oder jede andere Subdomain von example.com. '*' steht als Wert für alles Mögliche, in diesem Fall sind Sie selbst verantwortlich für eine Validierung des Hostheaders (z.B. mittels einer Middleware. Sollte das der Fall sein, muss diese in MIDDLEWARE zuerst gelistet werden)." +msgstr "" +"Eine Liste aller Hosts bzw. Domainnamen, die mit dieser Seite funktionieren. " +"Sie dient als Sicherheitsmaßnahme um Angriffe über HTTP Hostheader zu " +"verhindern, welche selbst unter vermeintlich sicheren " +"Webserverkonfigurationen möglich sein können. Werte in dieser Liste können " +"voll qualifizierte Domainnamen enthalten, die exakt gegen den Hostheader des " +"Requests geprüft werden (ohne Prüfung von Groß-/Kleinschreibung und Port). " +"Werte, die mit einem Punkt beginnen werden wie eine Subdomain Wildcard " +"behandelt, so steht z.B. '.example.com' für 'example.com' oder 'www.example." +"com' oder jede andere Subdomain von example.com. '*' steht als Wert für " +"alles Mögliche, in diesem Fall sind Sie selbst verantwortlich für eine " +"Validierung des Hostheaders (z.B. mittels einer Middleware. Sollte das der " +"Fall sein, muss diese in MIDDLEWARE zuerst gelistet werden)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." -msgstr "Falls \"Wahr\" (true), wird eine Umleitung (HTTP Redirect) auf die bereitgestellte URL mit angehängtem Slash erzeugt, sofern diese nicht bereits mit einem Slash endet oder einem Muster aus der URLconf entspricht. Bitte beachten Sie, dass die Umleitung den Verlust von Daten aus den übermittelten POST-Requests verursachen kann. Die Einstellung APPEND_SLASH wird nur benutzt, wenn CommonMiddleware installiert ist (siehe Middleware). Siehe auch PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +msgstr "" +"Falls \"Wahr\" (true), wird eine Umleitung (HTTP Redirect) auf die " +"bereitgestellte URL mit angehängtem Slash erzeugt, sofern diese nicht " +"bereits mit einem Slash endet oder einem Muster aus der URLconf entspricht. " +"Bitte beachten Sie, dass die Umleitung den Verlust von Daten aus den " +"übermittelten POST-Requests verursachen kann. Die Einstellung APPEND_SLASH " +"wird nur benutzt, wenn CommonMiddleware installiert ist (siehe Middleware). " +"Siehe auch PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "Liste der Validatoren, die für die Überprüfung der Passwortstärke von Benutzerpasswörtern verwendet werden." +msgstr "" +"Liste der Validatoren, die für die Überprüfung der Passwortstärke von " +"Benutzerpasswörtern verwendet werden." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "Ein Dictionary welches eine Liste aller Einstellungen für die mit Django verwendeten Datenbanken enthält. Dieses Dictionary enthält Aliase zu einem weiteren Dictionaries, welche wiederum die Einstellungen für weitere Datenbanken enthalten. Die DATABASES Einstellung muss eine Standarddatenbank enthalten, es können aber auch beliebige weitere Datenbanken angegeben werden." +msgstr "" +"Ein Dictionary welches eine Liste aller Einstellungen für die mit Django " +"verwendeten Datenbanken enthält. Dieses Dictionary enthält Aliase zu einem " +"weiteren Dictionaries, welche wiederum die Einstellungen für weitere " +"Datenbanken enthalten. Die DATABASES Einstellung muss eine Standarddatenbank " +"enthalten, es können aber auch beliebige weitere Datenbanken angegeben " +"werden." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Requestbodys in Bytes, für Werte darüber wird die Aktion 'SuspiciousOperation - RequestDataTooBig' ausgelöst. Diese Prüfung wird immer ausgeführt, wenn auf 'request.body' oder 'request.POST' zugegriffen wird. Dabei wird die Gesamtgröße des Requests berechnet ohne Einbezug der Größe einer eventuell hochzuladenen Datei. Die Einstellung 'None' deaktiviert diese Prüfung. Anwendungen, welche erwartungsgemäß umfangreichere Formularanfragen erhalten, sollten diese Einstellung entsprechend anpassen. Der Umfang an Requestdaten korreliert mit dem zur Verarbeitung benötigten Speicher und dem benötigten Speicher zur Befüllung der GET und POST Dictionaries. Sehr umfangreiche Requests könnten ungeprüft einem Denial-of-Service Angriff dienen. Da Webserver für gewöhnlich eine solch gründliche Prüfung der Anfragen nicht durchführen, ist eine vergleichbare Prüfung auf Dieser Ebene nicht möglich. Siehe auch: FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Requestbodys " +"in Bytes, für Werte darüber wird die Aktion 'SuspiciousOperation - " +"RequestDataTooBig' ausgelöst. Diese Prüfung wird immer ausgeführt, wenn auf " +"'request.body' oder 'request.POST' zugegriffen wird. Dabei wird die " +"Gesamtgröße des Requests berechnet ohne Einbezug der Größe einer eventuell " +"hochzuladenen Datei. Die Einstellung 'None' deaktiviert diese Prüfung. " +"Anwendungen, welche erwartungsgemäß umfangreichere Formularanfragen " +"erhalten, sollten diese Einstellung entsprechend anpassen. Der Umfang an " +"Requestdaten korreliert mit dem zur Verarbeitung benötigten Speicher und dem " +"benötigten Speicher zur Befüllung der GET und POST Dictionaries. Sehr " +"umfangreiche Requests könnten ungeprüft einem Denial-of-Service Angriff " +"dienen. Da Webserver für gewöhnlich eine solch gründliche Prüfung der " +"Anfragen nicht durchführen, ist eine vergleichbare Prüfung auf Dieser Ebene " +"nicht möglich. Siehe auch: FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "Standard: 'webmaster@localhost' Standard-E-Mailadresse, die für verschiedene automatische Korrespondenz durch die Sitemanager verwendet wird. Dies gilt nicht für Fehlerbenachrichtigungen an ADMINS and MANAGERS, für diese siehe SERVER_EMAIL." +msgstr "" +"Standard: 'webmaster@localhost' Standard-E-Mailadresse, die für verschiedene " +"automatische Korrespondenz durch die Sitemanager verwendet wird. Dies gilt " +"nicht für Fehlerbenachrichtigungen an ADMINS and MANAGERS, für diese siehe " +"SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "Standard: [] (Leere Liste). Eine Liste von kompilierten regulären Ausdrücken (RegEx) welche diejenigen User-Agent Strings repräsentieren die systemweit keine einzige Seite aufrufen dürfen. Nutzen Sie diese gegen unerwünschte Robots oder Crawler. Wird nur genutzt wenn CommonMiddleware installiert ist (siehe: Middleware)." +msgstr "" +"Standard: [] (Leere Liste). Eine Liste von kompilierten regulären Ausdrücken " +"(RegEx) welche diejenigen User-Agent Strings repräsentieren die systemweit " +"keine einzige Seite aufrufen dürfen. Nutzen Sie diese gegen unerwünschte " +"Robots oder Crawler. Wird nur genutzt wenn CommonMiddleware installiert ist " +"(siehe: Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "Standard: 'django.core.mail.backends.smtp.EmailBackend'. Das Backend für den E-Mailversand." +msgstr "" +"Standard: 'django.core.mail.backends.smtp.EmailBackend'. Das Backend für den " +"E-Mailversand." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Standard: 'localhost'. Der Host für den E-Mailversand." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "Standard: \" (Leere Zeichenfolge). Das Passwort zur Nutzung des SMTP-Servers, der in EMAIL_HOST definiert wurde. Diese Einstellung wird zusammen mit der für EMAIL_HOST_USER für die Authentifizierung am SMTP-Server genutzt. Wird eine der beiden leer gelassen, benutzt Django keine Authentifizierung." +msgstr "" +"Standard: \" (Leere Zeichenfolge). Das Passwort zur Nutzung des SMTP-" +"Servers, der in EMAIL_HOST definiert wurde. Diese Einstellung wird zusammen " +"mit der für EMAIL_HOST_USER für die Authentifizierung am SMTP-Server " +"genutzt. Wird eine der beiden leer gelassen, benutzt Django keine " +"Authentifizierung." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "Standard: \" (Leere Zeichenfolge). Der Benutzername zur Nutzung des SMTP-Servers, der in EMAIL_HOST definiert wurde. Wird die Einstellung leer gelassen, benutzt Django keine Authentifizierung." +msgstr "" +"Standard: \" (Leere Zeichenfolge). Der Benutzername zur Nutzung des SMTP-" +"Servers, der in EMAIL_HOST definiert wurde. Wird die Einstellung leer " +"gelassen, benutzt Django keine Authentifizierung." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "Standard: 25. Der für den in EMAIL_HOST definierten SMTP-Server zu benutzende Port." +msgstr "" +"Standard: 25. Der für den in EMAIL_HOST definierten SMTP-Server zu " +"benutzende Port." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "Standard: None (Keiner). Stellt einen Timeout (in Sekunden) für blockierende Operationen wie z.B. Verbindungsversuche ein." +msgstr "" +"Standard: None (Keiner). Stellt einen Timeout (in Sekunden) für blockierende " +"Operationen wie z.B. Verbindungsversuche ein." -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim Verbinden zum SMTP-Server aufgebaut werden soll. Wird für explizite TLS-Verbindungen, üblicherweise über den Port 587, verwendet. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die implizite TLS Einstellung EMAIL_USE_SSL." +msgstr "" +"Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim " +"Verbinden zum SMTP-Server aufgebaut werden soll. Wird für explizite TLS-" +"Verbindungen, üblicherweise über den Port 587, verwendet. Sollte es zu " +"Verbindungsfehlern kommen, prüfen Sie bitte die implizite TLS Einstellung " +"EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -482,69 +615,99 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim Verbinden zum SMTP Server aufgebaut werden soll. Gelegentlich wird diese TLS Verbindung auch als SSL bezeichnet. Die Verbindung nutzt üblicherweise den Port 465. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die explizite TLS Einstellung EMAIL_USE_TLS. Beachten Sie bitte, dass immer nur eine Einstellung für EMAIL_USE_TLS oder EMAIL_USE_SSL genutzt werden kann, es sollte daher immer nur eine Einstellungen auf \"True\" gestellt werden." +msgstr "" +"Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim " +"Verbinden zum SMTP Server aufgebaut werden soll. Gelegentlich wird diese TLS " +"Verbindung auch als SSL bezeichnet. Die Verbindung nutzt üblicherweise den " +"Port 465. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die " +"explizite TLS Einstellung EMAIL_USE_TLS. Beachten Sie bitte, dass immer nur " +"eine Einstellung für EMAIL_USE_TLS oder EMAIL_USE_SSL genutzt werden kann, " +"es sollte daher immer nur eine Einstellungen auf \"True\" gestellt werden." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Uploads in Bytes, bevor dieser zum Dateisystem gestreamt wird. Mehr Details im Kapitel zum Dateimanagement. Siehe auch: DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Uploads in " +"Bytes, bevor dieser zum Dateisystem gestreamt wird. Mehr Details im Kapitel " +"zum Dateimanagement. Siehe auch: DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Eine Liste aller Applikationen (String), welche für diese Django-Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem Anwendungspaket sein." - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "Standard: '/accounts/login/' Die URL zur Weiterleitung zum Login, insbesondere wenn z.B. der login_required() Decorator benutzt wird. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn z.B. mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z.B. in 'Einstellungen' und URLconf)." +msgstr "" +"Standard: '/accounts/login/' Die URL zur Weiterleitung zum Login, " +"insbesondere wenn z.B. der login_required() Decorator benutzt wird. Diese " +"Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn z.B. mehrfach " +"gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z." +"B. in 'Einstellungen' und URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "Standard: '/accounts/profile/' Die URL zur Weiterleitung von Requests nach erfolgreichem Login, insbesondere wenn die Ansicht contrib.auth.login keinen next Parameter übermittelt bekommt. Wird z.B. vom login_required() Decorator benutzt. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z.B. in 'Einstellungen' und URLconf)." +msgstr "" +"Standard: '/accounts/profile/' Die URL zur Weiterleitung von Requests nach " +"erfolgreichem Login, insbesondere wenn die Ansicht contrib.auth.login keinen " +"next Parameter übermittelt bekommt. Wird z.B. vom login_required() Decorator " +"benutzt. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn " +"mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden " +"sollen (z.B. in 'Einstellungen' und URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "Standard: None. Die URL zu der Benutzer nach der Nutzung von LogoutView weitergeleitet werden (wenn das Formular kein Argument für nächste Seite enthält). Mit None wird keine Weiterleitung durchgeführt und das Logout-Formular dargestellt. Diese Einstellung akzeptiert auch 'named URL patterns', die benutzt werden können um die URL nur an einer Stelle zu definieren (anstatt Einstellungen und URLconf)." +msgstr "" +"Standard: None. Die URL zu der Benutzer nach der Nutzung von LogoutView " +"weitergeleitet werden (wenn das Formular kein Argument für nächste Seite " +"enthält). Mit None wird keine Weiterleitung durchgeführt und das Logout-" +"Formular dargestellt. Diese Einstellung akzeptiert auch 'named URL " +"patterns', die benutzt werden können um die URL nur an einer Stelle zu " +"definieren (anstatt Einstellungen und URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "Eine Liste von IP-Adressen (als Zeichenketten). Ermöglicht dem debug() context processor einige Variablen zum Vorlagenkontext hinzuzufügen. Kann admindocs bookmarklets benutzen, auch wenn nicht als Benutzer angemeldet. Werden in AdminEmailHandler E-Mails als \"internal\" (im Gegensatz zu \"EXTERNAL\") markiert." +msgstr "" +"Eine Liste von IP-Adressen (als Zeichenketten). Ermöglicht dem debug() " +"context processor einige Variablen zum Vorlagenkontext hinzuzufügen. Kann " +"admindocs bookmarklets benutzen, auch wenn nicht als Benutzer angemeldet. " +"Werden in AdminEmailHandler E-Mails als \"internal\" (im Gegensatz zu " +"\"EXTERNAL\") markiert." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "Liste von verfügbaren Sprachen. Die Liste setzt sich zusammen aus Zweier-Tupeln mit dem Format (Sprachencode, Sprachenname), z.B. ('ja', 'Japanese'). Diese Eintellung bestimmt die für die Auswahl verfügbaren Sprachen. Üblicherweise sollte die Einstellung des Standardwerts ausreichen. Benutzen Sie diese Einstellung nur, wenn Sie die Auswahl auf eine Untermenge der von Django zur Verfügung gestellten Sprachen einstellen wollen." +msgstr "" +"Liste von verfügbaren Sprachen. Die Liste setzt sich zusammen aus Zweier-" +"Tupeln mit dem Format (Sprachencode, Sprachenname), z.B. ('ja', 'Japanese'). " +"Diese Eintellung bestimmt die für die Auswahl verfügbaren Sprachen. " +"Üblicherweise sollte die Einstellung des Standardwerts ausreichen. Benutzen " +"Sie diese Einstellung nur, wenn Sie die Auswahl auf eine Untermenge der von " +"Django zur Verfügung gestellten Sprachen einstellen wollen." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -554,9 +717,18 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "Eine Zeichenkette, die den Sprachencode für diese Installation festlegt. Das Format sollte das Standardsprachenformat für IDs sein, z.B. \"en-us\" für U.S. English. Die Einstellung dient zwei Zwecken: Wenn die Lokalisierungs-Middleware nicht in Gebrauch ist, bestimmt sie die Übersetzung für alle Benutzer. Wenn die Lokalisierungs-Middleware in Gebrauch ist, bestimmt sie die Rückfallsprache, wenn die bevorzugte Sprache des Benutzers nicht ermittelt werden kann oder von der Website nicht unterstützt wird. Außerdem dient sie als Rückfallübersetzung, wenn eine Übersetzung in der vom Benutzer eingestellten Sprache nicht existiert." +msgstr "" +"Eine Zeichenkette, die den Sprachencode für diese Installation festlegt. Das " +"Format sollte das Standardsprachenformat für IDs sein, z.B. \"en-us\" für U." +"S. English. Die Einstellung dient zwei Zwecken: Wenn die Lokalisierungs-" +"Middleware nicht in Gebrauch ist, bestimmt sie die Übersetzung für alle " +"Benutzer. Wenn die Lokalisierungs-Middleware in Gebrauch ist, bestimmt sie " +"die Rückfallsprache, wenn die bevorzugte Sprache des Benutzers nicht " +"ermittelt werden kann oder von der Website nicht unterstützt wird. Außerdem " +"dient sie als Rückfallübersetzung, wenn eine Übersetzung in der vom Benutzer " +"eingestellten Sprache nicht existiert." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -564,48 +736,65 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." -msgstr "Das Backend für die Speicherung von statischen Dateien mit dem collectstatic Management-Kommando. Eine betriebsfertige Instanz des Speicherungsbackends kann in django.contrib.staticfiles.storage.staticfiles_storage gefunden werden." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." +msgstr "" +"Das Backend für die Speicherung von statischen Dateien mit dem collectstatic " +"Management-Kommando. Eine betriebsfertige Instanz des Speicherungsbackends " +"kann in django.contrib.staticfiles.storage.staticfiles_storage gefunden " +"werden." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "Eine Zeichenkette für die Zeitzone dieser Installation. Die muss nicht unbedingt die Zeitzone des Servers sein. Zum Beispiel kann ein Server mehrere Django-Sites bedienen, jede mit einer eigenen Zeitzoneneinstellung." +msgstr "" +"Eine Zeichenkette für die Zeitzone dieser Installation. Die muss nicht " +"unbedingt die Zeitzone des Servers sein. Zum Beispiel kann ein Server " +"mehrere Django-Sites bedienen, jede mit einer eigenen Zeitzoneneinstellung." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "Der volle Pythonpfad für die WSGI application, das Django's built-in servers (e.g. runserver) benutzen wird. Das django-admin startproject Management-Kommando erstellt eine einfache wsgi.py Datei mit einem application callable, auf das diese Einstellung zeigt." +msgstr "" +"Der volle Pythonpfad für die WSGI application, das Django's built-in servers " +"(e.g. runserver) benutzen wird. Das django-admin startproject Management-" +"Kommando erstellt eine einfache wsgi.py Datei mit einem application " +"callable, auf das diese Einstellung zeigt." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "Standard: \"amqp://\". Die Standard Broker-URL. Muss in folgender Form angegeben werden: transport://userid:password@hostname:port/virtual_host\nNur das Schema (transport://) muss angegeben werden, der Rest ist optional und verweist auf die Standardwerte." - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" +"Standard: \"amqp://\". Die Standard Broker-URL. Muss in folgender Form " +"angegeben werden: transport://userid:password@hostname:port/virtual_host\n" +"Nur das Schema (transport://) muss angegeben werden, der Rest ist optional " +"und verweist auf die Standardwerte." + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" -msgstr "Standard: Es ist standardmäßig kein Ergebnisbackend aktiviert. Das Backend speichert die Aufgabenergebnisse (tombstones). Siehe: http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" +msgstr "" +"Standard: Es ist standardmäßig kein Ergebnisbackend aktiviert. Das Backend " +"speichert die Aufgabenergebnisse (tombstones). Siehe: http://docs." +"celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -638,7 +827,9 @@ msgstr "Erstellen" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Bitte geben Sie einen gültigen 'Internen Namen' an, bestehend aus Buchstaben, Zahlen und einem Unterstrich." +msgstr "" +"Bitte geben Sie einen gültigen 'Internen Namen' an, bestehend aus " +"Buchstaben, Zahlen und einem Unterstrich." #: views.py:31 msgid "About" @@ -682,7 +873,9 @@ msgstr "Keine Einstellungsoptionen verfügbar." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "Falls keine Ergebnisse angezeigt werden besitzen Sie nicht die erforderlichen Rechte für administrative Aufgaben." +msgstr "" +"Falls keine Ergebnisse angezeigt werden besitzen Sie nicht die " +"erforderlichen Rechte für administrative Aufgaben." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.po b/mayan/apps/common/locale/el/LC_MESSAGES/django.po index 44eceac6ee..bca7f5154f 100644 --- a/mayan/apps/common/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -196,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -315,76 +316,94 @@ msgstr "Αυτόματη ενεργοποίηση καταγραφής για ό #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Χρόνος αναμονής για ενέργειες παρασκηνίου που εξαρτώνται από την καταχώρηση στην βάση δεδομένων για να ολοκληρωθούν." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Χρόνος αναμονής για ενέργειες παρασκηνίου που εξαρτώνται από την καταχώρηση " +"στην βάση δεδομένων για να ολοκληρωθούν." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Διαδρομή όπου θα αποθηκευτεί το ημερολόγιο καταγραφής σφαλμάτων κατά την λειτουργεία του συστήματος." +msgstr "" +"Διαδρομή όπου θα αποθηκευτεί το ημερολόγιο καταγραφής σφαλμάτων κατά την " +"λειτουργεία του συστήματος." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,29 +412,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +442,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,31 +460,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,31 +494,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,17 +519,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +537,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +546,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +558,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,22 +566,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,24 +589,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index 2826219f41..016ee5c88e 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -318,41 +318,57 @@ msgid "" "Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also " "the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which " @@ -367,7 +383,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " @@ -376,13 +392,13 @@ msgid "" "used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -391,7 +407,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -406,14 +422,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -421,17 +437,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -439,23 +455,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the " "SMTP server. This is used for explicit TLS connections, generally on port " @@ -463,7 +479,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -473,22 +489,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login, " "especially when using the login_required() decorator. This setting also " @@ -497,7 +505,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -506,7 +514,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no " @@ -516,7 +524,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -524,7 +532,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -533,7 +541,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -545,7 +553,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -553,7 +561,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -561,14 +569,14 @@ msgid "" "storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -576,11 +584,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " "transport://userid:password@hostname:port/virtual_host Only the scheme part " @@ -588,7 +596,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index c247254fbe..67357a7e3f 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # jmcainzos , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:55+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -35,7 +36,8 @@ msgstr "Campos disponibles:\n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "Se utiliza para permitir la traducción sin conexión de los textos del código." +msgstr "" +"Se utiliza para permitir la traducción sin conexión de los textos del código." #: dependencies.py:401 msgid "Provides style checking." @@ -62,14 +64,20 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Seleccione las entradas que desea eliminar. Mantén pulsado Control para seleccionar varias entradas. Una vez que se complete la selección, haga clic en el botón de abajo o haga doble clic en la lista para activar la acción." +msgstr "" +"Seleccione las entradas que desea eliminar. Mantén pulsado Control para " +"seleccionar varias entradas. Una vez que se complete la selección, haga clic " +"en el botón de abajo o haga doble clic en la lista para activar la acción." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Seleccione las entradas que se añadirán. Mantén pulsado Control para seleccionar varias entradas. Una vez que se complete la selección, haga clic en el botón de abajo o haga doble clic en la lista para activar la acción." +msgstr "" +"Seleccione las entradas que se añadirán. Mantén pulsado Control para " +"seleccionar varias entradas. Una vez que se complete la selección, haga clic " +"en el botón de abajo o haga doble clic en la lista para activar la acción." #: generics.py:287 msgid "Add all" @@ -173,13 +181,16 @@ msgstr "Herramientas" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "Esta función ha quedado en desuso y se eliminará en una versión futura." +msgstr "" +"Esta función ha quedado en desuso y se eliminará en una versión futura." #: literals.py:16 msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "El backend de su base de datos está configurado para usar SQLite. SQLite solo debe usarse para desarrollo y pruebas, no para producción." +msgstr "" +"El backend de su base de datos está configurado para usar SQLite. SQLite " +"solo debe usarse para desarrollo y pruebas, no para producción." #: literals.py:34 msgid "Days" @@ -196,25 +207,33 @@ msgstr "Minutos" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "Restringe los datos exportados a la app_label o app_label.ModelName especificada." +msgstr "" +"Restringe los datos exportados a la app_label o app_label.ModelName " +"especificada." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "La base de datos desde la que se exportarán los datos. Si se omite, se usará la base de datos denominada \"default\"." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"La base de datos desde la que se exportarán los datos. Si se omite, se usará " +"la base de datos denominada \"default\"." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "La base de datos a la que se importarán los datos. Si se omite, se usará la base de datos denominada \"default\"." +msgstr "" +"La base de datos a la que se importarán los datos. Si se omite, se usará la " +"base de datos denominada \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "Forzar la conversión de la base de datos incluso si la base de datos receptora no está vacía." +msgstr "" +"Forzar la conversión de la base de datos incluso si la base de datos " +"receptora no está vacía." #: menus.py:10 msgid "System" @@ -319,157 +338,270 @@ msgstr "Activar bitácoras automáticamente a todas las aplicaciones." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Tiempo para retrasar las tareas de fondo que dependen de la propagación de información en la base de datos." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Tiempo para retrasar las tareas de fondo que dependen de la propagación de " +"información en la base de datos." -#: settings.py:32 +#: settings.py:33 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." -msgstr "Nombre de la vista adjunta al ancla de la marca en el menú principal. Esta es también la vista a la que los usuarios serán redirigidos después de iniciar sesión." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Una lista de cadenas que designan todas las aplicaciones que están " +"habilitadas en esta instalación de Django. Cada cadena debe ser una ruta de " +"Python punteada a: una clase de configuración de la aplicación (preferida), " +"o un paquete que contenga una aplicación." -#: settings.py:41 +#: settings.py:43 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Una lista de cadenas que designan todas las aplicaciones que están " +"habilitadas en esta instalación de Django. Cada cadena debe ser una ruta de " +"Python punteada a: una clase de configuración de la aplicación (preferida), " +"o un paquete que contenga una aplicación." + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" +"Nombre de la vista adjunta al ancla de la marca en el menú principal. Esta " +"es también la vista a la que los usuarios serán redirigidos después de " +"iniciar sesión." + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "El número de objetos que se mostrarán por página." -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Habilite el registro de errores fuera de las capacidades de registro de errores del sistema." +msgstr "" +"Habilite el registro de errores fuera de las capacidades de registro de " +"errores del sistema." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Ruta de acceso al archivo de registro que rastreará errores durante la producción." +msgstr "" +"Ruta de acceso al archivo de registro que rastreará errores durante la " +"producción." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nombre que se mostrará en el menú principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL de la instalación o página de inicio del proyecto." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Un soporte de almacenamiento que todos los 'workers' puedan utilizar para compartir archivos." +msgstr "" +"Un soporte de almacenamiento que todos los 'workers' puedan utilizar para " +"compartir archivos." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "Una lista de cadenas que representan los nombres de host / dominio que este sitio puede servir. Esta es una medida de seguridad para evitar los ataques de encabezado HTTP Host, que son posibles incluso bajo muchas configuraciones de servidor web aparentemente seguras. Los valores en esta lista pueden ser nombres totalmente calificados (por ejemplo, 'www.ejemplo.com'), en cuyo caso se compararán exactamente con el encabezado Host de la solicitud (no distingue entre mayúsculas y minúsculas, sin incluir el puerto). Un valor que comienza con un punto se puede usar como un comodín de subdominio: '.example.com' coincidirá con example.com, www.example.com y cualquier otro subdominio de example.com. Un valor de '*' coincidirá con cualquier cosa; en este caso, usted es responsable de proporcionar su propia validación del encabezado de host (quizás en un middleware, si es así, este middleware debe aparecer primero en MIDDLEWARE)." +msgstr "" +"Una lista de cadenas que representan los nombres de host / dominio que este " +"sitio puede servir. Esta es una medida de seguridad para evitar los ataques " +"de encabezado HTTP Host, que son posibles incluso bajo muchas " +"configuraciones de servidor web aparentemente seguras. Los valores en esta " +"lista pueden ser nombres totalmente calificados (por ejemplo, 'www.ejemplo." +"com'), en cuyo caso se compararán exactamente con el encabezado Host de la " +"solicitud (no distingue entre mayúsculas y minúsculas, sin incluir el " +"puerto). Un valor que comienza con un punto se puede usar como un comodín de " +"subdominio: '.example.com' coincidirá con example.com, www.example.com y " +"cualquier otro subdominio de example.com. Un valor de '*' coincidirá con " +"cualquier cosa; en este caso, usted es responsable de proporcionar su propia " +"validación del encabezado de host (quizás en un middleware, si es así, este " +"middleware debe aparecer primero en MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." -msgstr "Cuando se establece en True, si la URL de solicitud no coincide con ninguno de los patrones en el URLconf y no termina en una barra inclinada, se emite un redireccionamiento HTTP a la misma URL con una barra inclinada. Tenga en cuenta que la redirección puede hacer que se pierdan los datos enviados en una solicitud POST. La configuración APPEND_SLASH solo se usa si está instalado CommonMiddleware (ver Middleware). Ver también PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +msgstr "" +"Cuando se establece en True, si la URL de solicitud no coincide con ninguno " +"de los patrones en el URLconf y no termina en una barra inclinada, se emite " +"un redireccionamiento HTTP a la misma URL con una barra inclinada. Tenga en " +"cuenta que la redirección puede hacer que se pierdan los datos enviados en " +"una solicitud POST. La configuración APPEND_SLASH solo se usa si está " +"instalado CommonMiddleware (ver Middleware). Ver también PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "La lista de validadores que se utilizan para verificar la seguridad de las contraseñas de los usuarios." +msgstr "" +"La lista de validadores que se utilizan para verificar la seguridad de las " +"contraseñas de los usuarios." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "Un diccionario que contiene la configuración de todas las bases de datos que se utilizarán con Django. Es un diccionario anidado cuyos contenidos asignan un alias de base de datos a un diccionario que contiene las opciones para una base de datos individual. La configuración DATABASES debe configurar una base de datos predeterminada; también se puede especificar cualquier cantidad de bases de datos adicionales." +msgstr "" +"Un diccionario que contiene la configuración de todas las bases de datos que " +"se utilizarán con Django. Es un diccionario anidado cuyos contenidos asignan " +"un alias de base de datos a un diccionario que contiene las opciones para " +"una base de datos individual. La configuración DATABASES debe configurar una " +"base de datos predeterminada; también se puede especificar cualquier " +"cantidad de bases de datos adicionales." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo en bytes que puede ser un cuerpo de solicitud antes de que se genere una Operación Sospechosa (RequestDataTooBig). La comprobación se realiza al acceder a request.body o request.POST y se calcula con respecto al tamaño total de la solicitud, excluyendo cualquier archivo de carga de datos. Puede configurar esto en Ninguno para desactivar la verificación. Las aplicaciones que se espera que reciban publicaciones de forma inusualmente grande deben ajustar esta configuración. La cantidad de datos de solicitud se correlaciona con la cantidad de memoria necesaria para procesar la solicitud y llenar los diccionarios GET y POST. Las solicitudes grandes podrían usarse como un vector de ataque de denegación de servicio si no se seleccionan. Dado que los servidores web normalmente no realizan una inspección profunda de solicitudes, no es posible realizar una comprobación similar en ese nivel. Ver también FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo en bytes " +"que puede ser un cuerpo de solicitud antes de que se genere una Operación " +"Sospechosa (RequestDataTooBig). La comprobación se realiza al acceder a " +"request.body o request.POST y se calcula con respecto al tamaño total de la " +"solicitud, excluyendo cualquier archivo de carga de datos. Puede configurar " +"esto en Ninguno para desactivar la verificación. Las aplicaciones que se " +"espera que reciban publicaciones de forma inusualmente grande deben ajustar " +"esta configuración. La cantidad de datos de solicitud se correlaciona con la " +"cantidad de memoria necesaria para procesar la solicitud y llenar los " +"diccionarios GET y POST. Las solicitudes grandes podrían usarse como un " +"vector de ataque de denegación de servicio si no se seleccionan. Dado que " +"los servidores web normalmente no realizan una inspección profunda de " +"solicitudes, no es posible realizar una comprobación similar en ese nivel. " +"Ver también FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "Predeterminado:'webmaster@localhost' Dirección de correo electrónico predeterminada que se usa para la correspondencia automatizada del administrador(es) del sitio. Esto no incluye los mensajes de error enviados a ADMINS y MANAGERS; para eso, vea SERVER_EMAIL." +msgstr "" +"Predeterminado:'webmaster@localhost' Dirección de correo electrónico " +"predeterminada que se usa para la correspondencia automatizada del " +"administrador(es) del sitio. Esto no incluye los mensajes de error enviados " +"a ADMINS y MANAGERS; para eso, vea SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "Valor predeterminado: [] (lista vacía). Lista de objetos de expresiones regulares compilados que representan cadenas de User-Agent que no pueden visitar ninguna página, en todo el sistema. Úselo para robots / rastreadores malos. Esto solo se usa si CommonMiddleware está instalado (ver Middleware)." +msgstr "" +"Valor predeterminado: [] (lista vacía). Lista de objetos de expresiones " +"regulares compilados que representan cadenas de User-Agent que no pueden " +"visitar ninguna página, en todo el sistema. Úselo para robots / rastreadores " +"malos. Esto solo se usa si CommonMiddleware está instalado (ver Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "Valor predeterminado: 'django.core.mail.backends.smtp.EmailBackend'. El backend para usar para enviar correos electrónicos." +msgstr "" +"Valor predeterminado: 'django.core.mail.backends.smtp.EmailBackend'. El " +"backend para usar para enviar correos electrónicos." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." -msgstr "Valor predeterminado: 'localhost'. El host que se usará para enviar correos electrónicos." +msgstr "" +"Valor predeterminado: 'localhost'. El host que se usará para enviar correos " +"electrónicos." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "Valor predeterminado: '' (cadena vacía). Contraseña para usar para el servidor SMTP definido en EMAIL_HOST. Esta configuración se usa junto con EMAIL_HOST_USER al autenticarse en el servidor SMTP. Si cualquiera de estas configuraciones está vacía, Django no intentará la autenticación." +msgstr "" +"Valor predeterminado: '' (cadena vacía). Contraseña para usar para el " +"servidor SMTP definido en EMAIL_HOST. Esta configuración se usa junto con " +"EMAIL_HOST_USER al autenticarse en el servidor SMTP. Si cualquiera de estas " +"configuraciones está vacía, Django no intentará la autenticación." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "Valor predeterminado: '' (cadena vacía). Nombre de usuario a usar para el servidor SMTP definido en EMAIL_HOST. Si está vacío, Django no intentará la autenticación." +msgstr "" +"Valor predeterminado: '' (cadena vacía). Nombre de usuario a usar para el " +"servidor SMTP definido en EMAIL_HOST. Si está vacío, Django no intentará la " +"autenticación." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "Valor predeterminado: 25. Puerto para usar para el servidor SMTP definido en EMAIL_HOST." +msgstr "" +"Valor predeterminado: 25. Puerto para usar para el servidor SMTP definido en " +"EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "Predeterminado: ninguno Especifica un tiempo de espera en segundos para operaciones de bloqueo como el intento de conexión." +msgstr "" +"Predeterminado: ninguno Especifica un tiempo de espera en segundos para " +"operaciones de bloqueo como el intento de conexión." -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "Predeterminado: Falso. Si se debe usar una conexión TLS (segura) cuando se habla con el servidor SMTP. Esto se usa para conexiones explícitas de TLS, generalmente en el puerto 587. Si experimenta conexiones suspendidas, consulte la configuración de TLS implícita EMAIL_USE_SSL." +msgstr "" +"Predeterminado: Falso. Si se debe usar una conexión TLS (segura) cuando se " +"habla con el servidor SMTP. Esto se usa para conexiones explícitas de TLS, " +"generalmente en el puerto 587. Si experimenta conexiones suspendidas, " +"consulte la configuración de TLS implícita EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,69 +609,104 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "Predeterminado: Falso. Si se debe usar una conexión TLS (segura) implícita al hablar con el servidor SMTP. En la mayoría de la documentación de correo electrónico, este tipo de conexión TLS se conoce como SSL. Generalmente se usa en el puerto 465. Si tiene problemas, consulte la configuración de TLS explícita EMAIL_USE_TLS. Tenga en cuenta que EMAIL_USE_TLS / EMAIL_USE_SSL son mutuamente excluyentes, por lo que solo debe establecer una de esas configuraciones en True." +msgstr "" +"Predeterminado: Falso. Si se debe usar una conexión TLS (segura) implícita " +"al hablar con el servidor SMTP. En la mayoría de la documentación de correo " +"electrónico, este tipo de conexión TLS se conoce como SSL. Generalmente se " +"usa en el puerto 465. Si tiene problemas, consulte la configuración de TLS " +"explícita EMAIL_USE_TLS. Tenga en cuenta que EMAIL_USE_TLS / EMAIL_USE_SSL " +"son mutuamente excluyentes, por lo que solo debe establecer una de esas " +"configuraciones en True." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo (en bytes) que una carga será antes de que se transmita al sistema de archivos. Consulte Administración de archivos para más detalles. Ver también DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo (en " +"bytes) que una carga será antes de que se transmita al sistema de archivos. " +"Consulte Administración de archivos para más detalles. Ver también " +"DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Una lista de cadenas que designan todas las aplicaciones que están habilitadas en esta instalación de Django. Cada cadena debe ser una ruta de Python punteada a: una clase de configuración de la aplicación (preferida), o un paquete que contenga una aplicación." - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "Valor predeterminado: '/ accounts / login /' La URL donde las solicitudes se redireccionan para iniciar sesión, especialmente cuando se utiliza el decodificador login_required (). Esta configuración también acepta patrones de URL nombrados que se pueden usar para reducir la duplicación de configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." +msgstr "" +"Valor predeterminado: '/ accounts / login /' La URL donde las solicitudes se " +"redireccionan para iniciar sesión, especialmente cuando se utiliza el " +"decodificador login_required (). Esta configuración también acepta patrones " +"de URL nombrados que se pueden usar para reducir la duplicación de " +"configuración, ya que no tiene que definir la URL en dos lugares " +"(configuración y URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "Valor predeterminado: '/ accounts / profile /' La URL donde las solicitudes se redirigen después del inicio de sesión cuando la vista contrib.auth.login no obtiene el siguiente parámetro. Esto es usado por el decorador login_required (), por ejemplo. Esta configuración también acepta patrones de URL nombrados que se pueden usar para reducir la duplicación de configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." +msgstr "" +"Valor predeterminado: '/ accounts / profile /' La URL donde las solicitudes " +"se redirigen después del inicio de sesión cuando la vista contrib.auth.login " +"no obtiene el siguiente parámetro. Esto es usado por el decorador " +"login_required (), por ejemplo. Esta configuración también acepta patrones " +"de URL nombrados que se pueden usar para reducir la duplicación de " +"configuración, ya que no tiene que definir la URL en dos lugares " +"(configuración y URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "Predeterminado: Ninguno. La URL donde se redirigen las solicitudes después de que un usuario cierre sesión usando LogoutView (si la vista no obtiene un argumento next_page). Si Ninguno, no se realizará una redirección y se procesará la vista de cierre de sesión. Esta configuración también acepta patrones de URL con nombre que se pueden usar para reducir la duplicación de la configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." +msgstr "" +"Predeterminado: Ninguno. La URL donde se redirigen las solicitudes después " +"de que un usuario cierre sesión usando LogoutView (si la vista no obtiene un " +"argumento next_page). Si Ninguno, no se realizará una redirección y se " +"procesará la vista de cierre de sesión. Esta configuración también acepta " +"patrones de URL con nombre que se pueden usar para reducir la duplicación de " +"la configuración, ya que no tiene que definir la URL en dos lugares " +"(configuración y URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "Una lista de direcciones IP, como cadenas, que: Permiten que el procesador de contexto debug() agregue algunas variables al contexto de la plantilla. Puede usar los marcadores de Admindocs incluso si no ha iniciado sesión como usuario del personal. Están marcados como 'internos' (a diferencia de 'EXTERNOS') en los correos electrónicos de AdminEmailHandler." +msgstr "" +"Una lista de direcciones IP, como cadenas, que: Permiten que el procesador " +"de contexto debug() agregue algunas variables al contexto de la plantilla. " +"Puede usar los marcadores de Admindocs incluso si no ha iniciado sesión como " +"usuario del personal. Están marcados como 'internos' (a diferencia de " +"'EXTERNOS') en los correos electrónicos de AdminEmailHandler." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "Una lista de todos los idiomas disponibles. La lista es una lista de dos tuplas en el formato (código de idioma, nombre del idioma), por ejemplo, ('ja', 'Japonés'). Esto especifica qué idiomas están disponibles para la selección de idiomas. Generalmente, el valor predeterminado debería ser suficiente. Solo establezca esta configuración si desea restringir la selección de idioma a un subconjunto de los idiomas proporcionados por Django." +msgstr "" +"Una lista de todos los idiomas disponibles. La lista es una lista de dos " +"tuplas en el formato (código de idioma, nombre del idioma), por ejemplo, " +"('ja', 'Japonés'). Esto especifica qué idiomas están disponibles para la " +"selección de idiomas. Generalmente, el valor predeterminado debería ser " +"suficiente. Solo establezca esta configuración si desea restringir la " +"selección de idioma a un subconjunto de los idiomas proporcionados por " +"Django." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,58 +716,93 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "Un texto que representa el código de idioma para esta instalación. Esto debe estar en formato de ID de idioma estándar. Por ejemplo, el inglés de EE. UU. Es 'en-us'. Tiene dos propósitos: si el middleware de configuración regional no está en uso, decide qué traducción se sirve a todos los usuarios. Si el middleware de configuración regional está activo, proporciona un idioma alternativo en caso de que el idioma preferido del usuario no se pueda determinar o el sitio web no lo admita. También proporciona la traducción alternativa cuando no existe una traducción para un literal dado para el idioma preferido del usuario." +msgstr "" +"Un texto que representa el código de idioma para esta instalación. Esto debe " +"estar en formato de ID de idioma estándar. Por ejemplo, el inglés de EE. UU. " +"Es 'en-us'. Tiene dos propósitos: si el middleware de configuración regional " +"no está en uso, decide qué traducción se sirve a todos los usuarios. Si el " +"middleware de configuración regional está activo, proporciona un idioma " +"alternativo en caso de que el idioma preferido del usuario no se pueda " +"determinar o el sitio web no lo admita. También proporciona la traducción " +"alternativa cuando no existe una traducción para un literal dado para el " +"idioma preferido del usuario." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "URL a usar cuando se hace referencia a archivos estáticos ubicados en STATIC_ROOT. Ejemplo: \"/static/\" o \"http://static.example.com/\". Si no es None, se usará como ruta base para las definiciones de activos (la clase Media) y la aplicación staticfiles. Debe terminar en una barra inclinada si se establece en un valor no vacío." +msgstr "" +"URL a usar cuando se hace referencia a archivos estáticos ubicados en " +"STATIC_ROOT. Ejemplo: \"/static/\" o \"http://static.example.com/\". Si no " +"es None, se usará como ruta base para las definiciones de activos (la clase " +"Media) y la aplicación staticfiles. Debe terminar en una barra inclinada si " +"se establece en un valor no vacío." -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." -msgstr "El motor de almacenamiento de archivos que se utiliza al recopilar archivos estáticos con el comando de gestión collectstatic. Puede encontrar una instancia lista para usar del backend de almacenamiento definido en esta configuración en django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." +msgstr "" +"El motor de almacenamiento de archivos que se utiliza al recopilar archivos " +"estáticos con el comando de gestión collectstatic. Puede encontrar una " +"instancia lista para usar del backend de almacenamiento definido en esta " +"configuración en django.contrib.staticfiles.storage.staticfiles_storage." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "Una cadena que representa la zona horaria para esta instalación. Tenga en cuenta que esto no es necesariamente la zona horaria del servidor. Por ejemplo, un servidor puede servir múltiples sitios con Django, cada uno con una configuración de zona horaria separada." +msgstr "" +"Una cadena que representa la zona horaria para esta instalación. Tenga en " +"cuenta que esto no es necesariamente la zona horaria del servidor. Por " +"ejemplo, un servidor puede servir múltiples sitios con Django, cada uno con " +"una configuración de zona horaria separada." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "La ruta completa de Python del objeto de aplicación WSGI que usarán los servidores incorporados de Django (por ejemplo, runserver). El comando django-admin startproject management creará un archivo wsgi.py simple con una aplicación invocable en él, y señalará esta configuración a esa aplicación." +msgstr "" +"La ruta completa de Python del objeto de aplicación WSGI que usarán los " +"servidores incorporados de Django (por ejemplo, runserver). El comando " +"django-admin startproject management creará un archivo wsgi.py simple con " +"una aplicación invocable en él, y señalará esta configuración a esa " +"aplicación." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "Valor predeterminado: \"amqp://\". URL del intermediario predeterminado Debe ser una URL en forma de: transporte://usuario:contraseña@servidor:puerto/virtual_host Solo se requiere la parte de esquema (transporte: //), el resto es opcional y se predetermina a los valores predeterminados de transporte específico." - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" +"Valor predeterminado: \"amqp://\". URL del intermediario predeterminado Debe " +"ser una URL en forma de: transporte://usuario:contraseña@servidor:puerto/" +"virtual_host Solo se requiere la parte de esquema (transporte: //), el resto " +"es opcional y se predetermina a los valores predeterminados de transporte " +"específico." + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" +msgstr "" +"Predeterminado: Sin back-end de resultados habilitado por defecto. El " +"backend utilizado para almacenar resultados de tareas (lápidas). Consulte " "http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" "backend" -msgstr "Predeterminado: Sin back-end de resultados habilitado por defecto. El backend utilizado para almacenar resultados de tareas (lápidas). Consulte http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -633,7 +835,9 @@ msgstr "Crear" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Introduzca un nombre interno válido que conste de letras, números y subrayados." +msgstr "" +"Introduzca un nombre interno válido que conste de letras, números y " +"subrayados." #: views.py:31 msgid "About" @@ -677,7 +881,9 @@ msgstr "No hay opciones de configuración disponibles." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "Ningún resultado aquí significa que no tiene los permisos necesarios para realizar tareas administrativas." +msgstr "" +"Ningún resultado aquí significa que no tiene los permisos necesarios para " +"realizar tareas administrativas." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 5a588e3702..2dff71570d 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -198,8 +199,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,76 +318,92 @@ msgstr "به طور خودکار ورود به سیستم را به تمام ب #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "زمان برای به تاخیر انداختن وظایف پس زمینه که به پایگاه داده متعهد به انتشار است." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"زمان برای به تاخیر انداختن وظایف پس زمینه که به پایگاه داده متعهد به انتشار " +"است." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "مسیر فایل logfile که خطاهای تولید را دنبال می کند." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "محلی که کلیه کاربران جهت به اشتراک گذاری فایل میتوانند استفاه کنند." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,29 +412,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +442,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,31 +460,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,31 +494,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,17 +519,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +537,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +546,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +558,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,22 +566,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,24 +589,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index 265a66176c..5d0d25fbc6 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2016-2018 # Franck Boucher , 2016 @@ -16,14 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -40,7 +41,8 @@ msgstr "Champs disponibles: \n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "Utilisé pour permettre la traduction hors ligne des chaînes de texte du code." +msgstr "" +"Utilisé pour permettre la traduction hors ligne des chaînes de texte du code." #: dependencies.py:401 msgid "Provides style checking." @@ -184,7 +186,10 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Votre serveur de base de données est configuré pour utiliser SQLite. SQLite ne devrait être utilisé qu'à des fins de développement et de test, pas en production." +msgstr "" +"Votre serveur de base de données est configuré pour utiliser SQLite. SQLite " +"ne devrait être utilisé qu'à des fins de développement et de test, pas en " +"production." #: literals.py:34 msgid "Days" @@ -205,8 +210,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -324,76 +329,100 @@ msgstr "Activation automatique de la trace pour toutes les applications." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Durée de temporisation des tâches d'arrière plan dépendant d'une mise à jour de la base de données." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Durée de temporisation des tâches d'arrière plan dépendant d'une mise à jour " +"de la base de données." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Activer la journalisation des erreurs en dehors des capacités de journalisation du système d'erreur." +msgstr "" +"Activer la journalisation des erreurs en dehors des capacités de " +"journalisation du système d'erreur." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Chemin d'accès au fichier journal qui enregistrera les erreurs pendant la production." +msgstr "" +"Chemin d'accès au fichier journal qui enregistrera les erreurs pendant la " +"production." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nom qui sera affiché dans le menu principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL de l'installation ou de la page d'accueil du projet." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Un espace de stockage que tous les agents pourront utiliser pour partager des fichiers." +msgstr "" +"Un espace de stockage que tous les agents pourront utiliser pour partager " +"des fichiers." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "La liste des validateurs utilisés pour vérifier la force des mots de passe de l'utilisateur." +msgstr "" +"La liste des validateurs utilisés pour vérifier la force des mots de passe " +"de l'utilisateur." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -402,29 +431,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -432,17 +461,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Par défaut: 'localhost'. L'hôte à utiliser pour l'envoi de courriel." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -450,31 +479,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -484,31 +513,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -517,17 +538,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -535,7 +556,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -544,7 +565,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -556,7 +577,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -564,22 +585,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -587,24 +608,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 @@ -638,7 +658,9 @@ msgstr "Créer" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Entrez un 'nom interne' valide composé de lettres, de chiffres et de soulignement." +msgstr "" +"Entrez un 'nom interne' valide composé de lettres, de chiffres et de " +"soulignement." #: views.py:31 msgid "About" @@ -663,7 +685,8 @@ msgstr "Effacer les entrées du journal des erreurs pour : %s" #: views.py:135 msgid "Object error log cleared successfully" -msgstr "Les entrées concernées du journal des erreurs ont été effacées avec succès" +msgstr "" +"Les entrées concernées du journal des erreurs ont été effacées avec succès" #: views.py:154 msgid "Date and time" @@ -682,7 +705,9 @@ msgstr "Aucune option d'installation disponible." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "Aucun résultat ici signifie que vous ne disposez pas des autorisations requises pour effectuer des tâches administratives." +msgstr "" +"Aucun résultat ici signifie que vous ne disposez pas des autorisations " +"requises pour effectuer des tâches administratives." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index 1e35232235..45f2ee98cb 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -197,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -316,76 +317,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,29 +409,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,31 +457,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,31 +491,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,17 +516,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,22 +563,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,24 +586,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 77146bf2a1..ae27663290 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -196,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -315,76 +316,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,29 +408,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +438,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,31 +456,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,31 +490,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,17 +515,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +533,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +542,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +554,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,22 +562,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,24 +585,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index d3bb2cfa99..91f3bc4453 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Daniele Bortoluzzi , 2019 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -37,7 +38,9 @@ msgstr "Campi disponibili:\n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "Usato per consentire la traduzione offline delle stringhe di testo nel codice." +msgstr "" +"Usato per consentire la traduzione offline delle stringhe di testo nel " +"codice." #: dependencies.py:401 msgid "Provides style checking." @@ -64,14 +67,20 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Seleziona le voci da rimuovere. Tieni premuto Ctrl per selezionare più di una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai doppio clic sulla lista per attivare l'azione." +msgstr "" +"Seleziona le voci da rimuovere. Tieni premuto Ctrl per selezionare più di " +"una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai " +"doppio clic sulla lista per attivare l'azione." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Seleziona le voci da aggiungere. Tieni premuto Ctrl per selezionare più di una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai doppio clic sulla lista per attivare l'azione." +msgstr "" +"Seleziona le voci da aggiungere. Tieni premuto Ctrl per selezionare più di " +"una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai " +"doppio clic sulla lista per attivare l'azione." #: generics.py:287 msgid "Add all" @@ -181,7 +190,9 @@ msgstr "Questa funzionalità è obsoleta e verrà rimossa nelle versioni future. msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Il tuo database attuale è impostato a SQLite, che dovrebbe essere usato solo per sviluppo e test, non in produzione." +msgstr "" +"Il tuo database attuale è impostato a SQLite, che dovrebbe essere usato solo " +"per sviluppo e test, non in produzione." #: literals.py:34 msgid "Days" @@ -198,25 +209,32 @@ msgstr "Minuti" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "Limita i dati del dump a una specifica app_label o app_label.ModelName." +msgstr "" +"Limita i dati del dump a una specifica app_label o app_label.ModelName." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "Il database da cui esportare i dati. Se non specificato, verrà usato il database chiamato \"default\"." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"Il database da cui esportare i dati. Se non specificato, verrà usato il " +"database chiamato \"default\"." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "Il database sul quale importare i dati. Se non specificato, verrà usato il database chiamato \"default\"." +msgstr "" +"Il database sul quale importare i dati. Se non specificato, verrà usato il " +"database chiamato \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "Forza la conversione del database anche se il database di destinazione non è vuoto." +msgstr "" +"Forza la conversione del database anche se il database di destinazione non è " +"vuoto." #: menus.py:10 msgid "System" @@ -321,107 +339,147 @@ msgstr "Abilita automaticamente i log per tutte le app." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Il ritardo per i task in background dipende dalla propagazione del commit su database." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Il ritardo per i task in background dipende dalla propagazione del commit su " +"database." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." -msgstr "Nome della vista collegata all'ancora brand nel menù principale. Questa è anche la vista alla quale gli utenti verranno reindirizzati dopo il login." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" +"Nome della vista collegata all'ancora brand nel menù principale. Questa è " +"anche la vista alla quale gli utenti verranno reindirizzati dopo il login." + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Percorso del file di log su cui verranno scritti gli errori in produzione." +msgstr "" +"Percorso del file di log su cui verranno scritti gli errori in produzione." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nome da visualizzare nel menù principale." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL dell'installazione o pagina home del progetto." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Un backend di memorizzazione che tutti i lavoratori possono utilizzare per condividere i file." +msgstr "" +"Un backend di memorizzazione che tutti i lavoratori possono utilizzare per " +"condividere i file." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "Una lista di stringhe con i nomi host o nomi di dominio che questo sito può servire. Si tratta di una misura di sicurezza per prevenire attacchi con l'intestazione HTTP Host, che sono possibili in tante configurazioni dei web server anche apparentemente sicure. I valori in questa lista possono essere FQDN (es. 'www.nomesito.it'), nel quale caso verranno confrontati con l'header di richiesta Host in maniera esatta (senza controllo maiuscole e senza la porta). Una stringa che inizi con un punto può essere usata come wildcard per il sottodominio: '.nomesito.it' sarà valido per nomesito.it, www.nomesito.it e qualunque altro sottodominio di nomesito.it. Il valore '*' corrisponde a qualunque sito; in questo caso sei tu responsabile di validare in qualche modo l'intestazione Host (magari in un middleware, in tal caso deve essere il primo della lista MIDDLEWARE)." +msgstr "" +"Una lista di stringhe con i nomi host o nomi di dominio che questo sito può " +"servire. Si tratta di una misura di sicurezza per prevenire attacchi con " +"l'intestazione HTTP Host, che sono possibili in tante configurazioni dei web " +"server anche apparentemente sicure. I valori in questa lista possono essere " +"FQDN (es. 'www.nomesito.it'), nel quale caso verranno confrontati con " +"l'header di richiesta Host in maniera esatta (senza controllo maiuscole e " +"senza la porta). Una stringa che inizi con un punto può essere usata come " +"wildcard per il sottodominio: '.nomesito.it' sarà valido per nomesito.it, " +"www.nomesito.it e qualunque altro sottodominio di nomesito.it. Il valore '*' " +"corrisponde a qualunque sito; in questo caso sei tu responsabile di validare " +"in qualche modo l'intestazione Host (magari in un middleware, in tal caso " +"deve essere il primo della lista MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "La lista dei validatori usati per controllare l'efficacia delle password degli utenti." +msgstr "" +"La lista dei validatori usati per controllare l'efficacia delle password " +"degli utenti." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "Un dizionario che contiene le impostazioni per tutti i database da usare con Django. È un dizionario innestato le cui chiavi sono alias di database e i valori sono i dizionari con le opzioni per ogni database. L'impostazione DATABASES deve contenere un database chiamato 'default'; è possibile poi specificare ulteriori database aggiuntivi." +msgstr "" +"Un dizionario che contiene le impostazioni per tutti i database da usare con " +"Django. È un dizionario innestato le cui chiavi sono alias di database e i " +"valori sono i dizionari con le opzioni per ogni database. L'impostazione " +"DATABASES deve contenere un database chiamato 'default'; è possibile poi " +"specificare ulteriori database aggiuntivi." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -429,17 +487,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -447,31 +505,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -481,31 +539,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -514,17 +564,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -532,7 +582,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -541,7 +591,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -553,7 +603,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -561,22 +611,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -584,24 +634,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 @@ -635,7 +684,8 @@ msgstr "Crea" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Inserisci un 'internal name' valido composto da lettere, numeri e underscore." +msgstr "" +"Inserisci un 'internal name' valido composto da lettere, numeri e underscore." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po index 9866faa9e8..88ed2e6a55 100644 --- a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -59,14 +61,20 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Atlasiet noņemamos ierakstus. Lai atlasītu vairākus ierakstus, turiet Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." +msgstr "" +"Atlasiet noņemamos ierakstus. Lai atlasītu vairākus ierakstus, turiet " +"Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās " +"pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Atlasiet pievienojamos ierakstus. Lai atlasītu vairākus ierakstus, turiet Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." +msgstr "" +"Atlasiet pievienojamos ierakstus. Lai atlasītu vairākus ierakstus, turiet " +"Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās " +"pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." #: generics.py:287 msgid "Add all" @@ -176,7 +184,9 @@ msgstr "Šī funkcija ir novecojusi un tiks noņemta turpmākajā versijā." msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Jūsu datubāzes backend ir iestatīts, lai izmantotu SQLite. SQLite jāizmanto tikai izstrādei un testēšanai, nevis ražošanai." +msgstr "" +"Jūsu datubāzes backend ir iestatīts, lai izmantotu SQLite. SQLite jāizmanto " +"tikai izstrādei un testēšanai, nevis ražošanai." #: literals.py:34 msgid "Days" @@ -197,21 +207,26 @@ msgstr "Ierobežo izgāztos datus uz norādīto app_label vai app_label.ModelNam #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "Datu bāze, no kuras tiks eksportēti dati. Ja tas tiks izlaists, tiks izmantota datubāze ar nosaukumu \"default\"." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"Datu bāze, no kuras tiks eksportēti dati. Ja tas tiks izlaists, tiks " +"izmantota datubāze ar nosaukumu \"default\"." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "Datu bāze, uz kuru tiks importēti dati. Ja tas tiks izlaists, tiks izmantota datubāze ar nosaukumu \"default\"." +msgstr "" +"Datu bāze, uz kuru tiks importēti dati. Ja tas tiks izlaists, tiks izmantota " +"datubāze ar nosaukumu \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "Piespiest datu bāzes pārveidošanu pat tad, ja saņemošā datu bāze nav tukša." +msgstr "" +"Piespiest datu bāzes pārveidošanu pat tad, ja saņemošā datu bāze nav tukša." #: menus.py:10 msgid "System" @@ -316,157 +331,258 @@ msgstr "Automātiski iespējojiet pierakstīšanos visās lietotnēs." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Laiks uz kādu aizkavēt fona uzdevumus, kas ir atkarīgs no datu bāzes apņemšanās uz izplatīšanu." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Laiks uz kādu aizkavēt fona uzdevumus, kas ir atkarīgs no datu bāzes " +"apņemšanās uz izplatīšanu." -#: settings.py:32 +#: settings.py:33 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." -msgstr "Zīmola enkuram pievienotā skata nosaukums galvenajā izvēlnē. Tas ir arī skats, uz kuru pēc pierakstīšanās lietotāji tiks novirzīti." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Saraksts ar virknēm, kas apzīmē visas programmas, kas ir iespējotas šajā " +"Django instalācijā. Katrai virknei vajadzētu būt punktveida Python ceļam uz: " +"lietojumprogrammas konfigurācijas klasi (vēlamo) vai paketi, kurā ir " +"lietojumprogramma." -#: settings.py:41 +#: settings.py:43 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Saraksts ar virknēm, kas apzīmē visas programmas, kas ir iespējotas šajā " +"Django instalācijā. Katrai virknei vajadzētu būt punktveida Python ceļam uz: " +"lietojumprogrammas konfigurācijas klasi (vēlamo) vai paketi, kurā ir " +"lietojumprogramma." + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" +"Zīmola enkuram pievienotā skata nosaukums galvenajā izvēlnē. Tas ir arī " +"skats, uz kuru pēc pierakstīšanās lietotāji tiks novirzīti." + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Iespējot kļūdu reģistrēšanu ārpus sistēmas kļūdu reģistrēšanas iespējām." +msgstr "" +"Iespējot kļūdu reģistrēšanu ārpus sistēmas kļūdu reģistrēšanas iespējām." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Ceļš uz žurnāla failu, kurā tiks novērotas kļūdas ražošanas laikā." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nosaukums, kas jārāda galvenajā izvēlnē." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "Projekta instalācijas vai mājas lapas URL." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Uzglabāšanas backend, ko visi darbinieki var izmantot, lai koplietotu failus." +msgstr "" +"Uzglabāšanas backend, ko visi darbinieki var izmantot, lai koplietotu failus." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "Saraksts ar virknēm, kas pārstāv vietnes / domēna vārdus, kurus šī vietne var pasniegt. Šis ir drošības pasākums, lai novērstu HTTP uzņēmēja galvenes uzbrukumus, kas ir iespējami pat daudzās šķietami drošās tīmekļa servera konfigurācijās. Vērtības šajā sarakstā var būt pilnībā kvalificēti vārdi (piemēram, “www.example.com”), un tādā gadījumā tie tiks precīzi saskaņoti ar pieprasījuma Host galvenes virsrakstu (nejūtīga, neietverot portu). Vērtību, kas sākas ar punktu, var izmantot kā apakšdomēna aizstājējzīmi: '.example.com' atbilst example.com, www.example.com un jebkuram citam example.com apakšdomēnam. Vērtība '*' atbilst jebkuram; šajā gadījumā jūs esat atbildīgs par savas galvenes apstiprinājuma apstiprināšanu (varbūt starpprogrammatūrā; ja tā, tad starpprogrammatūra vispirms jānorāda iekš MIDDLEWARE)." +msgstr "" +"Saraksts ar virknēm, kas pārstāv vietnes / domēna vārdus, kurus šī vietne " +"var pasniegt. Šis ir drošības pasākums, lai novērstu HTTP uzņēmēja galvenes " +"uzbrukumus, kas ir iespējami pat daudzās šķietami drošās tīmekļa servera " +"konfigurācijās. Vērtības šajā sarakstā var būt pilnībā kvalificēti vārdi " +"(piemēram, “www.example.com”), un tādā gadījumā tie tiks precīzi saskaņoti " +"ar pieprasījuma Host galvenes virsrakstu (nejūtīga, neietverot portu). " +"Vērtību, kas sākas ar punktu, var izmantot kā apakšdomēna aizstājējzīmi: '." +"example.com' atbilst example.com, www.example.com un jebkuram citam example." +"com apakšdomēnam. Vērtība '*' atbilst jebkuram; šajā gadījumā jūs esat " +"atbildīgs par savas galvenes apstiprinājuma apstiprināšanu (varbūt " +"starpprogrammatūrā; ja tā, tad starpprogrammatūra vispirms jānorāda iekš " +"MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." -msgstr "Ja iestatījums ir True, un pieprasījuma URL neatbilst nevienam no URLconf modeļiem un tas nenotiek slīpsvītrā, HTTP novirzīšana tiek izdota tam pašam URL ar pievienoto slīpsvītru. Ņemiet vērā, ka novirzīšana var izraisīt jebkādu POST pieprasījumā iesniegto datu pazaudēšanu. Iestatījums APPEND_SLASH tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra). Skatiet arī PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +msgstr "" +"Ja iestatījums ir True, un pieprasījuma URL neatbilst nevienam no URLconf " +"modeļiem un tas nenotiek slīpsvītrā, HTTP novirzīšana tiek izdota tam pašam " +"URL ar pievienoto slīpsvītru. Ņemiet vērā, ka novirzīšana var izraisīt " +"jebkādu POST pieprasījumā iesniegto datu pazaudēšanu. Iestatījums " +"APPEND_SLASH tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. " +"Starpprogrammatūra). Skatiet arī PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "Validatoru saraksts, kurus izmanto, lai pārbaudītu lietotāja paroļu stiprumu." +msgstr "" +"Validatoru saraksts, kurus izmanto, lai pārbaudītu lietotāja paroļu stiprumu." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "Vārdnīca ar visu Django lietojamo datu bāzu iestatījumiem. Tā ir ligzdota vārdnīca, kuras saturs iezīmē datubāzes aizstājvārdu vārdnīcā, kurā ir atsevišķas datu bāzes iespējas. DATABASES iestatījumam jākonfigurē noklusējuma datu bāze; var norādīt arī jebkuru papildu datu bāzu skaitu." +msgstr "" +"Vārdnīca ar visu Django lietojamo datu bāzu iestatījumiem. Tā ir ligzdota " +"vārdnīca, kuras saturs iezīmē datubāzes aizstājvārdu vārdnīcā, kurā ir " +"atsevišķas datu bāzes iespējas. DATABASES iestatījumam jākonfigurē " +"noklusējuma datu bāze; var norādīt arī jebkuru papildu datu bāzu skaitu." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums baitos, ko pieprasīšanas struktūra var būt pirms aizdomīgas darbības (RequestDataTooBig) palielināšanas. Pārbaude tiek veikta, piekļūstot pieprasījumam.body vai request.POST, un tiek aprēķināta pēc kopējā pieprasījuma lieluma, izņemot visus failu augšupielādes datus. To var iestatīt uz Nav, lai izslēgtu pārbaudi. Lietojumprogrammām, kurām sagaidāms, ka tās saņems neparasti lielas veidlapas ziņas, ir jākontrolē šis iestatījums. Pieprasījuma datu apjoms ir saistīts ar atmiņas apjomu, kas nepieciešams, lai apstrādātu pieprasījumu un aizpildītu GET un POST vārdnīcas. Lielus pieprasījumus var izmantot kā pakalpojumu atteikšanas uzbrukuma vektoru, ja tas netiek pārbaudīts. Tā kā tīmekļa serveri parasti neveic dziļu pieprasījumu pārbaudi, nav iespējams veikt līdzīgu pārbaudi šajā līmenī. Skatiet arī FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums baitos, ko " +"pieprasīšanas struktūra var būt pirms aizdomīgas darbības " +"(RequestDataTooBig) palielināšanas. Pārbaude tiek veikta, piekļūstot " +"pieprasījumam.body vai request.POST, un tiek aprēķināta pēc kopējā " +"pieprasījuma lieluma, izņemot visus failu augšupielādes datus. To var " +"iestatīt uz Nav, lai izslēgtu pārbaudi. Lietojumprogrammām, kurām sagaidāms, " +"ka tās saņems neparasti lielas veidlapas ziņas, ir jākontrolē šis " +"iestatījums. Pieprasījuma datu apjoms ir saistīts ar atmiņas apjomu, kas " +"nepieciešams, lai apstrādātu pieprasījumu un aizpildītu GET un POST " +"vārdnīcas. Lielus pieprasījumus var izmantot kā pakalpojumu atteikšanas " +"uzbrukuma vektoru, ja tas netiek pārbaudīts. Tā kā tīmekļa serveri parasti " +"neveic dziļu pieprasījumu pārbaudi, nav iespējams veikt līdzīgu pārbaudi " +"šajā līmenī. Skatiet arī FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "Noklusējums: “webmaster@localhost” Noklusējuma e-pasta adrese, ko izmanto dažādai automatizētai sarakstei no vietnes pārvaldnieka (-iem). Tas neietver kļūdas ziņojumus, kas nosūtīti ADMINS un MANAGERS; par to skatiet SERVER_EMAIL." +msgstr "" +"Noklusējums: “webmaster@localhost” Noklusējuma e-pasta adrese, ko izmanto " +"dažādai automatizētai sarakstei no vietnes pārvaldnieka (-iem). Tas neietver " +"kļūdas ziņojumus, kas nosūtīti ADMINS un MANAGERS; par to skatiet " +"SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "Noklusējums: [] (Tukšs saraksts). Sastādīto regulāro izteiksmes objektu saraksts, kas pārstāv lietotāja-aģentu virknes, kurām nav atļauts apmeklēt jebkuru lapu. Izmantojiet to sliktiem robotiem / rāpuļprogrammām. Tas tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra)." +msgstr "" +"Noklusējums: [] (Tukšs saraksts). Sastādīto regulāro izteiksmes objektu " +"saraksts, kas pārstāv lietotāja-aģentu virknes, kurām nav atļauts apmeklēt " +"jebkuru lapu. Izmantojiet to sliktiem robotiem / rāpuļprogrammām. Tas tiek " +"izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. " +"Starpprogrammatūra)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "Noklusējums: “django.core.mail.backends.smtp.EmailBackend”. Backend, ko izmanto e-pasta sūtīšanai." +msgstr "" +"Noklusējums: “django.core.mail.backends.smtp.EmailBackend”. Backend, ko " +"izmanto e-pasta sūtīšanai." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Noklusējums: “localhost”. Hosts, ko izmanto e-pasta sūtīšanai." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "Noklusējums: '' (Tukša virkne). Parole, ko izmantot SMTP serverim, kas definēts vietnē EMAIL_HOST. Šis iestatījums tiek izmantots kopā ar EMAIL_HOST_USER autentificējot SMTP serveri. Ja kāds no šiem iestatījumiem ir tukšs, Django neveic autentifikāciju." +msgstr "" +"Noklusējums: '' (Tukša virkne). Parole, ko izmantot SMTP serverim, " +"kas definēts vietnē EMAIL_HOST. Šis iestatījums tiek izmantots kopā ar " +"EMAIL_HOST_USER autentificējot SMTP serveri. Ja kāds no šiem iestatījumiem " +"ir tukšs, Django neveic autentifikāciju." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "Noklusējums: '' (Tukša virkne). Lietotājvārds, ko izmantot SMTP serverim, kas definēts pakalpojumā EMAIL_HOST. Ja tukšs, Django neizmēģinās autentifikāciju." +msgstr "" +"Noklusējums: '' (Tukša virkne). Lietotājvārds, ko izmantot SMTP " +"serverim, kas definēts pakalpojumā EMAIL_HOST. Ja tukšs, Django neizmēģinās " +"autentifikāciju." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "Noklusējums: 25. Portu, ko izmantot SMTP serverim, kas definēts EMAIL_HOST." +msgstr "" +"Noklusējums: 25. Portu, ko izmantot SMTP serverim, kas definēts EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "Noklusējums: nav. Norāda taimautu sekundēs, lai bloķētu darbības, piemēram, savienojuma mēģinājumu." +msgstr "" +"Noklusējums: nav. Norāda taimautu sekundēs, lai bloķētu darbības, piemēram, " +"savienojuma mēģinājumu." -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "Noklusējums: False. Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti 587. portā. Ja rodas savienojumi ar kabeļiem, skatiet netiešo TLS iestatījumu EMAIL_USE_SSL." +msgstr "" +"Noklusējums: False. Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP " +"serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti 587. portā. " +"Ja rodas savienojumi ar kabeļiem, skatiet netiešo TLS iestatījumu " +"EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -474,69 +590,97 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "Noklusējums: False. Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu EMAIL_USE_TLS. Ņemiet vērā, ka EMAIL_USE_TLS / EMAIL_USE_SSL ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." +msgstr "" +"Noklusējums: False. Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS " +"(drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS " +"savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas " +"problēmas, skatiet skaidru TLS iestatījumu EMAIL_USE_TLS. Ņemiet vērā, ka " +"EMAIL_USE_TLS / EMAIL_USE_SSL ir savstarpēji izslēdzoši, tāpēc tikai vienu " +"no šiem iestatījumiem iestatiet uz True." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums (baitos), ko augšupielāde būs pirms straumēšanas datņu sistēmā. Papildinformāciju skatiet sadaļā Failu pārvaldīšana. Skatiet arī DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums (baitos), ko " +"augšupielāde būs pirms straumēšanas datņu sistēmā. Papildinformāciju skatiet " +"sadaļā Failu pārvaldīšana. Skatiet arī DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Saraksts ar virknēm, kas apzīmē visas programmas, kas ir iespējotas šajā Django instalācijā. Katrai virknei vajadzētu būt punktveida Python ceļam uz: lietojumprogrammas konfigurācijas klasi (vēlamo) vai paketi, kurā ir lietojumprogramma." - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "Noklusējums: '/ accounts / login /' URL, kurā pieprasījumi tiek novirzīti, lai pieteiktos, īpaši, ja izmantojat login_required () dekoratoru. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." +msgstr "" +"Noklusējums: '/ accounts / login /' URL, kurā pieprasījumi tiek " +"novirzīti, lai pieteiktos, īpaši, ja izmantojat login_required () " +"dekoratoru. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var " +"izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL " +"divās vietās (iestatījumi un URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "Noklusējums: '/ accounts / profile /' URL, kurā pieprasījumi tiek novirzīti pēc pieteikšanās brīdī, kad skats par ieguldījumu.auth.login nesaņem nākamo parametru. To izmanto, piemēram, login_required () dekorētājs. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." +msgstr "" +"Noklusējums: '/ accounts / profile /' URL, kurā pieprasījumi tiek " +"novirzīti pēc pieteikšanās brīdī, kad skats par ieguldījumu.auth.login " +"nesaņem nākamo parametru. To izmanto, piemēram, login_required () " +"dekorētājs. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var " +"izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL " +"divās vietās (iestatījumi un URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "Noklusējums: nav. URL, kurā pieprasījumi tiek novirzīti pēc tam, kad lietotājs ir pieteicies, izmantojot LogoutView (ja skats nesaņem nākamo lapu argumentu). Ja nav, netiks veikta novirzīšana un tiks atteikts logout skats. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." +msgstr "" +"Noklusējums: nav. URL, kurā pieprasījumi tiek novirzīti pēc tam, kad " +"lietotājs ir pieteicies, izmantojot LogoutView (ja skats nesaņem nākamo lapu " +"argumentu). Ja nav, netiks veikta novirzīšana un tiks atteikts logout skats. " +"Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai " +"samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās " +"(iestatījumi un URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "IP adrešu saraksts kā virknes, kas: Ļauj atkļūdošanas () konteksta procesoram pievienot dažus mainīgos veidnes kontekstam. Var izmantot admindocs grāmatzīmes, pat ja nav pieteicies kā personāla lietotājs. Tiek atzīmēti kā "iekšējie" (atšķirībā no "EXTERNAL") AdminEmailHandler e-pastos." +msgstr "" +"IP adrešu saraksts kā virknes, kas: Ļauj atkļūdošanas () konteksta " +"procesoram pievienot dažus mainīgos veidnes kontekstam. Var izmantot " +"admindocs grāmatzīmes, pat ja nav pieteicies kā personāla lietotājs. Tiek " +"atzīmēti kā "iekšējie" (atšķirībā no "EXTERNAL") " +"AdminEmailHandler e-pastos." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "Visu pieejamo valodu saraksts. Sarakstā ir iekļauts divu ierakstu saraksts (valodas kods, valodas nosaukums), piemēram, ('ja', 'japāņu'). Tas norāda, kuras valodas ir pieejamas valodas izvēlei. Parasti pietiek ar noklusējuma vērtību. Iestatiet šo iestatījumu tikai tad, ja vēlaties ierobežot valodu izvēli ar Django sniegto valodu apakškopu." +msgstr "" +"Visu pieejamo valodu saraksts. Sarakstā ir iekļauts divu ierakstu saraksts " +"(valodas kods, valodas nosaukums), piemēram, ('ja', '" +"japāņu'). Tas norāda, kuras valodas ir pieejamas valodas izvēlei. " +"Parasti pietiek ar noklusējuma vērtību. Iestatiet šo iestatījumu tikai tad, " +"ja vēlaties ierobežot valodu izvēli ar Django sniegto valodu apakškopu." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -546,9 +690,17 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "Stringi, kas attēlo šīs instalācijas valodas kodu. Tam jābūt standarta valodas ID formātā. Piemēram, ASV angļu valoda ir "en-us". Tas kalpo diviem mērķiem: ja lokālā starpprogrammatūra netiek izmantota, tā nolemj, kurš tulkojums tiek nodrošināts visiem lietotājiem. Ja lokalizācijas starpprogrammatūra ir aktīva, tā nodrošina rezerves valodu, ja lietotāja vēlamo valodu nevar noteikt vai vietne to neatbalsta. Tā arī nodrošina rezerves tulkojumu, ja konkrētā literārā tulkojums nav lietotāja vēlamajai valodai." +msgstr "" +"Stringi, kas attēlo šīs instalācijas valodas kodu. Tam jābūt standarta " +"valodas ID formātā. Piemēram, ASV angļu valoda ir "en-us". Tas " +"kalpo diviem mērķiem: ja lokālā starpprogrammatūra netiek izmantota, tā " +"nolemj, kurš tulkojums tiek nodrošināts visiem lietotājiem. Ja lokalizācijas " +"starpprogrammatūra ir aktīva, tā nodrošina rezerves valodu, ja lietotāja " +"vēlamo valodu nevar noteikt vai vietne to neatbalsta. Tā arī nodrošina " +"rezerves tulkojumu, ja konkrētā literārā tulkojums nav lietotāja vēlamajai " +"valodai." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,48 +708,63 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." -msgstr "Failu glabāšanas dzinējs, ko izmanto, lai savāktu statiskos failus ar kolektīvās pārvaldības komandu. Šajā iestatījumā definētais glabāšanas backend piemērs ir pieejams vietnē django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." +msgstr "" +"Failu glabāšanas dzinējs, ko izmanto, lai savāktu statiskos failus ar " +"kolektīvās pārvaldības komandu. Šajā iestatījumā definētais glabāšanas " +"backend piemērs ir pieejams vietnē django.contrib.staticfiles.storage." +"staticfiles_storage." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "Virkne, kas attēlo šīs instalācijas laika joslu. Ņemiet vērā, ka tas ne vienmēr ir servera laika josla. Piemēram, viens serveris var kalpot vairākām Django darbinātām vietnēm, katra ar atsevišķu laika joslu iestatījumu." +msgstr "" +"Virkne, kas attēlo šīs instalācijas laika joslu. Ņemiet vērā, ka tas ne " +"vienmēr ir servera laika josla. Piemēram, viens serveris var kalpot vairākām " +"Django darbinātām vietnēm, katra ar atsevišķu laika joslu iestatījumu." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "Pilns Python ceļš WSGI lietojumprogrammas objektam, ko izmantos Django iebūvētie serveri (piemēram, palaišanas serveris). Django-admin startproject vadības komanda izveidos vienkāršu wsgi.py failu ar tajā pieprasāmo lietojumprogrammu un norādīs šo iestatījumu uz šo programmu." +msgstr "" +"Pilns Python ceļš WSGI lietojumprogrammas objektam, ko izmantos Django " +"iebūvētie serveri (piemēram, palaišanas serveris). Django-admin startproject " +"vadības komanda izveidos vienkāršu wsgi.py failu ar tajā pieprasāmo " +"lietojumprogrammu un norādīs šo iestatījumu uz šo programmu." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Selerijas" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "Noklusējums: "amqp: //". Noklusējuma starpnieka URL. Tam ir jābūt URL:" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" +"Noklusējums: "amqp: //". Noklusējuma starpnieka URL. Tam ir jābūt " +"URL:" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" -msgstr "Noklusējums: pēc noklusējuma nav iespējots rezultāts. Backend, ko izmanto uzdevumu rezultātu (kapu pieminekļu) glabāšanai. Skatiet http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" +msgstr "" +"Noklusējums: pēc noklusējuma nav iespējots rezultāts. Backend, ko izmanto " +"uzdevumu rezultātu (kapu pieminekļu) glabāšanai. Skatiet http://docs." +"celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -630,7 +797,9 @@ msgstr "Izveidot" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Ievadiet derīgu “iekšējo nosaukumu”, kas sastāv no burtiem, cipariem un pasvītrojumiem." +msgstr "" +"Ievadiet derīgu “iekšējo nosaukumu”, kas sastāv no burtiem, cipariem un " +"pasvītrojumiem." #: views.py:31 msgid "About" @@ -674,7 +843,9 @@ msgstr "Nav pieejamas iestatīšanas opcijas." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "Neviens no rezultātiem šeit nenozīmē, ka nav nepieciešamo atļauju administratīvā uzdevuma veikšanai." +msgstr "" +"Neviens no rezultātiem šeit nenozīmē, ka nav nepieciešamo atļauju " +"administratīvā uzdevuma veikšanai." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po index 7b9ea82c00..4385092541 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -199,8 +200,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -318,76 +319,93 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van een database commit." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van " +"een database commit." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." +msgstr "" +"Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -396,29 +414,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -426,17 +444,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -444,31 +462,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -478,31 +496,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -511,17 +521,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -529,7 +539,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -538,7 +548,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -550,7 +560,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -558,22 +568,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -581,24 +591,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index 6bafbc3e09..86c81e99e9 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Daniel Winiarski , 2017 @@ -14,15 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -203,8 +206,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -322,76 +325,92 @@ msgstr "Włącz dla wszystkich aplikacji automatyczny zapis zdarzeń." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "Czas opóźnienia wykonania zadań zależnych od operacji na bazie danych." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Ścieżka do pliku dziennika śledzącego błędy w systemie produkcyjnym." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików." +msgstr "" +"Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie " +"plików." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -400,29 +419,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -430,17 +449,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -448,31 +467,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -482,31 +501,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -515,17 +526,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -533,7 +544,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -542,7 +553,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -554,7 +565,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -562,22 +573,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -585,24 +596,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 @@ -636,7 +646,8 @@ msgstr "Utwórz" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Podaj prawidłową 'internal name' składającą się z liter, liczb i podkreśleń." +msgstr "" +"Podaj prawidłową 'internal name' składającą się z liter, liczb i podkreśleń." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 2b81d89b5d..4942183748 100644 --- a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Roberto Rosario, 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -199,8 +200,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -318,76 +319,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -396,29 +411,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -426,17 +441,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -444,31 +459,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -478,31 +493,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -511,17 +518,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -529,7 +536,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -538,7 +545,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -550,7 +557,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -558,22 +565,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -581,24 +588,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po index ef102e3609..33430e1e3c 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -181,7 +182,10 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Sua base de dados de back-end está configurada para utilizar SQLite. SQLite deve ser usado apenas em ambientes de desenvolvimento e testes, não de produção." +msgstr "" +"Sua base de dados de back-end está configurada para utilizar SQLite. SQLite " +"deve ser usado apenas em ambientes de desenvolvimento e testes, não de " +"produção." #: literals.py:34 msgid "Days" @@ -198,25 +202,33 @@ msgstr "Minutos" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "Restringe os dados exportados para o app_label ou app_label.ModelName especificado." +msgstr "" +"Restringe os dados exportados para o app_label ou app_label.ModelName " +"especificado." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "Base de dados a partir da qual os dados serão exportados. A base de dados \"default\" será utilizada no caso de omissão." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"Base de dados a partir da qual os dados serão exportados. A base de dados " +"\"default\" será utilizada no caso de omissão." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "Base de dados para a qual os dados serão importados. A base de dados \"default\" será utilizada no caso de omissão." +msgstr "" +"Base de dados para a qual os dados serão importados. A base de dados " +"\"default\" será utilizada no caso de omissão." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "Força a conversão da base de dados ainda que a base de dados receptora não esteja vazia." +msgstr "" +"Força a conversão da base de dados ainda que a base de dados receptora não " +"esteja vazia." #: menus.py:10 msgid "System" @@ -321,157 +333,257 @@ msgstr "Ativar automaticamente o registro de todos os aplicativos." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Tempo para atrasar as tarefas de fundo que dependem da propagação de informação na base de dados." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Tempo para atrasar as tarefas de fundo que dependem da propagação de " +"informação na base de dados." -#: settings.py:32 +#: settings.py:33 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Uma lista de strings designando todas as aplicações que estão habilitadas " +"nesta instalação Django. Cada string deve ser um caminho de Python para: uma " +"classe de configuração da aplicação (preferencial); ou um pacote contendo " +"uma aplicação." + +#: settings.py:43 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"Uma lista de strings designando todas as aplicações que estão habilitadas " +"nesta instalação Django. Cada string deve ser um caminho de Python para: uma " +"classe de configuração da aplicação (preferencial); ou um pacote contendo " +"uma aplicação." + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Habilite registro de erros fora das capacidades do registro de erros do sistema." +msgstr "" +"Habilite registro de erros fora das capacidades do registro de erros do " +"sistema." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Caminho para o arquivo de registro que rastreará erros durante a produção." +msgstr "" +"Caminho para o arquivo de registro que rastreará erros durante a produção." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nome a ser mostrado no menu principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL da instalação ou homepage do projeto." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Um suporte de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." +msgstr "" +"Um suporte de armazenamento que todos os trabalhadores podem usar para " +"compartilhar arquivos." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "Uma lista de strings representando os nomes de host/domínio que este site pode utilizar. Esta é uma medida de segurança para prevenir ataques virtuais que utilizem Host header do protocolo HTTP, os quais são possíveis mesmo sob configurações aparentemente seguras de servidor web. Valores nesta lista podem ser nomes totalmente qualificados (por exemplo 'www.example.com'), que nestes casos coincidirão exatamente com as requisições do Host header (sem considerar maiúsculas ou minúsculas, não incluindo porta). Valores que começam com ponto podem ser usados como curingas para subdomínios: \".example.com\" coincidirá com \"example.com\", \"www.example.com\" e quaisquer outros subdomínios de \"example.com\". Um valor de '*' coincidirá com qualquer outro; nesse caso você será responsável porfornecer sua própria validação para o Host header (talvez num middleware; assim sendo o middleware deve ser listado primeiro em MIDDLEWARE)." +msgstr "" +"Uma lista de strings representando os nomes de host/domínio que este site " +"pode utilizar. Esta é uma medida de segurança para prevenir ataques " +"virtuais que utilizem Host header do protocolo HTTP, os quais são " +"possíveis mesmo sob configurações aparentemente seguras de servidor web. " +"Valores nesta lista podem ser nomes totalmente qualificados (por exemplo " +"'www.example.com'), que nestes casos coincidirão exatamente com as " +"requisições do Host header (sem considerar maiúsculas ou minúsculas, não " +"incluindo porta). Valores que começam com ponto podem ser usados como " +"curingas para subdomínios: \".example.com\" coincidirá com \"example.com\", " +"\"www.example.com\" e quaisquer outros subdomínios de \"example.com\". Um " +"valor de '*' coincidirá com qualquer outro; nesse caso você será responsável " +"porfornecer sua própria validação para o Host header (talvez num middleware; " +"assim sendo o middleware deve ser listado primeiro em MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." -msgstr "Quando indicado como Verdadeiro, caso a URL requisitada não coincida com os padrões na URLconf e não termine com uma barra, haverá um redirecionamento HTTP para a mesma URL com uma barra adicionada. Note que o redirecionamento pode fazer com que quaisquer dados submetidos numa requisição POST sejam perdidos. A configuração APPEND_SLASH é usada apenas se o CommonMiddleware estiver instalado (veja Middleware). Veja também PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +msgstr "" +"Quando indicado como Verdadeiro, caso a URL requisitada não coincida com os " +"padrões na URLconf e não termine com uma barra, haverá um redirecionamento " +"HTTP para a mesma URL com uma barra adicionada. Note que o redirecionamento " +"pode fazer com que quaisquer dados submetidos numa requisição POST sejam " +"perdidos. A configuração APPEND_SLASH é usada apenas se o CommonMiddleware " +"estiver instalado (veja Middleware). Veja também PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "Um dicionário contendo as configurações de todas as bases de dados a serem usadas com Django. Trata-se de um dicionário aninhado cujo conteúdo mapeia pseudônimos de bases de dados para um dicionário contendo as opções para cada base de dados específica. O parâmetro DATABASES deve configurar uma base de dados padrão; qualquer número de bases de dados adicionais deve ser especificado." +msgstr "" +"Um dicionário contendo as configurações de todas as bases de dados a serem " +"usadas com Django. Trata-se de um dicionário aninhado cujo conteúdo mapeia " +"pseudônimos de bases de dados para um dicionário contendo as opções para " +"cada base de dados específica. O parâmetro DATABASES deve configurar uma " +"base de dados padrão; qualquer número de bases de dados adicionais deve ser " +"especificado." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo em bytes que um corpo de requisição pode atingir antes que se gere uma Operação Suspeita (RequestDataTooBig). A checagem é feita quando se acessa request.body ou request.POST e é calculada em relação ao tamanho total da solicitação, excluindo qualquer arquivo de carga de dados. Você pode configurá-la para \"nenhuma\" para desativar a verificação. Aplicações para as quais se esperam publicações de tamanho muito grande devem ajustar esse parâmetro. A quantidade de dados da requisição está correlacionada com a quantidade de memória necessária para processá-la e povoar os dicionários GET e POST. As requisições grandes podem ser usadas como vetor de ataques de negação de serviço - \"denial-of-service\" - caso o parâmetro não seja preenchido. Dado que os servidores webnormalmente não realizam uma inspeção profunda das requisições, não é possível realizar uma verificação similar nesse nível. Veja também FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo em bytes que um corpo " +"de requisição pode atingir antes que se gere uma Operação Suspeita " +"(RequestDataTooBig). A checagem é feita quando se acessa request.body ou " +"request.POST e é calculada em relação ao tamanho total da solicitação, " +"excluindo qualquer arquivo de carga de dados. Você pode configurá-la para " +"\"nenhuma\" para desativar a verificação. Aplicações para as quais se " +"esperam publicações de tamanho muito grande devem ajustar esse parâmetro. A " +"quantidade de dados da requisição está correlacionada com a quantidade de " +"memória necessária para processá-la e povoar os dicionários GET e POST. As " +"requisições grandes podem ser usadas como vetor de ataques de negação de " +"serviço - \"denial-of-service\" - caso o parâmetro não seja preenchido. Dado " +"que os servidores webnormalmente não realizam uma inspeção profunda das " +"requisições, não é possível realizar uma verificação similar nesse nível. " +"Veja também FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "Valor padrão: [] (Lista vazia). Lista de objetos de expressões regulares compilados representando strings de User-Agent que não tem permissão para visitar nenhuma página em todo o sistema. Use contra maus robôs/rastradores. Este parâmetro só é usado com o CommonMiddleware instalado (veja Middleware)." +msgstr "" +"Valor padrão: [] (Lista vazia). Lista de objetos de expressões regulares " +"compilados representando strings de User-Agent que não tem permissão para " +"visitar nenhuma página em todo o sistema. Use contra maus robôs/rastradores. " +"Este parâmetro só é usado com o CommonMiddleware instalado (veja Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "Valor padrão: 'django.core.mail.backends.smtp.EmailBackend'. O back-end usado para enviar e-mails." +msgstr "" +"Valor padrão: 'django.core.mail.backends.smtp.EmailBackend'. O back-end " +"usado para enviar e-mails." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Valor padrão: 'localhost'. O host usado para enviar e-mail." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "Valor padrão: '' (String vazia). Senha utilizada para o servidor SMTP definido em EMAIL_HOST. Este parâmetro é usado junto ao EMAIL_HOST_USER durante a autenticação no servidor SMTP. Se qualquer um desses parâmetros estiver vazio, Django não tentará a autenticação." +msgstr "" +"Valor padrão: '' (String vazia). Senha utilizada para o servidor SMTP " +"definido em EMAIL_HOST. Este parâmetro é usado junto ao EMAIL_HOST_USER " +"durante a autenticação no servidor SMTP. Se qualquer um desses parâmetros " +"estiver vazio, Django não tentará a autenticação." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "Valor padrão '' (String vazia). Nome de usuário utilizado para o servidor SMTP definido em EMAIL_HOST. Se estiver vazio, Django não tentará a autenticação." +msgstr "" +"Valor padrão '' (String vazia). Nome de usuário utilizado para o servidor " +"SMTP definido em EMAIL_HOST. Se estiver vazio, Django não tentará a " +"autenticação." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "Valor padrão: 25. Porta usada para o servidor SMTP definido em EMAIL_HOST." +msgstr "" +"Valor padrão: 25. Porta usada para o servidor SMTP definido em EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "Valor padrão: Nenhum. Especifica um tempo de espera em segundos para operações de bloqueio, como tentativas de conexão." +msgstr "" +"Valor padrão: Nenhum. Especifica um tempo de espera em segundos para " +"operações de bloqueio, como tentativas de conexão." -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "Valor padrão: Falso. Define se deve ser utilizada uma conexão TLS (segura) quando se comunica com o servidor SMTP. Isto é usado para conexões explícitas de TLS, geralmente na porta 587. Se você está experimentando conexões suspensas, consulte o parâmetro de TLS implícita EMAIL_USE_SSL." +msgstr "" +"Valor padrão: Falso. Define se deve ser utilizada uma conexão TLS (segura) " +"quando se comunica com o servidor SMTP. Isto é usado para conexões " +"explícitas de TLS, geralmente na porta 587. Se você está experimentando " +"conexões suspensas, consulte o parâmetro de TLS implícita EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -479,52 +591,66 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "Valor padrão: Falso. Define se deve ser utilizada uma conexão implícita TLS (segura) ao comunicar-se com o servidor SMTP. Na maior parte da documentação de e-mail este tipo de conexão TLS é conhecida como SSL. Geralmente é usada a porta 465. Se você está experimentando problemas, veja o parâmetro de TSL explícita EMAIL_USE_TLS. Tenha em mente que EMAIL_USE_TLS / EMAIL_USE_SSL são mutuamente excludentes, razão pela qual apenas um dos parâmetros pode ser Verdadeiro." +msgstr "" +"Valor padrão: Falso. Define se deve ser utilizada uma conexão implícita TLS " +"(segura) ao comunicar-se com o servidor SMTP. Na maior parte da documentação " +"de e-mail este tipo de conexão TLS é conhecida como SSL. Geralmente é usada " +"a porta 465. Se você está experimentando problemas, veja o parâmetro de TSL " +"explícita EMAIL_USE_TLS. Tenha em mente que EMAIL_USE_TLS / EMAIL_USE_SSL " +"são mutuamente excludentes, razão pela qual apenas um dos parâmetros pode " +"ser Verdadeiro." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo (em bytes) que um upload terá antes de ser transmitida ao sistema de arquivos. Veja Administração de arquivos para detalhes. Veja ainda DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo (em bytes) que um " +"upload terá antes de ser transmitida ao sistema de arquivos. Veja " +"Administração de arquivos para detalhes. Veja ainda " +"DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Uma lista de strings designando todas as aplicações que estão habilitadas nesta instalação Django. Cada string deve ser um caminho de Python para: uma classe de configuração da aplicação (preferencial); ou um pacote contendo uma aplicação." - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "Valor padrão: '/accounts/login/' A URL onde as requisições são redirecionadas para iniciar a sessão, especialmente quando se utiliza o decorador login_required(). Este parâmetro também aceita padrões de URL que podem ser usados para reduzir a duplicação de configuração, uma vez que você não precisa definir a URL em dois lugares (parâmetros e URLconf)." +msgstr "" +"Valor padrão: '/accounts/login/' A URL onde as requisições são " +"redirecionadas para iniciar a sessão, especialmente quando se utiliza o " +"decorador login_required(). Este parâmetro também aceita padrões de URL que " +"podem ser usados para reduzir a duplicação de configuração, uma vez que você " +"não precisa definir a URL em dois lugares (parâmetros e URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "Valor padrão: '/accounts/profile/' A URL para onde são redirecionadas as requisições após o início da sessão quando a vista contrib.auth.login não obtêm o próximo parâmetro. Isto é utilizado pelo decorador login_required() , por exemplo. Este parâmetro também aceita padrões de URL que podem ser usados para reduzir a duplicação de configuração, uma vez que você não precisa definir a URL em dois lugares (parâmetros e URLconf)." +msgstr "" +"Valor padrão: '/accounts/profile/' A URL para onde são redirecionadas as " +"requisições após o início da sessão quando a vista contrib.auth.login não " +"obtêm o próximo parâmetro. Isto é utilizado pelo decorador " +"login_required() , por exemplo. Este parâmetro também aceita padrões de URL " +"que podem ser usados para reduzir a duplicação de configuração, uma vez que " +"você não precisa definir a URL em dois lugares (parâmetros e URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -532,7 +658,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -541,7 +667,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -553,7 +679,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -561,22 +687,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -584,25 +710,32 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "Valor padrão: \"amqp://\". URL do intermediário padrão. Deve ser uma URL em forma de: \"transport://userid:password@hostname:port/virtual_host\". Apenas a parte de esquema (transport://) é requerida, o resto é opcional e determina os valores padrão específicos de transportes." - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" +"Valor padrão: \"amqp://\". URL do intermediário padrão. Deve ser uma URL em " +"forma de: \"transport://userid:password@hostname:port/virtual_host\". Apenas " +"a parte de esquema (transport://) é requerida, o resto é opcional e " +"determina os valores padrão específicos de transportes." + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" -msgstr "Valor padrão: Sem back-end de resultado habilitado por padrão. O back-end usado para armazenar resultados de tarefas (tombstones). Consulte http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend. " +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" +msgstr "" +"Valor padrão: Sem back-end de resultado habilitado por padrão. O back-end " +"usado para armazenar resultados de tarefas (tombstones). Consulte http://" +"docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend. " #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -635,7 +768,8 @@ msgstr "Criar" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Insira um 'nome interno' válido que contenha letras, números e subtraços." +msgstr "" +"Insira um 'nome interno' válido que contenha letras, números e subtraços." #: views.py:31 msgid "About" @@ -679,7 +813,9 @@ msgstr "Não há opções de configuração disponíveis." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "Nenhum resultado aqui significa que o usuário não possui as permissões necessárias para realizar tarefas administrativas." +msgstr "" +"Nenhum resultado aqui significa que o usuário não possui as permissões " +"necessárias para realizar tarefas administrativas." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po index 79b515a600..0fd5641297 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -60,14 +62,20 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Selectați intrările pentru a fi eliminate. Țineți Control pentru a selecta mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai jos sau faceți dublu clic pe listă pentru a activa acțiunea." +msgstr "" +"Selectați intrările pentru a fi eliminate. Țineți Control pentru a selecta " +"mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai " +"jos sau faceți dublu clic pe listă pentru a activa acțiunea." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "Selectați intrările pentru a fi adăugate. Țineți Control pentru a selecta mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai jos sau faceți dublu clic pe listă pentru a activa acțiunea." +msgstr "" +"Selectați intrările pentru a fi adăugate. Țineți Control pentru a selecta " +"mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai " +"jos sau faceți dublu clic pe listă pentru a activa acțiunea." #: generics.py:287 msgid "Add all" @@ -171,13 +179,17 @@ msgstr "Unelte" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "Această caracteristică a fost depreciată și va fi eliminată într-o versiune viitoare." +msgstr "" +"Această caracteristică a fost depreciată și va fi eliminată într-o versiune " +"viitoare." #: literals.py:16 msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "Backendul bazei de date este setat să utilizeze SQLite. SQLite ar trebui folosit numai pentru dezvoltare și testare, nu pentru producție." +msgstr "" +"Backendul bazei de date este setat să utilizeze SQLite. SQLite ar trebui " +"folosit numai pentru dezvoltare și testare, nu pentru producție." #: literals.py:34 msgid "Days" @@ -194,25 +206,33 @@ msgstr "Minute" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "Restricționează datele care fac obiectul unui dumping la etichetele app_label sau app_label.ModelName specificate." +msgstr "" +"Restricționează datele care fac obiectul unui dumping la etichetele " +"app_label sau app_label.ModelName specificate." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "Baza de date din care vor fi exportate datele. Dacă este omisă, va fi utilizată baza de date numită \"default\" ." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"Baza de date din care vor fi exportate datele. Dacă este omisă, va fi " +"utilizată baza de date numită \"default\" ." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "Baza de date în care vor fi importate datele. Dacă este omisă, va fi utilizată baza de date numită \"default\"." +msgstr "" +"Baza de date în care vor fi importate datele. Dacă este omisă, va fi " +"utilizată baza de date numită \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "Forțați conversia bazei de date chiar dacă baza de date de primire nu este goală." +msgstr "" +"Forțați conversia bazei de date chiar dacă baza de date de primire nu este " +"goală." #: menus.py:10 msgid "System" @@ -317,157 +337,266 @@ msgstr "Activați juranlizarea automată la toate aplicațiile." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Timpul de întârziere pentru sarcini de fundal care depind de propagarea schimbărilor în baza de date." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Timpul de întârziere pentru sarcini de fundal care depind de propagarea " +"schimbărilor în baza de date." -#: settings.py:32 +#: settings.py:33 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." -msgstr "Numele afișării atașate ancorei de marcă din meniul principal. Aceasta este și perspectiva la care utilizatorii vor fi redirecționați după conectare." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"O listă de șiruri care indică toate aplicațiile activate în această " +"instalare Django. Fiecare șir ar trebui să fie o cale Python punctată la: o " +"clasă de configurare a aplicației (preferată) sau un pachet care conține o " +"aplicație." -#: settings.py:41 +#: settings.py:43 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"O listă de șiruri care indică toate aplicațiile activate în această " +"instalare Django. Fiecare șir ar trebui să fie o cale Python punctată la: o " +"clasă de configurare a aplicației (preferată) sau un pachet care conține o " +"aplicație." + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" +"Numele afișării atașate ancorei de marcă din meniul principal. Aceasta este " +"și perspectiva la care utilizatorii vor fi redirecționați după conectare." + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Activați înregistrarea erorilor în afara capabilităților de înregistrare a erorilor de sistem." +msgstr "" +"Activați înregistrarea erorilor în afara capabilităților de înregistrare a " +"erorilor de sistem." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Calea către fișierul jurnal care va urmări erorile în timpul producției." +msgstr "" +"Calea către fișierul jurnal care va urmări erorile în timpul producției." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Numele care urmează să fie afișat în meniul principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "Adresa URL a instalării sau a paginii de pornire a proiectului." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Un backend de stocare pe care toți lucrătorii îl pot folosi pentru partajarea fișierelor." +msgstr "" +"Un backend de stocare pe care toți lucrătorii îl pot folosi pentru " +"partajarea fișierelor." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "O listă de șiruri reprezentând numele gazdă / domenii pe care acest site le poate difuza. Aceasta este o măsură de securitate pentru a preveni atacurile de antet gazdă HTTP, care sunt posibile chiar și în cazul multor configurații aparent confortabile ale serverului web. Valorile din această listă pot fi nume calificate complet (de exemplu, \"www.example.com\"), caz în care acestea vor fi potrivite exact cu antetul gazdei gazdă (fără majuscule, fără a include portul). O valoare care începe cu o un punct poate fi folosită ca un wildcard subdomeniu: '.example.com' se va potrivi cu example.com, www.example.com și orice alt subdomeniu al example.com. O valoare de '*' se va potrivi cu orice; în acest caz, sunteți responsabil să vă asigurați validarea propriu-zisă a antetului Host (poate într-un middleware, dacă acest lucru trebuie să fie menționat mai întâi în MIDDLEWARE)." +msgstr "" +"O listă de șiruri reprezentând numele gazdă / domenii pe care acest site le " +"poate difuza. Aceasta este o măsură de securitate pentru a preveni atacurile " +"de antet gazdă HTTP, care sunt posibile chiar și în cazul multor " +"configurații aparent confortabile ale serverului web. Valorile din această " +"listă pot fi nume calificate complet (de exemplu, \"www.example.com\"), caz " +"în care acestea vor fi potrivite exact cu antetul gazdei gazdă (fără " +"majuscule, fără a include portul). O valoare care începe cu o un punct poate " +"fi folosită ca un wildcard subdomeniu: '.example.com' se va potrivi cu " +"example.com, www.example.com și orice alt subdomeniu al example.com. O " +"valoare de '*' se va potrivi cu orice; în acest caz, sunteți responsabil să " +"vă asigurați validarea propriu-zisă a antetului Host (poate într-un " +"middleware, dacă acest lucru trebuie să fie menționat mai întâi în " +"MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." -msgstr "Când este setat la True, dacă adresa URL a solicitării nu se potrivește cu niciunul dintre modelele din URLconf și nu se termină într-un / , redirecționarea HTTP se emite aceluiași URL cu / adăugat. Rețineți că redirecționarea poate duce la pierderea datelor transmise într-o solicitare POST. Setarea APPEND_SLASH este utilizată numai dacă este instalat CommonMiddleware (consultați Middleware). Consultați și PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +msgstr "" +"Când este setat la True, dacă adresa URL a solicitării nu se potrivește cu " +"niciunul dintre modelele din URLconf și nu se termină într-un / , " +"redirecționarea HTTP se emite aceluiași URL cu / adăugat. Rețineți că " +"redirecționarea poate duce la pierderea datelor transmise într-o solicitare " +"POST. Setarea APPEND_SLASH este utilizată numai dacă este instalat " +"CommonMiddleware (consultați Middleware). Consultați și PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "Lista de validatori folosită pentru a verifica puterea parolelor utilizatorului." +msgstr "" +"Lista de validatori folosită pentru a verifica puterea parolelor " +"utilizatorului." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "Un dicționar care conține setările pentru toate bazele de date care vor fi utilizate cu Django. Acesta este un dicționar imbricat al cărui conținut alcătuiește un alias de bază de date într-un dicționar care conține opțiunile pentru o bază de date individuală. Setarea DATABASES trebuie să configureze o bază de date implicită; poate fi specificat orice număr de baze de date adiționale." +msgstr "" +"Un dicționar care conține setările pentru toate bazele de date care vor fi " +"utilizate cu Django. Acesta este un dicționar imbricat al cărui conținut " +"alcătuiește un alias de bază de date într-un dicționar care conține " +"opțiunile pentru o bază de date individuală. Setarea DATABASES trebuie să " +"configureze o bază de date implicită; poate fi specificat orice număr de " +"baze de date adiționale." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă în octeți pe care un corp de solicitare ar putea fi înainte ca o SuspiciousOperation (RequestDataTooBig) să fie ridicată. Verificarea se face când se accesează request.body sau request.POST și se calculează în funcție de dimensiunea totală a solicitării, excluzând datele de încărcare a fișierelor. Puteți seta această opțiune la None pentru a dezactiva verificarea. Aplicațiile care sunt așteptate să primească posturi neobișnuit de mari trebuie să ajusteze această setare. Suma datelor solicitate este corelată cu cantitatea de memorie necesară pentru procesarea solicitării și cu conținutul dicționarelor GET și POST. Solicitările mari ar putea fi folosite ca vector de atac al refuzului de serviciu dacă nu sunt bifate. Întrucât serverele web nu efectuează în mod obișnuit o inspecție profundă a solicitărilor, nu este posibil să efectuați o verificare similară la acel nivel. Consultați și FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă în octeți pe care un " +"corp de solicitare ar putea fi înainte ca o SuspiciousOperation " +"(RequestDataTooBig) să fie ridicată. Verificarea se face când se accesează " +"request.body sau request.POST și se calculează în funcție de dimensiunea " +"totală a solicitării, excluzând datele de încărcare a fișierelor. Puteți " +"seta această opțiune la None pentru a dezactiva verificarea. Aplicațiile " +"care sunt așteptate să primească posturi neobișnuit de mari trebuie să " +"ajusteze această setare. Suma datelor solicitate este corelată cu cantitatea " +"de memorie necesară pentru procesarea solicitării și cu conținutul " +"dicționarelor GET și POST. Solicitările mari ar putea fi folosite ca vector " +"de atac al refuzului de serviciu dacă nu sunt bifate. Întrucât serverele web " +"nu efectuează în mod obișnuit o inspecție profundă a solicitărilor, nu este " +"posibil să efectuați o verificare similară la acel nivel. Consultați și " +"FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "Implicit: 'webmaster @ localhost' Adresa de e-mail implicită pentru a fi utilizată pentru diverse corespondențe automate de la administratorii site-ului. Aceasta nu include mesajele de eroare trimise ADMINS și MANAGERS; pentru asta, vezi SERVER_EMAIL." +msgstr "" +"Implicit: 'webmaster @ localhost' Adresa de e-mail implicită pentru a fi " +"utilizată pentru diverse corespondențe automate de la administratorii site-" +"ului. Aceasta nu include mesajele de eroare trimise ADMINS și MANAGERS; " +"pentru asta, vezi SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "Implicit: [] (Listă goală). Lista de obiecte de expresie obișnuită compilate care reprezintă șiruri de caractere ale utilizatorilor care nu au permisiunea de a vizita nicio pagină, la nivel de sistem. Utilizați acest lucru pentru roboți / crawlere rele. Acest lucru este folosit numai dacă este instalat CommonMiddleware (consultați Middleware)." +msgstr "" +"Implicit: [] (Listă goală). Lista de obiecte de expresie obișnuită compilate " +"care reprezintă șiruri de caractere ale utilizatorilor care nu au " +"permisiunea de a vizita nicio pagină, la nivel de sistem. Utilizați acest " +"lucru pentru roboți / crawlere rele. Acest lucru este folosit numai dacă " +"este instalat CommonMiddleware (consultați Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "Implicit: 'django.core.mail.backends.smtp.EmailBackend'. Backend-ul de utilizat pentru trimiterea de e-mailuri." +msgstr "" +"Implicit: 'django.core.mail.backends.smtp.EmailBackend'. Backend-ul de " +"utilizat pentru trimiterea de e-mailuri." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." -msgstr "Implicit: \"localhost\". Gazda de utilizat pentru trimiterea de e-mailuri." +msgstr "" +"Implicit: \"localhost\". Gazda de utilizat pentru trimiterea de e-mailuri." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "Implicit: '' (Șir gol). Parolă de utilizat pentru serverul SMTP definit în EMAIL_HOST. Această setare este utilizată împreună cu EMAIL_HOST_USER atunci când se autentifică la serverul SMTP. Dacă oricare dintre aceste setări este goală, Django nu va încerca autentificarea." +msgstr "" +"Implicit: '' (Șir gol). Parolă de utilizat pentru serverul SMTP definit în " +"EMAIL_HOST. Această setare este utilizată împreună cu EMAIL_HOST_USER atunci " +"când se autentifică la serverul SMTP. Dacă oricare dintre aceste setări este " +"goală, Django nu va încerca autentificarea." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "Implicit: '' (Șir gol). Utilizator de utilizat pentru serverul SMTP definit în EMAIL_HOST. Dacă este gol, Django nu va încerca autentificarea." +msgstr "" +"Implicit: '' (Șir gol). Utilizator de utilizat pentru serverul SMTP definit " +"în EMAIL_HOST. Dacă este gol, Django nu va încerca autentificarea." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "Implicit: 25. Portul de utilizat pentru serverul SMTP definit în EMAIL_HOST." +msgstr "" +"Implicit: 25. Portul de utilizat pentru serverul SMTP definit în EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "Implicit: Niciuna. Specifică un interval de timp în secunde pentru blocarea operațiilor, cum ar fi încercarea de conectare." +msgstr "" +"Implicit: Niciuna. Specifică un interval de timp în secunde pentru blocarea " +"operațiilor, cum ar fi încercarea de conectare." -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "Implicit: Fals. Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în general pe portul 587. Dacă întâmpinați conexiuni suspendate, consultați setarea implicită TLS EMAIL_USE_SSL." +msgstr "" +"Implicit: Fals. Dacă să utilizați o conexiune TLS (securizată) atunci când " +"vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS " +"explicite, în general pe portul 587. Dacă întâmpinați conexiuni suspendate, " +"consultați setarea implicită TLS EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,69 +604,102 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "Implicit: Fals. Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de conexiune TLS este denumit SSL. În general, este folosit pe portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS EMAIL_USE_TLS. Rețineți că EMAIL_USE_TLS / EMAIL_USE_SSL se exclud reciproc, deci setați numai una dintre aceste setări la True." +msgstr "" +"Implicit: Fals. Dacă să utilizați o conexiune implicită TLS (securizată) " +"atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, " +"acest tip de conexiune TLS este denumit SSL. În general, este folosit pe " +"portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS " +"EMAIL_USE_TLS. Rețineți că EMAIL_USE_TLS / EMAIL_USE_SSL se exclud reciproc, " +"deci setați numai una dintre aceste setări la True." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă (în octeți) pe care o încărcare va declanșa transmiterea în flux la sistemul de fișiere. Consultați Gestionarea fișierelor pentru detalii. Consultați și DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "" +"Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă (în octeți) pe care o " +"încărcare va declanșa transmiterea în flux la sistemul de fișiere. " +"Consultați Gestionarea fișierelor pentru detalii. Consultați și " +"DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "O listă de șiruri care indică toate aplicațiile activate în această instalare Django. Fiecare șir ar trebui să fie o cale Python punctată la: o clasă de configurare a aplicației (preferată) sau un pachet care conține o aplicație." - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "Implicit: '/ accounts / login /' URL-ul în cazul în care cererile sunt redirecționate pentru autentificare, mai ales când utilizați decoratorul login_required (). Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." +msgstr "" +"Implicit: '/ accounts / login /' URL-ul în cazul în care cererile sunt " +"redirecționate pentru autentificare, mai ales când utilizați decoratorul " +"login_required (). Această setare acceptă, de asemenea, șabloanele URL " +"denumite care pot fi utilizate pentru a reduce duplicarea configurației, " +"deoarece nu trebuie să definiți adresa URL în două locuri (setări și " +"URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "Implicit: '/ accounts / profile /' Adresa URL unde cererile sunt redirecționate după autentificare când vizualizarea contrib.auth.login nu primește niciun alt parametru. Acest lucru este folosit, de exemplu, de decoratorul login_required (). Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." +msgstr "" +"Implicit: '/ accounts / profile /' Adresa URL unde cererile sunt " +"redirecționate după autentificare când vizualizarea contrib.auth.login nu " +"primește niciun alt parametru. Acest lucru este folosit, de exemplu, de " +"decoratorul login_required (). Această setare acceptă, de asemenea, " +"șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea " +"configurației, deoarece nu trebuie să definiți adresa URL în două locuri " +"(setări și URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "Implicit: Niciuna. Adresa URL unde cererile sunt redirecționate după ce un utilizator se deconectează utilizând LogoutView (dacă vizualizarea nu are un argument next_page). Dacă nu există, nu va fi efectuată nicio redirecționare și va fi redată vizualizarea logout. Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." +msgstr "" +"Implicit: Niciuna. Adresa URL unde cererile sunt redirecționate după ce un " +"utilizator se deconectează utilizând LogoutView (dacă vizualizarea nu are un " +"argument next_page). Dacă nu există, nu va fi efectuată nicio redirecționare " +"și va fi redată vizualizarea logout. Această setare acceptă, de asemenea, " +"șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea " +"configurației, deoarece nu trebuie să definiți adresa URL în două locuri " +"(setări și URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "O listă de adrese IP, ca șiruri de caractere, care: Permite procesorului de context debug () să adauge unele variabile în contextul șablonului. Poate utiliza marcajele admindocs chiar dacă nu este logat ca personal utilizator. Sunt marcate ca \"interne\" (spre deosebire de \"EXTERNAL\") în e-mailurile AdminEmailHandler." +msgstr "" +"O listă de adrese IP, ca șiruri de caractere, care: Permite procesorului de " +"context debug () să adauge unele variabile în contextul șablonului. Poate " +"utiliza marcajele admindocs chiar dacă nu este logat ca personal utilizator. " +"Sunt marcate ca \"interne\" (spre deosebire de \"EXTERNAL\") în e-mailurile " +"AdminEmailHandler." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "O listă a tuturor limbilor disponibile. Lista este o listă cu două perechi în format (codul limbii, numele limbii), de exemplu, ('ja', 'japoneză'). Aceasta specifică limbile disponibile pentru selectarea limbii. În general, valoarea implicită ar trebui să fie suficientă. Setați această setare numai dacă doriți să restricționați selectarea limbii pe un subset de limbi furnizate de Django." +msgstr "" +"O listă a tuturor limbilor disponibile. Lista este o listă cu două perechi " +"în format (codul limbii, numele limbii), de exemplu, ('ja', 'japoneză'). " +"Aceasta specifică limbile disponibile pentru selectarea limbii. În general, " +"valoarea implicită ar trebui să fie suficientă. Setați această setare numai " +"dacă doriți să restricționați selectarea limbii pe un subset de limbi " +"furnizate de Django." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,9 +709,18 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "Un șir reprezentând codul de limbă pentru această instalare. Aceasta ar trebui să fie în format standard de limbă. De exemplu, engleza americană este 'en-us'. Acesta servește două scopuri: dacă middleware-ul locale nu este utilizat, acesta decide ce traducere este servită tuturor utilizatorilor. Dacă middleware-ul local este activ, acesta oferă o limbă de rezervă în cazul în care limba preferată a utilizatorului nu poate fi determinată sau nu este acceptată de site-ul web. De asemenea, oferă traducerea de rezervă atunci când o traducere pentru un cuvânt dat nu există pentru limba preferată a utilizatorului." +msgstr "" +"Un șir reprezentând codul de limbă pentru această instalare. Aceasta ar " +"trebui să fie în format standard de limbă. De exemplu, engleza americană " +"este 'en-us'. Acesta servește două scopuri: dacă middleware-ul locale nu " +"este utilizat, acesta decide ce traducere este servită tuturor " +"utilizatorilor. Dacă middleware-ul local este activ, acesta oferă o limbă de " +"rezervă în cazul în care limba preferată a utilizatorului nu poate fi " +"determinată sau nu este acceptată de site-ul web. De asemenea, oferă " +"traducerea de rezervă atunci când o traducere pentru un cuvânt dat nu există " +"pentru limba preferată a utilizatorului." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,48 +728,67 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." -msgstr "Motorul de stocare a fișierelor utilizat la colectarea fișierelor statice cu comanda de gestionare collectstatic. O instanță gata de utilizare a backend-ului de stocare definită în această setare poate fi găsită la django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." +msgstr "" +"Motorul de stocare a fișierelor utilizat la colectarea fișierelor statice cu " +"comanda de gestionare collectstatic. O instanță gata de utilizare a backend-" +"ului de stocare definită în această setare poate fi găsită la django.contrib." +"staticfiles.storage.staticfiles_storage." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "Un șir reprezentând fusul orar pentru această instalare. Rețineți că acest lucru nu este neapărat fusul orar al serverului. De exemplu, un server poate servi mai multe site-uri cu putere Django, fiecare având o setare de fus orar separată." +msgstr "" +"Un șir reprezentând fusul orar pentru această instalare. Rețineți că acest " +"lucru nu este neapărat fusul orar al serverului. De exemplu, un server poate " +"servi mai multe site-uri cu putere Django, fiecare având o setare de fus " +"orar separată." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "Calea completă Python a obiectului aplicației WSGI pe care o vor utiliza serverele încorporate Django (de exemplu, runserver). Comanda django-admin startproject de administrare va crea un simplu fișier wsgi.py cu o aplicație care poate fi apelată în ea și va indica această setare acelei aplicații." +msgstr "" +"Calea completă Python a obiectului aplicației WSGI pe care o vor utiliza " +"serverele încorporate Django (de exemplu, runserver). Comanda django-admin " +"startproject de administrare va crea un simplu fișier wsgi.py cu o aplicație " +"care poate fi apelată în ea și va indica această setare acelei aplicații." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "Implicit: \"amqp: //\". Adresa URL a brokerului implicit. Aceasta trebuie să fie o adresă URL sub forma: transport://userid:password@hostname:port/virtual_host Este necesar doar partea sistemului (transport: //), restul este opțional și are implicit valorile implicite pentru transport." - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" +"Implicit: \"amqp: //\". Adresa URL a brokerului implicit. Aceasta trebuie să " +"fie o adresă URL sub forma: transport://userid:password@hostname:port/" +"virtual_host Este necesar doar partea sistemului (transport: //), restul " +"este opțional și are implicit valorile implicite pentru transport." + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" +msgstr "" +"Implicit: niciun rezultat de backend activat în mod implicit. Backend-ul " +"folosit pentru a stoca rezultatele sarcinilor (pietre funerare). Consultați " "http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" -msgstr "Implicit: niciun rezultat de backend activat în mod implicit. Backend-ul folosit pentru a stoca rezultatele sarcinilor (pietre funerare). Consultați http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend " +"backend " #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -631,7 +821,9 @@ msgstr "Creează" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Introduceți un \"nume intern\" valabil format din litere, numere și subliniere." +msgstr "" +"Introduceți un \"nume intern\" valabil format din litere, numere și " +"subliniere." #: views.py:31 msgid "About" @@ -675,7 +867,9 @@ msgstr "Nu sunt disponibile opțiuni de configurare." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "Niciun rezultat aici înseamnă că nu aveți permisiunile necesare pentru a efectua o sarcină administrativă." +msgstr "" +"Niciun rezultat aici înseamnă că nu aveți permisiunile necesare pentru a " +"efectua o sarcină administrativă." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 54bfb0812b..3cee0cac91 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -177,7 +180,9 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "В качестве базы данных задан SQLite. SQLite не должен использоваться в рабочем окружении, только для разработки и тестирования!" +msgstr "" +"В качестве базы данных задан SQLite. SQLite не должен использоваться в " +"рабочем окружении, только для разработки и тестирования!" #: literals.py:34 msgid "Days" @@ -198,15 +203,19 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." -msgstr "База данных из которой данные будет экспортированы. Будет использована база данных с именем \"default\" если оставить пустым." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." +msgstr "" +"База данных из которой данные будет экспортированы. Будет использована база " +"данных с именем \"default\" если оставить пустым." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "База данных в которую данные будут импортированы. Будет использована база данных с именем \"default\" если оставить пустым." +msgstr "" +"База данных в которую данные будут импортированы. Будет использована база " +"данных с именем \"default\" если оставить пустым." #: management/commands/convertdb.py:61 msgid "" @@ -313,80 +322,99 @@ msgstr "" #: settings.py:19 msgid "Automatically enable logging to all apps." -msgstr "Автоматически разрешать всем установленным приложениям делать записи в журнале." +msgstr "" +"Автоматически разрешать всем установленным приложениям делать записи в " +"журнале." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Время задержки фоновых задач зависящих от процесса распространения записанных в БД данных." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Время задержки фоновых задач зависящих от процесса распространения " +"записанных в БД данных." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Бекенд хранения, который каждый может использовать для хранения файлов." +msgstr "" +"Бекенд хранения, который каждый может использовать для хранения файлов." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,29 +423,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +453,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,31 +471,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,31 +505,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,17 +530,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +548,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +557,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +569,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,22 +577,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,24 +600,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po index d724f07103..2ce54bc8f9 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -196,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -315,76 +317,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,29 +409,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,31 +457,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,31 +491,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,17 +516,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,22 +563,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,24 +586,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po index 55602e04a8..0900d91595 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -198,8 +199,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,76 +318,93 @@ msgstr "Tüm uygulamalara günlük kaydını otomatik olarak etkinleştirin." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Veritabanına bağımlı arka plan görevlerini geciktirme zamanını oluşturmak için kullanılır." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Veritabanına bağımlı arka plan görevlerini geciktirme zamanını oluşturmak " +"için kullanılır." -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Üretim sırasında hataları izleyecek olan günlük dosyasının yolu." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Tüm çalışanların dosyaları paylaşmak için kullanabileceği bir depolama alanı." +msgstr "" +"Tüm çalışanların dosyaları paylaşmak için kullanabileceği bir depolama alanı." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,29 +413,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +443,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,31 +461,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,31 +495,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,17 +520,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +538,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +547,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +559,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,22 +567,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,24 +590,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 @@ -631,7 +640,8 @@ msgstr "Oluştur" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Harfler, rakamlar ve alt çizgilerden oluşan geçerli bir 'dahili ad' girin." +msgstr "" +"Harfler, rakamlar ve alt çizgilerden oluşan geçerli bir 'dahili ad' girin." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po index 1ace83ece8..5a4c4d9dbe 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -197,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -316,76 +317,90 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." msgstr "" -#: settings.py:41 +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." +msgstr "" + +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,29 +409,29 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,31 +457,31 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,31 +491,23 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,17 +516,17 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,22 +563,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,24 +586,23 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po index d910d774ea..31b5fb66e5 100644 --- a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -176,7 +177,8 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "您的数据库后端设置为使用SQLite。 SQLite只应用于开发和测试,而不能用于生产。" +msgstr "" +"您的数据库后端设置为使用SQLite。 SQLite只应用于开发和测试,而不能用于生产。" #: literals.py:34 msgid "Days" @@ -197,8 +199,8 @@ msgstr "将转储数据限制为指定的app_label或app_label.ModelName。" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named" -" \"default\" will be used." +"The database from which data will be exported. If omitted the database named " +"\"default\" will be used." msgstr "将从中导出数据的数据库。如果省略,将使用名为“default”的数据库。" #: management/commands/convertdb.py:54 @@ -316,157 +318,220 @@ msgstr "自动启用所有应用程序的日志记录。" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "是时候延迟依赖于数据库提交传播的后台任务了。" -#: settings.py:32 +#: settings.py:33 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also" -" the view to which users will be redirected after log in." +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"指定在此Django安装中启用的所有应用程序的字符串列表。每个字符串应该是一个虚线" +"的Python路径:应用程序配置类(首选)或包含应用程序的包。" + +#: settings.py:43 +#, fuzzy +#| msgid "" +#| "A list of strings designating all applications that are enabled in this " +#| "Django installation. Each string should be a dotted Python path to: an " +#| "application configuration class (preferred), or a package containing an " +#| "application." +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" +"指定在此Django安装中启用的所有应用程序的字符串列表。每个字符串应该是一个虚线" +"的Python路径:应用程序配置类(首选)或包含应用程序的包。" + +#: settings.py:52 +msgid "" +"Name of the view attached to the brand anchor in the main menu. This is also " +"the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "在系统错误日志记录功能之外启用错误日志记录。" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "日志文件的路径,用于跟踪生产期间的错误。" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "要在主菜单中显示的名称。" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "项目的安装或主页的URL。" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "所有工作人员可用于共享文件的存储后端。" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which" -" are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which " +"are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly" -" (case-insensitive, not including port). A value beginning with a period can" -" be used as a subdomain wildcard: '.example.com' will match example.com, " -"www.example.com, and any other subdomain of example.com. A value of '*' will" -" match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly " +"(case-insensitive, not including port). A value beginning with a period can " +"be used as a subdomain wildcard: '.example.com' will match example.com, www." +"example.com, and any other subdomain of example.com. A value of '*' will " +"match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "表示此站点可以提供的主机/域名的字符串列表。这是一种防止HTTP主机头攻击的安全措施,即使在许多看似安全的Web服务器配置下也是如此。此列表中的值可以是完全限定名称(例如“www.example.com”),在这种情况下,它们将与请求的主机标头完全匹配(不区分大小写,不包括端口)。以句点开头的值可用作子域通配符:'.example.com'将匹配example.com,www.example.com和example.com的任何其他子域。值'*'将匹配任何内容;在这种情况下,您有责任提供自己的主机头验证(可能在中间件中;如果是这样,则必须首先在MIDDLEWARE中列出此中间件)。" +msgstr "" +"表示此站点可以提供的主机/域名的字符串列表。这是一种防止HTTP主机头攻击的安全措" +"施,即使在许多看似安全的Web服务器配置下也是如此。此列表中的值可以是完全限定名" +"称(例如“www.example.com”),在这种情况下,它们将与请求的主机标头完全匹配(不" +"区分大小写,不包括端口)。以句点开头的值可用作子域通配符:'.example.com'将匹" +"配example.com,www.example.com和example.com的任何其他子域。值'*'将匹配任何内" +"容;在这种情况下,您有责任提供自己的主机头验证(可能在中间件中;如果是这样,则" +"必须首先在MIDDLEWARE中列出此中间件)。" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" -" same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " +"same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also " -"PREPEND_WWW." -msgstr "设置为True时,如果请求URL与URLconf中的任何模式都不匹配,并且不以斜杠结尾,则会向相同的URL发出HTTP重定向,并附加斜杠。请注意,重定向可能导致POST请求中提交的任何数据丢失。 APPEND_SLASH设置仅在安装了CommonMiddleware时使用(请参阅Middleware)。另见PREPEND_WWW。" +"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +msgstr "" +"设置为True时,如果请求URL与URLconf中的任何模式都不匹配,并且不以斜杠结尾,则" +"会向相同的URL发出HTTP重定向,并附加斜杠。请注意,重定向可能导致POST请求中提交" +"的任何数据丢失。 APPEND_SLASH设置仅在安装了CommonMiddleware时使用(请参阅" +"Middleware)。另见PREPEND_WWW。" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "包含要与Django一起使用的所有数据库的设置的字典。它是一个嵌套字典,其内容将数据库别名映射到包含单个数据库选项的字典。 DATABASES设置必须配置默认数据库;还可以指定任意数量的附加数据库。" +msgstr "" +"包含要与Django一起使用的所有数据库的设置的字典。它是一个嵌套字典,其内容将数" +"据库别名映射到包含单个数据库选项的字典。 DATABASES设置必须配置默认数据库;还可" +"以指定任意数量的附加数据库。" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive" -" unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and" -" populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive " +"unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and " +"populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "默认值:2621440(即2.5 MB)。引发可疑操作(请求数据太大)之前请求正文的最大大小(以字节为单位)。在访问request.body或request.POST时完成检查,并根据不包括任何文件上传数据的总请求大小计算。您可以将其设置为“无”以禁用检查。预计会收到异常大型表单提交的应用程序应调整此设置。请求数据量与处理请求和填充GET和POST词典所需的内存量相关联。如果不加以检查,大请求可以用作拒绝服务攻击载体。由于Web服务器通常不执行深度请求检查,因此无法在该级别执行类似检查。另请参见FILE_UPLOAD_MAX_MEMORY_SIZE。" +msgstr "" +"默认值:2621440(即2.5 MB)。引发可疑操作(请求数据太大)之前请求正文的最大大" +"小(以字节为单位)。在访问request.body或request.POST时完成检查,并根据不包括" +"任何文件上传数据的总请求大小计算。您可以将其设置为“无”以禁用检查。预计会收到" +"异常大型表单提交的应用程序应调整此设置。请求数据量与处理请求和填充GET和POST词" +"典所需的内存量相关联。如果不加以检查,大请求可以用作拒绝服务攻击载体。由于Web" +"服务器通常不执行深度请求检查,因此无法在该级别执行类似检查。另请参见" +"FILE_UPLOAD_MAX_MEMORY_SIZE。" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "默认值:[](空列表)。在系统范围内表示不允许访问任何页面的用户代理字符串的已编译正则表达式对象的列表。用于防范恶意的机器人/爬虫。这仅在安装了CommonMiddleware时使用(请参阅Middleware)。" +msgstr "" +"默认值:[](空列表)。在系统范围内表示不允许访问任何页面的用户代理字符串的已" +"编译正则表达式对象的列表。用于防范恶意的机器人/爬虫。这仅在安装了" +"CommonMiddleware时使用(请参阅Middleware)。" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "默认值:'django.core.mail.backends.smtp.EmailBackend'。用于发送电子邮件的后端。" +msgstr "" +"默认值:'django.core.mail.backends.smtp.EmailBackend'。用于发送电子邮件的后" +"端。" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "默认值:'localhost'。用于发送电子邮件的主机。" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与EMAIL_HOST_USER结合使用。如果这些设置中的任何一个为空,Django将不会尝试身份验证。" +msgstr "" +"默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的密码。在向SMTP服务" +"器进行身份验证时,此设置与EMAIL_HOST_USER结合使用。如果这些设置中的任何一个为" +"空,Django将不会尝试身份验证。" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的用户名。如果为空,Django将不会尝试身份验证。" +msgstr "" +"默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的用户名。如果为空," +"Django将不会尝试身份验证。" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "默认值:25。用于EMAIL_HOST中定义的SMTP服务器的端口。" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "默认值:无。指定阻塞操作(如连接尝试)的超时(以秒为单位)。" -#: settings.py:229 +#: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the" -" SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the " +"SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "默认值:False。与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587上。如果遇到挂起连接,请参阅隐式TLS设置EMAIL_USE_SSL。" +msgstr "" +"默认值:False。与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接," +"通常在端口587上。如果遇到挂起连接,请参阅隐式TLS设置EMAIL_USE_SSL。" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -474,52 +539,56 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "默认值:False。与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置EMAIL_USE_TLS。请注意,EMAIL_USE_TLS / EMAIL_USE_SSL是互斥的,因此只将其中一个设置为True。" +msgstr "" +"默认值:False。与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮" +"件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式" +"TLS设置EMAIL_USE_TLS。请注意,EMAIL_USE_TLS / EMAIL_USE_SSL是互斥的,因此只将" +"其中一个设置为True。" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "默认值:2621440(即2.5 MB)。上传在流式传输到文件系统之前的最大大小(以字节为单位)。有关详情,请参阅管理文件。另请参见DATA_UPLOAD_MAX_MEMORY_SIZE。" +msgstr "" +"默认值:2621440(即2.5 MB)。上传在流式传输到文件系统之前的最大大小(以字节为" +"单位)。有关详情,请参阅管理文件。另请参见DATA_UPLOAD_MAX_MEMORY_SIZE。" -#: settings.py:261 +#: settings.py:281 msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "指定在此Django安装中启用的所有应用程序的字符串列表。每个字符串应该是一个虚线的Python路径:应用程序配置类(首选)或包含应用程序的包。" - -#: settings.py:271 -msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login," -" especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login, " +"especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "默认值:'/ accounts / login /',重定向请求以进行登录的URL,尤其是在使用login_required()装饰器时。此设置还接受命名的URL模式,可用于减少配置重复,因为您不必在两个位置(设置和URLconf)定义URL。" +msgstr "" +"默认值:'/ accounts / login /',重定向请求以进行登录的URL,尤其是在使用" +"login_required()装饰器时。此设置还接受命名的URL模式,可用于减少配置重复,因" +"为您不必在两个位置(设置和URLconf)定义URL。" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "默认值:'/ accounts / profile /',当contrib.auth.login视图没有下一个参数时,登录后重定向请求的URL。例如,login_required()装饰器使用它。此设置还接受命名的URL模式,可用于减少重复配置,因此您不必在两个位置(设置和URLconf)定义URL。" +msgstr "" +"默认值:'/ accounts / profile /',当contrib.auth.login视图没有下一个参数时," +"登录后重定向请求的URL。例如,login_required()装饰器使用它。此设置还接受命名" +"的URL模式,可用于减少重复配置,因此您不必在两个位置(设置和URLconf)定义URL。" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no" -" redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no " +"redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +596,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +605,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +617,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,22 +625,22 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at " -"django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at django.contrib.staticfiles." +"storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,25 +648,29 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 -msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" -" transport://userid:password@hostname:port/virtual_host Only the scheme part" -" (transport://) is required, the rest is optional, and defaults to the " -"specific transports default values." -msgstr "默认值:“amqp://”。默认代理URL。这必须是以下形式的URL:transport:// userid:password @ hostname:port / virtual_host只需要方案部分(transport://),其余部分是可选的,默认为特定传输的默认值。" - #: settings.py:401 msgid "" +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " +"transport://userid:password@hostname:port/virtual_host Only the scheme part " +"(transport://) is required, the rest is optional, and defaults to the " +"specific transports default values." +msgstr "" +"默认值:“amqp://”。默认代理URL。这必须是以下形式的URL:transport:// userid:" +"password @ hostname:port / virtual_host只需要方案部分(transport://),其余部" +"分是可选的,默认为特定传输的默认值。" + +#: settings.py:411 +msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to " -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" -msgstr "默认值:默认情况下未启用结果后端。后端用于存储任务结果(墓碑)。请参阅http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" +"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" +"userguide/configuration.html#result-backend" +msgstr "" +"默认值:默认情况下未启用结果后端。后端用于存储任务结果(墓碑)。请参阅http://" +"docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 7b908054e2..7fa6b67367 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index c6c64b7f24..79f72705fe 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po index b0957e8e5e..e0ab6ef980 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -80,7 +82,9 @@ msgstr "Transformacije" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Red u kojem će se transformacije izvršiti. Ako je ostalo nepromenjeno, biće dodeljena automatska vrijednost porudžbine." +msgstr "" +"Red u kojem će se transformacije izvršiti. Ako je ostalo nepromenjeno, biće " +"dodeljena automatska vrijednost porudžbine." #: models.py:39 msgid "Order" @@ -94,7 +98,9 @@ msgstr "Ime" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Unesite argumente za transformaciju kao IAML rečnik. npr .: {\"stepeni\": 180}" +msgstr "" +"Unesite argumente za transformaciju kao IAML rečnik. npr .: {\"stepeni\": " +"180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po index 829ddba1ac..52f9b3223c 100644 --- a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" diff --git a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po index d374096107..de851bcb2d 100644 --- a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po index 6d3d758966..2f6180c92a 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bjoern Kowarsch , 2018 # Jesaja Everling , 2017 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 22:15+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -50,13 +51,16 @@ msgstr "Kein Office-Dateiformat" #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "Programm aus dem poppler-utils Paket für die Inspektion von PDF Dateien." +msgstr "" +"Programm aus dem poppler-utils Paket für die Inspektion von PDF Dateien." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "Programm aus dem poppler-utils Paket für die Extraktion von Seiten aus PDF-Dateien in PPM-Bilder." +msgstr "" +"Programm aus dem poppler-utils Paket für die Extraktion von Seiten aus PDF-" +"Dateien in PPM-Bilder." #: forms.py:28 #, python-format @@ -83,7 +87,9 @@ msgstr "Transformationen" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird automatisch eine Reihenfolge zugewiesen." +msgstr "" +"Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird " +"automatisch eine Reihenfolge zugewiesen." #: models.py:39 msgid "Order" @@ -97,7 +103,9 @@ msgstr "Name" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Argumemte für die Transformation als YAML dictionary eingeben, z.B: {\"degrees\": 180}" +msgstr "" +"Argumemte für die Transformation als YAML dictionary eingeben, z.B: " +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -187,18 +195,23 @@ msgstr "Transformation erstellen für %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Transformation \"%(transformation)s\" für %(content_object)s wirklich löschen?" +msgstr "" +"Transformation \"%(transformation)s\" für %(content_object)s wirklich " +"löschen?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" +msgstr "" +"Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "Transformationen erlauben Veränderungen in der visuellen Darstellung eines Dokuments ohne diese im Dokument selbst zu speichern." +msgstr "" +"Transformationen erlauben Veränderungen in der visuellen Darstellung eines " +"Dokuments ohne diese im Dokument selbst zu speichern." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po index 835a3e374c..1abc3eb067 100644 --- a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -78,7 +79,9 @@ msgstr "Μετασχηματισμός" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Προτεραιότητα με την οποία θα εφαρμοστεί ο μετασχηματισμός. Αν αφαιθεί κενό, θα αποδοθεί αυτόματα μια τιμή σειράς προτεραιότητας." +msgstr "" +"Προτεραιότητα με την οποία θα εφαρμοστεί ο μετασχηματισμός. Αν αφαιθεί κενό, " +"θα αποδοθεί αυτόματα μια τιμή σειράς προτεραιότητας." #: models.py:39 msgid "Order" @@ -182,12 +185,14 @@ msgstr "Δημιουργία νέου μετασχηματισμού για: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Διαγραφή μετασχηματισμού \"%(transformation)s\" για: %(content_object)s?" +msgstr "" +"Διαγραφή μετασχηματισμού \"%(transformation)s\" για: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Τροποποίηση μετασχηματισμού \"%(transformation)s\" για: %(content_object)s" +msgstr "" +"Τροποποίηση μετασχηματισμού \"%(transformation)s\" για: %(content_object)s" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po index eb719a6233..f882dd500f 100644 --- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index 9ca0813772..554e3d14d5 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015-2019 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-28 19:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -47,13 +48,16 @@ msgstr "No es un formato de archivo de la oficina." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "Utilidad del paquete poppler-utils utilizado para inspeccionar archivos PDF." +msgstr "" +"Utilidad del paquete poppler-utils utilizado para inspeccionar archivos PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "Utilidad del paquete popper-utils que se utiliza para extraer páginas de archivos PDF a imágenes en formato PPM." +msgstr "" +"Utilidad del paquete popper-utils que se utiliza para extraer páginas de " +"archivos PDF a imágenes en formato PPM." #: forms.py:28 #, python-format @@ -80,7 +84,9 @@ msgstr "Transformaciones" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor de orden sera asignado automáticamente. " +msgstr "" +"Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor " +"de orden sera asignado automáticamente. " #: models.py:39 msgid "Order" @@ -94,7 +100,9 @@ msgstr "Nombre" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Entre el argumento de la transformación como un diccionario YAML. Ejemplo: {\"degrees\": 180}" +msgstr "" +"Entre el argumento de la transformación como un diccionario YAML. Ejemplo: " +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -184,7 +192,8 @@ msgstr "Crear transformación para :%s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" +msgstr "" +"¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" #: views.py:171 #, python-format @@ -195,7 +204,9 @@ msgstr "Editar transformación \"%(transformation)s\" para: %(content_object)s" msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "Las transformaciones permiten cambiar la apariencia visual de los documentos sin realizar cambios permanentes en el archivo del documento." +msgstr "" +"Las transformaciones permiten cambiar la apariencia visual de los documentos " +"sin realizar cambios permanentes en el archivo del documento." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 76886d2328..19bf11d47c 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -79,7 +80,9 @@ msgstr "تغییرات" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "سفارش که در آن تحولات اجرا خواهد شد. اگر بدون تغییر باقی بماند، یک مقدار سفارش خودکار تعیین می شود." +msgstr "" +"سفارش که در آن تحولات اجرا خواهد شد. اگر بدون تغییر باقی بماند، یک مقدار " +"سفارش خودکار تعیین می شود." #: models.py:39 msgid "Order" @@ -93,7 +96,9 @@ msgstr "نام" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "آرگومان را برای تبدیل به عنوان یک فرهنگ لغت YAML وارد کنید. یعنی: {\"درجه\": 180}" +msgstr "" +"آرگومان را برای تبدیل به عنوان یک فرهنگ لغت YAML وارد کنید. یعنی: {\"درجه\": " +"180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 9ba376ef55..999e7daba1 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-09 13:35+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -38,7 +39,8 @@ msgstr "Exception lors de la détermination du nombre de pages du PDF ; %s" #: backends/python.py:195 #, python-format msgid "Exception determining page count using Pillow; %s" -msgstr "Exception lors de la détermination du nombre de pages à l'aide de Pillow ; %s" +msgstr "" +"Exception lors de la détermination du nombre de pages à l'aide de Pillow ; %s" #: classes.py:118 msgid "LibreOffice not installed or not found." @@ -50,13 +52,16 @@ msgstr "Format de fichier non reconnu." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "Utilitaire du paquet poppler-utils utilisé pour inspecter les fichiers PDF." +msgstr "" +"Utilitaire du paquet poppler-utils utilisé pour inspecter les fichiers PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "Utilitaire du paquet popper-utils utilisé pour extraire des pages de fichiers PDF en images au format PPM." +msgstr "" +"Utilitaire du paquet popper-utils utilisé pour extraire des pages de " +"fichiers PDF en images au format PPM." #: forms.py:28 #, python-format @@ -83,7 +88,9 @@ msgstr "Transformations" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordre dans lequel les transformations seront exécutées. En l'absence de modification, un ordre est automatiquement assigné." +msgstr "" +"Ordre dans lequel les transformations seront exécutées. En l'absence de " +"modification, un ordre est automatiquement assigné." #: models.py:39 msgid "Order" @@ -97,7 +104,9 @@ msgstr "Nom" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Saisir les arguments pour la transformation sous la forme d'un dictionnaire YAML. Par exemple : {\"degrees\": 180}" +msgstr "" +"Saisir les arguments pour la transformation sous la forme d'un dictionnaire " +"YAML. Par exemple : {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -187,18 +196,23 @@ msgstr "Créer une nouvelle transformation pour : %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s\" pour : %(content_object)s ?" +msgstr "" +"Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s" +"\" pour : %(content_object)s ?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" +msgstr "" +"Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "Les transformations permettent de modifier l'apparence visuelle des documents sans apporter de modifications permanentes au fichier." +msgstr "" +"Les transformations permettent de modifier l'apparence visuelle des " +"documents sans apporter de modifications permanentes au fichier." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index 90fb0af145..bad513fca1 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index 8d0ec5bdc0..e740b3a373 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-12 18:08+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index 3d159775e1..1ca89fe2f6 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011,2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -80,7 +81,9 @@ msgstr "Trasformazioni" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato l'ordine automatico." +msgstr "" +"Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato " +"l'ordine automatico." #: models.py:39 msgid "Order" @@ -94,7 +97,9 @@ msgstr "Nome " msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Scrivi gli argomenti per la trasformazione come dizionario YAML. es: {\"degrees\": 180}" +msgstr "" +"Scrivi gli argomenti per la trasformazione come dizionario YAML. es: " +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -184,12 +189,14 @@ msgstr "Crea una nuove trasformazioni per: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" +msgstr "" +"Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" +msgstr "" +"Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po index 85d5ce9502..169ab45122 100644 --- a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:00+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -46,13 +48,16 @@ msgstr "Ne biroja faila formāts." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "Utility no poppler-utils paketes, ko izmanto, lai pārbaudītu PDF failus." +msgstr "" +"Utility no poppler-utils paketes, ko izmanto, lai pārbaudītu PDF failus." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "Utility no popper-utils paketes, ko izmanto, lai no PDF failiem izņemtu lapas PPM formāta attēlos." +msgstr "" +"Utility no popper-utils paketes, ko izmanto, lai no PDF failiem izņemtu " +"lapas PPM formāta attēlos." #: forms.py:28 #, python-format @@ -79,7 +84,9 @@ msgstr "Transformācijas" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Kārtība, kādā tiks veiktas transformācijas. Ja tas netiek mainīts, tiks piešķirta automātiskā pasūtījuma vērtība." +msgstr "" +"Kārtība, kādā tiks veiktas transformācijas. Ja tas netiek mainīts, tiks " +"piešķirta automātiskā pasūtījuma vērtība." #: models.py:39 msgid "Order" @@ -93,7 +100,9 @@ msgstr "Nosaukums" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Ievadiet transformācijas argumentus kā YAML vārdnīcu. ti: {"grādi": 180}" +msgstr "" +"Ievadiet transformācijas argumentus kā YAML vārdnīcu. ti: {"" +"grādi": 180}" #: models.py:49 msgid "Arguments" @@ -183,18 +192,22 @@ msgstr "Izveidot jaunu transformāciju: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Dzēst transformāciju "%(transformation)s": %(content_object)s?" +msgstr "" +"Dzēst transformāciju "%(transformation)s": %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Rediģēt transformāciju "%(transformation)s" par: %(content_object)s" +msgstr "" +"Rediģēt transformāciju "%(transformation)s" par: %(content_object)s" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "Pārveidojumi ļauj mainīt dokumentu vizuālo izskatu, neveicot pastāvīgas izmaiņas dokumenta failā." +msgstr "" +"Pārveidojumi ļauj mainīt dokumentu vizuālo izskatu, neveicot pastāvīgas " +"izmaiņas dokumenta failā." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po index 0839ece204..40ed8c4e86 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -82,7 +83,9 @@ msgstr "Transformaties" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Volgorde waarin de transformaties worden uitgevoerd. Indien ongewijzigd zal automatisch een volgorde toegekend worden." +msgstr "" +"Volgorde waarin de transformaties worden uitgevoerd. Indien ongewijzigd zal " +"automatisch een volgorde toegekend worden." #: models.py:39 msgid "Order" @@ -96,7 +99,9 @@ msgstr "Naam" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Voer de argumenten voor de transformatie in als een YAML statement, bijvoorbeeld: {\"degrees\": 180}" +msgstr "" +"Voer de argumenten voor de transformatie in als een YAML statement, " +"bijvoorbeeld: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -186,7 +191,8 @@ msgstr "Maak een nieuwe transformatie aan voor: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Transformatie verwijderen \"%(transformation)s\" voor: %(content_object)s?" +msgstr "" +"Transformatie verwijderen \"%(transformation)s\" voor: %(content_object)s?" #: views.py:171 #, python-format diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index acd77adbb0..c128cd6600 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -81,7 +84,9 @@ msgstr "Przekształcenia" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Kolejność wykonywania przekształceń. Jeśli nie zostanie zmieniona, przyjmie wartość automatyczną." +msgstr "" +"Kolejność wykonywania przekształceń. Jeśli nie zostanie zmieniona, przyjmie " +"wartość automatyczną." #: models.py:39 msgid "Order" @@ -95,7 +100,9 @@ msgstr "Nazwa" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Wprowadź argumenty dla przekształcenia w postaci słownika YAML np.: {\"degrees\": 180}" +msgstr "" +"Wprowadź argumenty dla przekształcenia w postaci słownika YAML np.: " +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index 079479aa2d..107e5f5a44 100644 --- a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po index 18ac9eca61..78b2420a98 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -83,7 +84,9 @@ msgstr "Transformações" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordem de execução das transformações. Se deixar em branco, um valor automático vai ser atribuído." +msgstr "" +"Ordem de execução das transformações. Se deixar em branco, um valor " +"automático vai ser atribuído." #: models.py:39 msgid "Order" @@ -97,7 +100,9 @@ msgstr "Nome" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Entre com os argumentos da transformação como um dicionário YAML. ie: {\"degrees\": 180}" +msgstr "" +"Entre com os argumentos da transformação como um dicionário YAML. ie: " +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -198,7 +203,9 @@ msgstr "Editar transformação \"%(transformation)s\" para: %(content_object)s" msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "As transformações permitem mudar a aparência de documentos sem fazer mudanças permanentes nos arquivos dos documentos." +msgstr "" +"As transformações permitem mudar a aparência de documentos sem fazer " +"mudanças permanentes nos arquivos dos documentos." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po index 7fe0756fcd..822a466c81 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 08:08+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -47,13 +49,17 @@ msgstr "Nu este un format de fișier Office." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "Utilitar din pachetul poppler-utils folosit pentru inspectarea fișierelor PDF." +msgstr "" +"Utilitar din pachetul poppler-utils folosit pentru inspectarea fișierelor " +"PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "Utilitar din pachetul popper-utils folosit pentru extragerea paginilor din fișiere PDF în imagini în format PPM." +msgstr "" +"Utilitar din pachetul popper-utils folosit pentru extragerea paginilor din " +"fișiere PDF în imagini în format PPM." #: forms.py:28 #, python-format @@ -80,7 +86,9 @@ msgstr "Transformări" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordinea în care vor fi executate transformările. Dacă este lăsat neschimbat, va fi alocată o ordine automată." +msgstr "" +"Ordinea în care vor fi executate transformările. Dacă este lăsat neschimbat, " +"va fi alocată o ordine automată." #: models.py:39 msgid "Order" @@ -94,7 +102,9 @@ msgstr "Nume" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Introduceți argumentele pentru transformare ca dicționar YAML. adică: {\"grade\": 180}" +msgstr "" +"Introduceți argumentele pentru transformare ca dicționar YAML. adică: " +"{\"grade\": 180}" #: models.py:49 msgid "Arguments" @@ -184,18 +194,22 @@ msgstr "Creați o nouă transformare pentru: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Ștergeți transformarea \"%(transformation)s\" pentru: %(content_object)s?" +msgstr "" +"Ștergeți transformarea \"%(transformation)s\" pentru: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Editați transformarea \"%(transformation)s\" pentru: %(content_object)s" +msgstr "" +"Editați transformarea \"%(transformation)s\" pentru: %(content_object)s" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "Transformările permit modificarea aspectului vizual al documentelor, fără a face modificări permanente ale fișierului documentului în sine." +msgstr "" +"Transformările permit modificarea aspectului vizual al documentelor, fără a " +"face modificări permanente ale fișierului documentului în sine." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index 0685c52889..e6a41065ad 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -79,7 +82,9 @@ msgstr "Преобразования" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Порядок выполнения преобразований. Если оставить неизменным, будет установлен флаг автоматического выставления порядка." +msgstr "" +"Порядок выполнения преобразований. Если оставить неизменным, будет " +"установлен флаг автоматического выставления порядка." #: models.py:39 msgid "Order" @@ -93,7 +98,9 @@ msgstr "Имя" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Введите аргументы для преобразования в формате YAML-словаря, например: {\"degrees\": 180}" +msgstr "" +"Введите аргументы для преобразования в формате YAML-словаря, например: " +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -188,7 +195,9 @@ msgstr "Удалить преобразование \"%(transformation)s\" дл #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Изменить преобразование \"%(transformation)s\" for: %(content_object)sjavascript:;" +msgstr "" +"Изменить преобразование \"%(transformation)s\" for: " +"%(content_object)sjavascript:;" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po index 339594b6e9..c87af06212 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" diff --git a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po index 822f0ca65d..5f118ce3e5 100644 --- a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -80,7 +81,9 @@ msgstr "Dönüşümler" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Dönüşümlerin gerçekleştirileceği sıralama. Eğer değiştirilmeden bırakılırsa, otomatik sipariş değeri verilecektir." +msgstr "" +"Dönüşümlerin gerçekleştirileceği sıralama. Eğer değiştirilmeden bırakılırsa, " +"otomatik sipariş değeri verilecektir." #: models.py:39 msgid "Order" @@ -94,7 +97,9 @@ msgstr "İsim" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Dönüşüm için argümanları bir YAML sözlüğü olarak girin. Yani: {\"derece\": 180}" +msgstr "" +"Dönüşüm için argümanları bir YAML sözlüğü olarak girin. Yani: {\"derece\": " +"180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po index a9fcca2a46..f6a3fc712a 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po index 5a84d3eddd..943aa2945f 100644 --- a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po index a323735a8a..52a3e3d372 100644 --- a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po index f813d5a742..d8ded40354 100644 --- a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pavlin Koldamov , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Pavlin Koldamov , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po index 80f5f3fa57..369272dcb7 100644 --- a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Atdhe Tabaku , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po index 95a2075f39..8a49116806 100644 --- a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po index 440e077bf2..56b5f3b3d0 100644 --- a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po index 975a2ac225..239096c5df 100644 --- a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jesaja Everling , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po index 388509ed86..0113c2a9d8 100644 --- a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po index b971bc626d..6f75f71cb0 100644 --- a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po index 6e7ea567b5..0a30110673 100644 --- a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po index 86df1b849e..83269de8f3 100644 --- a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mehdi Amani , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po index 69c32b1b61..2d3e32768e 100644 --- a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po @@ -2,25 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Christophe CHAUVET , 2019 # Pierre Lhoste , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po index ed30395ed6..ba3431b714 100644 --- a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po index 7323d01cdd..1140dc4fbd 100644 --- a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po index 63d423b507..a7c60f9201 100644 --- a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Marco Camplese , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po index 26bce1a9c2..f34c86b9da 100644 --- a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po index bfc1487763..50f5cf6967 100644 --- a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Martin Horseling , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Martin Horseling , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po index a0bb20a0ac..5b76ea34af 100644 --- a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Daniel Winiarski , 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po index ddae7ca9a3..50749cb549 100644 --- a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po index a9001b5851..af9235cf47 100644 --- a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jadson Ribeiro , 2019 # José Samuel Facundo da Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Last-Translator: José Samuel Facundo da Silva , 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Last-Translator: José Samuel Facundo da Silva , " +"2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po index b0bd215908..e5788e2610 100644 --- a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po index 69bc343b5e..70ba3c49c3 100644 --- a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sergey Glita , 2019 # mizhgan , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po index 17c7987ce3..5225166d3a 100644 --- a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: kontrabant , 2019\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po index ac22f0014e..e0d1f40389 100644 --- a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po index cbb9b1717a..1b47745af4 100644 --- a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po index 0f9d6c1120..14de8efcde 100644 --- a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po index dc15fdc035..94164bcfc5 100644 --- a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mohammed ALDOUB , 2019 # Yaman Sanobar , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -164,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po index 7a53791989..124e0b0cc1 100644 --- a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Iliya Georgiev , 2019 # Pavlin Koldamov , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po index 87536eac63..7aaa157fdb 100644 --- a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # www.ping.ba , 2019 # Atdhe Tabaku , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -164,8 +166,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po index 7de8e88b78..525766e7c9 100644 --- a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -162,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po index 2db17c5764..8733600361 100644 --- a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -162,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po index 4c0f036713..b0fda50764 100644 --- a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Berny , 2019 # Felix , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -169,8 +170,8 @@ msgstr "Binärdatei" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po index 94d3d30ee9..b7ea4aa7a5 100644 --- a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -162,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po index 5665437f77..4b350de685 100644 --- a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index 12a9ac79cb..77c5bf8d46 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -2,25 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # jmcainzos , 2019 # Lory977 , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -69,8 +69,8 @@ msgid "" "users can ignore missing dependencies under this environment." msgstr "" "Entorno utilizado para la construcción de paquetes distribuibles del " -"software. Los usuarios finales pueden ignorar las dependencias que faltan en" -" este entorno." +"software. Los usuarios finales pueden ignorar las dependencias que faltan en " +"este entorno." #: classes.py:68 msgid "Build" @@ -108,8 +108,8 @@ msgid "" "usage." msgstr "" "Entorno usado para la ejecución del conjunto de pruebas para verificar la " -"funcionalidad del código. Las dependencias en este entorno no son necesarias" -" para el uso normal de producción." +"funcionalidad del código. Las dependencias en este entorno no son necesarias " +"para el uso normal de producción." #: classes.py:87 msgid "Testing" @@ -175,11 +175,11 @@ msgstr "Binario" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" -"Las librerias de JavaScript descargadas el registro de NPM y utilizadas para" -" la funcionalidad de front-end." +"Las librerias de JavaScript descargadas el registro de NPM y utilizadas para " +"la funcionalidad de front-end." #: classes.py:462 msgid "JavaScript" @@ -243,8 +243,8 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -"Mostrar los diferentes estados de las dependencias. \"Cierto\" significa que" -" las dependencias están instaladas y son de una versión correcta. \"Falso\" " +"Mostrar los diferentes estados de las dependencias. \"Cierto\" significa que " +"las dependencias están instaladas y son de una versión correcta. \"Falso\" " "significa que faltan las dependencias o que existe una versión incorrecta." #: classes.py:810 @@ -287,8 +287,8 @@ msgid "" "Comma separated names of dependencies to show in the list while excluding " "every other one." msgstr "" -"Nombres separados por comas de las dependencias se muestran en la lista y se" -" excluyen todos los demás." +"Nombres separados por comas de las dependencias se muestran en la lista y se " +"excluyen todos los demás." #: management/commands/installjavascript.py:15 msgid "Process a specific app." diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po index 26e46cd9d6..12ba0af269 100644 --- a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mehdi Amani , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po index f4faba8f14..193065b12e 100644 --- a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po @@ -2,27 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Thierry Schott , 2019 # Yves Dubois , 2019 # Christophe CHAUVET , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -169,8 +169,8 @@ msgstr "Binaire" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 @@ -271,8 +271,8 @@ msgid "" "Comma separated names of dependencies to show in the list while excluding " "every other one." msgstr "" -"Noms de dépendances à afficher dans la liste en excluant les autres, séparés" -" par des virgules." +"Noms de dépendances à afficher dans la liste en excluant les autres, séparés " +"par des virgules." #: management/commands/installjavascript.py:15 msgid "Process a specific app." diff --git a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po index d5ffa00ae0..39853129c3 100644 --- a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2019 # molnars , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po index a30ba8ec6c..c4c44cc6a5 100644 --- a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sehat , 2019 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po index cedc89c0f7..e4e5d4b594 100644 --- a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po @@ -2,26 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Pierpaolo Baldan , 2019 # Marco Camplese , 2019 # Giovanni Tricarico , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -165,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po index 0afe03661e..aca4b5f22d 100644 --- a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -165,8 +166,8 @@ msgstr "Binārs" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po index d7b23b8032..212ed41ae2 100644 --- a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2019 # Justin Albstbstmeijer , 2019 # Lucas Weel , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Lucas Weel , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po index b95372ee0b..6e5caaf9bf 100644 --- a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po @@ -2,27 +2,29 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mic , 2019 # Roberto Rosario, 2019 # Przemysław Bodio , 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -165,8 +167,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index c897acadb3..8a85e889aa 100644 --- a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Emerson Soares , 2019 # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Manuela Silva , 2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Last-Translator: Manuela Silva , " +"2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +166,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po index 79de8ed754..e4aee56a71 100644 --- a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rogerio Falcone , 2019 # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -165,8 +166,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po index 394e11d0a4..14a1ba33bd 100644 --- a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po @@ -2,27 +2,29 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Badea Gabriel , 2019 # Stefaniu Criste , 2019 # Roberto Rosario, 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -168,8 +170,8 @@ msgstr "Binar" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po index f5c8cd7b75..e345c441b4 100644 --- a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Sergey Glita , 2019 @@ -11,21 +11,23 @@ # Roman Z , 2019 # D Muzzle , 2019 # lilo.panic, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic, 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -168,8 +170,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po index 97965796c0..5baac7b608 100644 --- a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: kontrabant , 2019\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -162,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po index dfa92df6b0..72e268e8ff 100644 --- a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Nurgül Özkan , 2019 # serhatcan77 , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 , 2019\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po index f866792142..dc8a7467c8 100644 --- a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Trung Phan Minh , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po index a8b9eef6f2..13af7b2341 100644 --- a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -162,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end" -" functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end " +"functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po index cb0309b1d8..12ae295070 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 msgid "Django GPG" @@ -271,8 +273,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +283,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po index 6096745530..d2d1174b10 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -271,8 +272,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po index 82cfda5aa2..5be9b89b25 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Django GPG" @@ -205,7 +207,9 @@ msgstr "Potpisi" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." +msgstr "" +"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " +"datoteka." #: settings.py:22 msgid "Path to the GPG binary." @@ -272,8 +276,8 @@ msgstr "Uvedi novi ključ" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +286,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po index 4a4dd2d201..b11097ea0a 100644 --- a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:33 msgid "Django GPG" @@ -270,8 +272,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -280,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po index 10f01fc388..df82e5d9a9 100644 --- a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -270,8 +271,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -280,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po index 236c0f1f92..46b0f6bf85 100644 --- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bjoern Kowarsch , 2018 # Mathias Behrle , 2019 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-19 09:33+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -73,7 +74,9 @@ msgstr "Begriff" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird." +msgstr "" +"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " +"wird." #: links.py:15 msgid "Delete" @@ -145,7 +148,9 @@ msgstr "Signaturfehler." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." +msgstr "" +"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " +"verfügbar." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -252,7 +257,10 @@ msgstr "Schlüssel %(key_id)s erfolgreich heruntergeladen" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "Namen, Nachnamen, Schlüssel-IDs oder E-Mail-Adressen bei der Suche nach öffentlichen Schlüsseln verwenden, um diese vom Schlüsselserver zu importieren." +msgstr "" +"Namen, Nachnamen, Schlüssel-IDs oder E-Mail-Adressen bei der Suche nach " +"öffentlichen Schlüsseln verwenden, um diese vom Schlüsselserver zu " +"importieren." #: views.py:110 msgid "No results returned" @@ -276,9 +284,12 @@ msgstr "Neuen Schlüssel hochladen" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." -msgstr "Private Schlüssel werden zum Signieren von Dokumenten benutzt. Sie können ausschließlich von Benutzern hochgeladen werden. Die Ansicht zum Hochladen von privaten und öffentlichen Schlüssel ist identisch." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." +msgstr "" +"Private Schlüssel werden zum Signieren von Dokumenten benutzt. Sie können " +"ausschließlich von Benutzern hochgeladen werden. Die Ansicht zum Hochladen " +"von privaten und öffentlichen Schlüssel ist identisch." #: views.py:174 msgid "There no private keys" @@ -286,10 +297,14 @@ msgstr "Keine privaten Schlüssel vorhanden" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "Öffentliche Schlüssel werden zur Verifzierung von signierten Dokumenten benutzt. Sie können von Benutzern hochgeladen oder von Schlüsselservern heruntergeladen werden. Die Ansicht zum Hochladen von privaten und öffentlichen Schlüssel ist identisch." +msgstr "" +"Öffentliche Schlüssel werden zur Verifzierung von signierten Dokumenten " +"benutzt. Sie können von Benutzern hochgeladen oder von Schlüsselservern " +"heruntergeladen werden. Die Ansicht zum Hochladen von privaten und " +"öffentlichen Schlüssel ist identisch." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po index 6e7794b288..517af10b5e 100644 --- a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -67,7 +68,8 @@ msgstr "Όρος" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Όνομα, e-mail, αναγνωριστικό κλειδιού ή δακτυλικό αποτύπωμα προς αναζήτηση." +msgstr "" +"Όνομα, e-mail, αναγνωριστικό κλειδιού ή δακτυλικό αποτύπωμα προς αναζήτηση." #: links.py:15 msgid "Delete" @@ -139,7 +141,9 @@ msgstr "Σφάλμα υπογραφής." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Το έγγραφο είναι ψηφιακά υπογεγραμμένο αλλά δεν υπάρχει διαθέσιμο δημόσιο κλειδί για επαλήθευση." +msgstr "" +"Το έγγραφο είναι ψηφιακά υπογεγραμμένο αλλά δεν υπάρχει διαθέσιμο δημόσιο " +"κλειδί για επαλήθευση." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -203,7 +207,9 @@ msgstr "Υπογραφές" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Ο προσωπικός φάκελος θα χρησιμοποιηθεί για την αποθήκευση κλειδιών και αρχείων ρυθμήσεων." +msgstr "" +"Ο προσωπικός φάκελος θα χρησιμοποιηθεί για την αποθήκευση κλειδιών και " +"αρχείων ρυθμήσεων." #: settings.py:22 msgid "Path to the GPG binary." @@ -270,8 +276,8 @@ msgstr "Ανέβασμανέου κλειδιού" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -280,8 +286,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po index eb50f26637..6c27e35c2a 100644 --- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po index 43e4109ca3..5ceac197a9 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -70,7 +71,9 @@ msgstr "Término" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Nombre, dirección de correo electrónico, identificador de llave o huella digital de llave a buscar." +msgstr "" +"Nombre, dirección de correo electrónico, identificador de llave o huella " +"digital de llave a buscar." #: links.py:15 msgid "Delete" @@ -142,7 +145,9 @@ msgstr "Error de firma." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "El documento ha sido firmado pero no hay llave pública disponible para verificación." +msgstr "" +"El documento ha sido firmado pero no hay llave pública disponible para " +"verificación." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -206,7 +211,9 @@ msgstr "Firmas" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Directorio de inicio utilizado para almacenar las llaves, así como los archivos de configuración." +msgstr "" +"Directorio de inicio utilizado para almacenar las llaves, así como los " +"archivos de configuración." #: settings.py:22 msgid "Path to the GPG binary." @@ -249,7 +256,10 @@ msgstr "Llave: %(key_id)s, recibida con éxito" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "Utilice nombres, apellidos, identificaciones de llaves o correos electrónicos para buscar llaves públicas para importar desde el servidor de llaves." +msgstr "" +"Utilice nombres, apellidos, identificaciones de llaves o correos " +"electrónicos para buscar llaves públicas para importar desde el servidor de " +"llaves." #: views.py:110 msgid "No results returned" @@ -273,9 +283,12 @@ msgstr "Subir una nueva llave" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." -msgstr "Las llaves privadas se utilizan para firmar documentos. Las llaves privadas solo pueden ser cargadas por el usuario. La vista para cargar llaves privadas y públicas es la misma." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." +msgstr "" +"Las llaves privadas se utilizan para firmar documentos. Las llaves privadas " +"solo pueden ser cargadas por el usuario. La vista para cargar llaves " +"privadas y públicas es la misma." #: views.py:174 msgid "There no private keys" @@ -283,10 +296,14 @@ msgstr "No hay llaves privadas" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "Las llaves públicas se utilizan para verificar documentos firmados. Las llaves públicas pueden ser cargadas por el usuario o descargadas de los servidores de llaves. La vista para subir llaves privadas y públicas es la misma." +msgstr "" +"Las llaves públicas se utilizan para verificar documentos firmados. Las " +"llaves públicas pueden ser cargadas por el usuario o descargadas de los " +"servidores de llaves. La vista para subir llaves privadas y públicas es la " +"misma." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po index 254cc280ba..24c06e4c1c 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -272,8 +273,8 @@ msgstr "بارگذاری کلید جدید" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +283,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po index a875ece109..587f6d4229 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Frédéric Sheedy , 2019 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-05 02:55+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -144,7 +145,9 @@ msgstr "Erreur de signature." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." +msgstr "" +"Ce document est signé mais aucune clé publique n'est disponible pour " +"vérifier la signature." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -208,7 +211,9 @@ msgstr "Signatures" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" +msgstr "" +"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " +"de configuration" #: settings.py:22 msgid "Path to the GPG binary." @@ -251,7 +256,9 @@ msgstr "Clé : %(key_id)s reçue avec ssucès" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "Utilisez prénoms, noms, identifiants des clés ou courriels pour rechercher des clés publiques à importer du serveur de clés." +msgstr "" +"Utilisez prénoms, noms, identifiants des clés ou courriels pour rechercher " +"des clés publiques à importer du serveur de clés." #: views.py:110 msgid "No results returned" @@ -275,9 +282,12 @@ msgstr "Uploader une nouvelle clé" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." -msgstr "Les clés privées sont utilisées pour signer les documents. Les clés privées peuvent être téléversées par l'utilisateur. La page est la même pour téléverser une clé privée ou publique." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." +msgstr "" +"Les clés privées sont utilisées pour signer les documents. Les clés privées " +"peuvent être téléversées par l'utilisateur. La page est la même pour " +"téléverser une clé privée ou publique." #: views.py:174 msgid "There no private keys" @@ -285,10 +295,14 @@ msgstr "Aucune clé privée" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "Les clés publiques sont utilisées pour vérifier les documents signés. Les clés publiques peuvent être téléversées par l'utilisateur ou téléchargées du serveur de clés. La page est la même pour téléverser une clé privée ou publique." +msgstr "" +"Les clés publiques sont utilisées pour vérifier les documents signés. Les " +"clés publiques peuvent être téléversées par l'utilisateur ou téléchargées du " +"serveur de clés. La page est la même pour téléverser une clé privée ou " +"publique." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po index a731c50776..ef2ff91e1e 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -271,8 +272,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po index 1ee4f72fc6..db9663cf58 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-12 17:32+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -270,8 +271,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -280,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po index 4ecdc3d6f4..8c51982fe6 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012,2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -141,7 +142,9 @@ msgstr "Errore di firma" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" +msgstr "" +"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " +"verifica" #: literals.py:58 msgid "Document is signed, and signature is good." @@ -205,7 +208,9 @@ msgstr "Firme" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." +msgstr "" +"Home directory utilizzata per memorizzare le chiavi così come i file di " +"configurazione." #: settings.py:22 msgid "Path to the GPG binary." @@ -272,8 +277,8 @@ msgstr "Carica nuova chiave" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +287,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po index dc6a6ece6d..cbdbb81987 100644 --- a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:33 msgid "Django GPG" @@ -140,7 +142,8 @@ msgstr "Paraksta kļūda." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Dokuments ir parakstīts, bet verifikācijai nav pieejama publiska atslēga." +msgstr "" +"Dokuments ir parakstīts, bet verifikācijai nav pieejama publiska atslēga." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -204,7 +207,9 @@ msgstr "Paraksti" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Mājas katalogs tiek izmantots, lai saglabātu atslēgas, kā arī konfigurācijas failus." +msgstr "" +"Mājas katalogs tiek izmantots, lai saglabātu atslēgas, kā arī konfigurācijas " +"failus." #: settings.py:22 msgid "Path to the GPG binary." @@ -247,7 +252,9 @@ msgstr "Veiksmīgi saņemtais taustiņš: %(key_id)s" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "Izmantojiet vārdus, uzvārdus, atslēgas ID vai e-pastus, lai meklētu publiskās atslēgas, lai importētu no atslēgas servera." +msgstr "" +"Izmantojiet vārdus, uzvārdus, atslēgas ID vai e-pastus, lai meklētu " +"publiskās atslēgas, lai importētu no atslēgas servera." #: views.py:110 msgid "No results returned" @@ -271,9 +278,12 @@ msgstr "Augšupielādējiet jaunu atslēgu" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." -msgstr "Privātās atslēgas tiek izmantotas, lai parakstītu dokumentus. Privātās atslēgas var augšupielādēt tikai lietotājs. Skats, lai augšupielādētu privātās un publiskās atslēgas, ir vienāds." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." +msgstr "" +"Privātās atslēgas tiek izmantotas, lai parakstītu dokumentus. Privātās " +"atslēgas var augšupielādēt tikai lietotājs. Skats, lai augšupielādētu " +"privātās un publiskās atslēgas, ir vienāds." #: views.py:174 msgid "There no private keys" @@ -281,10 +291,13 @@ msgstr "Nav privāto atslēgu" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "Publiskās atslēgas tiek izmantotas, lai pārbaudītu parakstītos dokumentus. Publiskās atslēgas var augšupielādēt lietotājs vai lejupielādēt no atslēgas serveriem. Privāto un publisko atslēgu augšupielāde ir tāda pati." +msgstr "" +"Publiskās atslēgas tiek izmantotas, lai pārbaudītu parakstītos dokumentus. " +"Publiskās atslēgas var augšupielādēt lietotājs vai lejupielādēt no atslēgas " +"serveriem. Privāto un publisko atslēgu augšupielāde ir tāda pati." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po index 68cbb5cd1b..0e040fde17 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -141,7 +142,9 @@ msgstr "Handtekeningfout" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Document is ondertekend, maar er is geen publieke sleutel beschikbaar voor verificatie." +msgstr "" +"Document is ondertekend, maar er is geen publieke sleutel beschikbaar voor " +"verificatie." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -272,8 +275,8 @@ msgstr "Upload nieuwe sleutel" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +285,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po index 0ac63dda2c..2f67d2c861 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012,2015 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:33 msgid "Django GPG" @@ -142,7 +145,9 @@ msgstr "Błąd podpisu." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny dla weryfikacji." +msgstr "" +"Dokument został podpisany, ale klucz publiczny nie jest dostępny dla " +"weryfikacji." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -206,7 +211,8 @@ msgstr "Podpisy" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "" +"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." #: settings.py:22 msgid "Path to the GPG binary." @@ -273,8 +279,8 @@ msgstr "Prześlij nowy klucz" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -283,8 +289,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po index 2fb3cc7ae1..0e6b97c758 100644 --- a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2012 # Vítor Figueiró , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -141,7 +142,9 @@ msgstr "Erro de assinatura." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." +msgstr "" +"O documento está assinado, mas não está disponível uma chave pública para " +"verificação." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -272,8 +275,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +285,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po index e495de0f9e..10cefec220 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -207,7 +208,9 @@ msgstr "Assinaturas" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Diretório inicial usado para armazenar as chaves, assim como os arquivos de configuração." +msgstr "" +"Diretório inicial usado para armazenar as chaves, assim como os arquivos de " +"configuração." #: settings.py:22 msgid "Path to the GPG binary." @@ -250,7 +253,9 @@ msgstr "Chave: %(key_id)s, recebida com sucesso." msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "Use nomes, sobrenomes, ID's de chaves ou e-mails para procurar chaves públicas a serem importadas do servidor de chaves." +msgstr "" +"Use nomes, sobrenomes, ID's de chaves ou e-mails para procurar chaves " +"públicas a serem importadas do servidor de chaves." #: views.py:110 msgid "No results returned" @@ -274,9 +279,12 @@ msgstr "Carregar nova chave" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." -msgstr "Chaves privadas são usadas para assinar documentos digitalmente. Chaves públicas podem ser carregadas apenas pelo usuário. A vista para carregamento de chaves públicas e privadas é a mesma." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." +msgstr "" +"Chaves privadas são usadas para assinar documentos digitalmente. Chaves " +"públicas podem ser carregadas apenas pelo usuário. A vista para carregamento " +"de chaves públicas e privadas é a mesma." #: views.py:174 msgid "There no private keys" @@ -284,10 +292,13 @@ msgstr "Não há chaves privadas" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "Chaves públicas são usadas para verificar documentos assinados digitalmente. Chaves públicas podem ser carregadas pelo usuário ou baixadas de servidores de chaves. A vista para carregamento de chaves públicas e privadas é a mesma." +msgstr "" +"Chaves públicas são usadas para verificar documentos assinados digitalmente. " +"Chaves públicas podem ser carregadas pelo usuário ou baixadas de servidores " +"de chaves. A vista para carregamento de chaves públicas e privadas é a mesma." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po index 93c9c74e9a..ce5c42c78d 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:33 msgid "Django GPG" @@ -141,7 +143,9 @@ msgstr "Eroare semnătură." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." +msgstr "" +"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " +"verificare." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -205,7 +209,9 @@ msgstr "Semnături" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." +msgstr "" +"Cale director utilizată pentru a stoca cheile, precum și fișiere de " +"configurare." #: settings.py:22 msgid "Path to the GPG binary." @@ -248,7 +254,9 @@ msgstr "Ați primit cu succes cheia: %(key_id)s" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "Utilizați numele, numele de familie, identitatea cheilor sau e-mailurile pentru a căuta cheile publice de importat de pe serverul de chei." +msgstr "" +"Utilizați numele, numele de familie, identitatea cheilor sau e-mailurile " +"pentru a căuta cheile publice de importat de pe serverul de chei." #: views.py:110 msgid "No results returned" @@ -272,9 +280,12 @@ msgstr "Încărcați o cheie nouă" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." -msgstr "Cheile private sunt folosite pentru semnarea documentelor. Cheile private pot fi încărcate numai de utilizator. Vizualizarea pentru a încărca cheile private și publice este aceeași." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." +msgstr "" +"Cheile private sunt folosite pentru semnarea documentelor. Cheile private " +"pot fi încărcate numai de utilizator. Vizualizarea pentru a încărca cheile " +"private și publice este aceeași." #: views.py:174 msgid "There no private keys" @@ -282,10 +293,13 @@ msgstr "Nu există chei private" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "Cheile publice sunt utilizate pentru a verifica documentele semnate. Cheile publice pot fi încărcate de utilizator sau descărcate de la serverele de chei. Vizualizarea pentru a încărca cheile private și publice este aceeași." +msgstr "" +"Cheile publice sunt utilizate pentru a verifica documentele semnate. Cheile " +"publice pot fi încărcate de utilizator sau descărcate de la serverele de " +"chei. Vizualizarea pentru a încărca cheile private și publice este aceeași." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po index 2aef5b6dcd..bb1b56253b 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 msgid "Django GPG" @@ -204,7 +207,9 @@ msgstr "Подписи" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." +msgstr "" +"Домашний каталог, используемый для хранения ключей, а также файлов " +"конфигурации." #: settings.py:22 msgid "Path to the GPG binary." @@ -271,8 +276,8 @@ msgstr "Загрузить новый ключ" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +286,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po index 30bf65dc41..77e6ab41d3 100644 --- a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:33 msgid "Django GPG" @@ -270,8 +272,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -280,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po index ede9a9b691..53abde04fe 100644 --- a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -205,7 +206,8 @@ msgstr "İmzalar" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "Tuşları ve yapılandırma dosyalarını depolamak için kullanılan giriş dizini." +msgstr "" +"Tuşları ve yapılandırma dosyalarını depolamak için kullanılan giriş dizini." #: settings.py:22 msgid "Path to the GPG binary." @@ -272,8 +274,8 @@ msgstr "Yeni anahtar yükle" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +284,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po index ef4ed5e710..993fed294a 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -271,8 +272,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po index 193cb849a4..599fff6a16 100644 --- a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -271,8 +272,8 @@ msgstr "上传新密钥" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded" -" by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded " +"by the user.The view to upload private and public keys is the same." msgstr "私钥用于签名文档。私钥只能由用户上传。上传私钥和公钥的视图是相同的。" #: views.py:174 @@ -281,10 +282,12 @@ msgstr "没有私钥" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded" -" by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded " +"by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "公钥用于验证签名文档。公钥可以由用户上传或从密钥服务器下载。上传私钥和公钥的视图是相同的。" +msgstr "" +"公钥用于验证签名文档。公钥可以由用户上传或从密钥服务器下载。上传私钥和公钥的" +"视图是相同的。" #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po index 731a48ccf6..d3f32b6952 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Mohammed ALDOUB \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po index ccec495c18..83d5e7b84c 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Pavlin Koldamov \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po index 5466177d99..9dfa012c45 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: www.ping.ba \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po index 68bc9d6576..80b4af2dc4 100644 --- a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po index e7d0cac28d..d951a30e08 100644 --- a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po index dbe932b5c9..f7a918c740 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2018 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-26 21:45+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 @@ -111,7 +112,9 @@ msgstr "Kommentar bearbeiten: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "Kommentare bei Dokumenten sind zeitgestempelte Texteinträge von Benutzers. Sie eignen sich hervorragend für die Zusammenarbeit. " +msgstr "" +"Kommentare bei Dokumenten sind zeitgestempelte Texteinträge von Benutzers. " +"Sie eignen sich hervorragend für die Zusammenarbeit. " #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po index e9680f77fe..481344c4ff 100644 --- a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po index d1ccefdc53..c0bb58fd84 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po index bd1a3f0afd..128b949ad3 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2018-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 06:38+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 @@ -107,7 +108,9 @@ msgstr "¿Editar comentario: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "Los comentarios de los documentos son entradas de texto con marcas de tiempo de los usuarios. Son geniales para la colaboración." +msgstr "" +"Los comentarios de los documentos son entradas de texto con marcas de tiempo " +"de los usuarios. Son geniales para la colaboración." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po index c3469d9e0e..6200f37cb1 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po index b8d0d1109e..605181e354 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Frédéric Sheedy , 2019 # Thierry Schott , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 13:23+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 @@ -109,7 +110,9 @@ msgstr "Modifier le commentaire: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "Les commentaires de document sont des entrées de texte horodatées ajouté par les utilisateurs. Ils sont parfaits pour la collaboration." +msgstr "" +"Les commentaires de document sont des entrées de texte horodatées ajouté par " +"les utilisateurs. Ils sont parfaits pour la collaboration." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po index 0466988555..73e5239e51 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po index c0185be6f8..28476cbb90 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po index cce6e51f99..241f99503b 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Pierpaolo Baldan \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po index 4b86700462..7a94f852d8 100644 --- a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:39 events.py:8 msgid "Document comments" @@ -107,7 +109,9 @@ msgstr "Rediģēt komentāru: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "Dokumentu komentāri ir laika zīmogoti teksta ieraksti no lietotājiem. Tās ir lieliskas sadarbībai." +msgstr "" +"Dokumentu komentāri ir laika zīmogoti teksta ieraksti no lietotājiem. Tās ir " +"lieliskas sadarbībai." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po index 3cc2e5386a..308aea5793 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Johan Braeken\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po index b581e58c61..11b71e98f0 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po index 16ae52f222..42e593954e 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Emerson Soares \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po index 997428270a..87c5a71f74 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 @@ -108,7 +109,9 @@ msgstr "" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "Comentários nos documentos são entradas de texto dos usuários com data e hora registradas. Eles são ótimos para a colaboração." +msgstr "" +"Comentários nos documentos são entradas de texto dos usuários com data e " +"hora registradas. Eles são ótimos para a colaboração." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po index ac01634b92..a366353e74 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 18:46+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:39 events.py:8 msgid "Document comments" @@ -107,7 +109,9 @@ msgstr "Editează comentariul: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "Comentariile documentului sunt înregistrări de text marcate temporal de la utilizatori. Ele sunt excelente pentru colaborare." +msgstr "" +"Comentariile documentului sunt înregistrări de text marcate temporal de la " +"utilizatori. Ele sunt excelente pentru colaborare." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po index 70941d6068..9db985758b 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Sergey Glita \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po index 0517b0326f..b098614791 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po index e61d508a5a..ef69c77d68 100644 --- a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po index db6325c25e..09d73c7b13 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Trung Phan Minh \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po index e552733062..0ca6c34299 100644 --- a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po index 64e1b0cc7a..ae3b46a211 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:24 msgid "None" @@ -116,9 +118,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" "Causes this index to be visible and updated when document data changes." -msgstr "Causes this index to be visible and updated when document data changes." #: models.py:49 models.py:235 msgid "Enabled" @@ -152,9 +154,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." #: models.py:243 msgid "Link documents" @@ -280,8 +284,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po index d19870bd6f..a0a6fd89bf 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -116,9 +117,10 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Предизвиква този индекс да бъдат видим и актуализиран, когато данните в документа се променят." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Предизвиква този индекс да бъдат видим и актуализиран, когато данните в " +"документа се променят." #: models.py:49 models.py:235 msgid "Enabled" @@ -152,8 +154,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -280,8 +282,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po index 0466c81300..49941a273a 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" @@ -110,16 +112,18 @@ msgstr "Labela" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj indeks." +msgstr "" +"Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj indeks." #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci dokumenta." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci " +"dokumenta." #: models.py:49 models.py:235 msgid "Enabled" @@ -149,13 +153,17 @@ msgstr "Izraz indeksiranja" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci dokumenta." +msgstr "" +"Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci " +"dokumenta." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao parent za buduće nodove." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao " +"parent za buduće nodove." #: models.py:243 msgid "Link documents" @@ -178,7 +186,9 @@ msgstr "Koren" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Greška u indeksiranju dokumenta:%(document)s; izraz:%(expression)s;%(exception)s" +msgstr "" +"Greška u indeksiranju dokumenta:%(document)s; izraz:%(expression)s;" +"%(exception)s" #: models.py:351 msgid "Index template node" @@ -281,8 +291,8 @@ msgstr "Uredi indeks:%s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po index 904b5b426d..7b9ea318fb 100644 --- a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin.py:24 msgid "None" @@ -115,8 +117,7 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +152,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +280,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po index e4c184ebc4..13f695aab2 100644 --- a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -115,8 +116,7 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po index 26ad14c750..cfa7766f61 100644 --- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Mathias Behrle , 2019 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -122,9 +123,10 @@ msgid "Slug" msgstr "Abkürzung" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " +"werden." #: models.py:49 models.py:235 msgid "Enabled" @@ -146,7 +148,10 @@ msgstr "Index-Instanzen" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" +"Sprache benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/" +"builtins/)" #: models.py:227 msgid "Indexing expression" @@ -154,13 +159,18 @@ msgstr "Indexierungsausdruck" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." +msgstr "" +"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " +"werden." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-Knotenpunkte fungieren soll)." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden " +"sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-" +"Knotenpunkte fungieren soll)." #: models.py:243 msgid "Link documents" @@ -183,7 +193,9 @@ msgstr "Wurzel" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: %(expression)s; %(exception)s" +msgstr "" +"Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: " +"%(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -266,7 +278,10 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "Dokumente diese Typs werden in verknüpften Indices erscheinen, wenn sie aktualisiert werden. Ereignisse dieser Dokumente werden Aktualisierungen in verknüpften Indices auslösen." +msgstr "" +"Dokumente diese Typs werden in verknüpften Indices erscheinen, wenn sie " +"aktualisiert werden. Ereignisse dieser Dokumente werden Aktualisierungen in " +"verknüpften Indices auslösen." #: views.py:81 #, python-format @@ -286,9 +301,14 @@ msgstr "Index %s bearbeiten" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "Indizes gruppieren Dokumente automatisch in unterschiedliche Ebenen. Indizes werden in Vorlagen definiert, in denen bestimmte Markierungen direkt durch entsprechende Dokumenteneigenschaften ersetzt werden, wie zum Beispiel Beschriftung oder Beschreibung, oder durch erweiterte Eigenschaften wie Metadaten." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"Indizes gruppieren Dokumente automatisch in unterschiedliche Ebenen. Indizes " +"werden in Vorlagen definiert, in denen bestimmte Markierungen direkt durch " +"entsprechende Dokumenteneigenschaften ersetzt werden, wie zum Beispiel " +"Beschriftung oder Beschreibung, oder durch erweiterte Eigenschaften wie " +"Metadaten." #: views.py:148 msgid "There are no indexes." @@ -307,7 +327,10 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "Nach der Erstellung werden nur Dokumente des ausgewählten Typs im Index angezeigt. Eine Aktualisierung des Indexes kann nur durch Ereignisse von Dokumenten des ausgewählten Typs ausgelöst werden." +msgstr "" +"Nach der Erstellung werden nur Dokumente des ausgewählten Typs im Index " +"angezeigt. Eine Aktualisierung des Indexes kann nur durch Ereignisse von " +"Dokumenten des ausgewählten Typs ausgelöst werden." #: views.py:176 #, python-format @@ -338,7 +361,9 @@ msgstr "Indexvorlagen-Knotenpunkt %s bearbeiten?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "Dies könnte bedeuten, dass keine Index Vorlagen erstellt wurden, oder das erstellte Index Vorlagen nicht korrekt definiert wurden." +msgstr "" +"Dies könnte bedeuten, dass keine Index Vorlagen erstellt wurden, oder das " +"erstellte Index Vorlagen nicht korrekt definiert wurden." #: views.py:291 msgid "There are no index instances available." @@ -358,7 +383,9 @@ msgstr "Inhalt von Index %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "Weisen Sie dem Dokumententyp dieses Dokuments einen Index zu, damit es als Instanz der Organisationseinheiten dieses Indexes auftaucht." +msgstr "" +"Weisen Sie dem Dokumententyp dieses Dokuments einen Index zu, damit es als " +"Instanz der Organisationseinheiten dieses Indexes auftaucht." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po index 0b553be71f..5185c5a6e7 100644 --- a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -108,16 +109,19 @@ msgstr "Ετικέτα" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Αυτή η τιμή θα χρησιμοποιηθεί από τις άλλες εφαρμογές για να αναφέρονται σ' αυτό το ευρετήριο." +msgstr "" +"Αυτή η τιμή θα χρησιμοποιηθεί από τις άλλες εφαρμογές για να αναφέρονται σ' " +"αυτό το ευρετήριο." #: models.py:41 msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Προκαλεί αυτό το ευρετήριο να είναι ορατό και να ενημερώνεται όταν αλλάζουν τα δεδομένα των εγγράφων." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Προκαλεί αυτό το ευρετήριο να είναι ορατό και να ενημερώνεται όταν αλλάζουν " +"τα δεδομένα των εγγράφων." #: models.py:49 models.py:235 msgid "Enabled" @@ -147,13 +151,17 @@ msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Προκαλεί αυτό τον κόμβο να είναι ορατό και να ενημερώνεται όταν αλλάζουν τα δεδομένα των εγγράφων." +msgstr "" +"Προκαλεί αυτό τον κόμβο να είναι ορατό και να ενημερώνεται όταν αλλάζουν τα " +"δεδομένα των εγγράφων." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Επιλέξτε εδώ αν θέλετε ο κόμβος να περιλαμβάνει έγγραφα και να μην χρησιμοποιηθεί σαν γονέας για άλλους κόμβους." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Επιλέξτε εδώ αν θέλετε ο κόμβος να περιλαμβάνει έγγραφα και να μην " +"χρησιμοποιηθεί σαν γονέας για άλλους κόμβους." #: models.py:243 msgid "Link documents" @@ -176,7 +184,9 @@ msgstr "Ρίζα:" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Σφάλμα κατά την επεξεργασία εγγράφου: %(document)s; expression: %(expression)s; %(exception)s" +msgstr "" +"Σφάλμα κατά την επεξεργασία εγγράφου: %(document)s; expression: " +"%(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -279,8 +289,8 @@ msgstr "Τροποποίηση ευρετηρίου: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po index 83b0a00b10..ef41269a60 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po index b237c0ab33..1f3dc76eeb 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -111,16 +112,19 @@ msgstr "Etiqueta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Este valor será utilizado por otras aplicaciones para hacer referencia a este índice." +msgstr "" +"Este valor será utilizado por otras aplicaciones para hacer referencia a " +"este índice." #: models.py:41 msgid "Slug" msgstr "Identificador" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Hace que este índice sea visible y actualizado cuando los datos de documentos cambien." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Hace que este índice sea visible y actualizado cuando los datos de " +"documentos cambien." #: models.py:49 models.py:235 msgid "Enabled" @@ -142,7 +146,10 @@ msgstr "Instancias de índices" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas " +"predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/" +"templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -150,13 +157,17 @@ msgstr "Expresión de indexación" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Hace que este nodo sea visible y actualizado cuando los datos de los documentos son cambiados." +msgstr "" +"Hace que este nodo sea visible y actualizado cuando los datos de los " +"documentos son cambiados." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opción para que el nodo actúe como un contenedor de documentos y no como un padre para otros nodos secundarios." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opción para que el nodo actúe como un contenedor de documentos y " +"no como un padre para otros nodos secundarios." #: models.py:243 msgid "Link documents" @@ -179,7 +190,9 @@ msgstr "Nodo principal" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Error indexando documento: %(document)s; expresión: %(expression)s; %(exception)s" +msgstr "" +"Error indexando documento: %(document)s; expresión: %(expression)s; " +"%(exception)s" #: models.py:351 msgid "Index template node" @@ -262,7 +275,10 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "Los documentos de este tipo aparecerán en los índices vinculados cuando se actualicen. Los eventos de los documentos de este tipo activarán actualizaciones en los índices vinculados." +msgstr "" +"Los documentos de este tipo aparecerán en los índices vinculados cuando se " +"actualicen. Los eventos de los documentos de este tipo activarán " +"actualizaciones en los índices vinculados." #: views.py:81 #, python-format @@ -282,9 +298,13 @@ msgstr "Editar índice: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "Los índices agrupan el documento automáticamente en niveles. Los índices se definen mediante una plantilla cuyos marcadores se reemplazan con propiedades directas de documentos como etiqueta o descripción, o el de propiedades extendidas como metadatos." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"Los índices agrupan el documento automáticamente en niveles. Los índices se " +"definen mediante una plantilla cuyos marcadores se reemplazan con " +"propiedades directas de documentos como etiqueta o descripción, o el de " +"propiedades extendidas como metadatos." #: views.py:148 msgid "There are no indexes." @@ -303,7 +323,10 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "Solo los documentos de los tipos seleccionados se mostrarán en el índice cuando se construyan. Solo los eventos de los documentos de los tipos seleccionados activarán actualizaciones en el índice." +msgstr "" +"Solo los documentos de los tipos seleccionados se mostrarán en el índice " +"cuando se construyan. Solo los eventos de los documentos de los tipos " +"seleccionados activarán actualizaciones en el índice." #: views.py:176 #, python-format @@ -334,7 +357,9 @@ msgstr "¿Editar el nodo de plantilla de indice: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "Esto podría significar que no se han creado plantillas de índice o que existen plantillas de índice, pero no están definidas correctamente." +msgstr "" +"Esto podría significar que no se han creado plantillas de índice o que " +"existen plantillas de índice, pero no están definidas correctamente." #: views.py:291 msgid "There are no index instances available." @@ -354,7 +379,9 @@ msgstr "Contenido del indice: %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "Asigne el tipo de documento de este documento a un índice para que aparezca en unidades de organización de instancias de índices." +msgstr "" +"Asigne el tipo de documento de este documento a un índice para que aparezca " +"en unidades de organización de instancias de índices." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po index 3a9c3b2559..3579744efe 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -116,9 +117,9 @@ msgid "Slug" msgstr "لاغر" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "این داده ها را وقتی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می کند." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"این داده ها را وقتی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می کند." #: models.py:49 models.py:235 msgid "Enabled" @@ -148,13 +149,17 @@ msgstr "عبارت نمایه سازی" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "علت این گره را هنگامی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می شود." +msgstr "" +"علت این گره را هنگامی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می " +"شود." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "این گزینه را بررسی کنید تا این گره به عنوان یک ظرف برای اسناد عمل کند و نه به عنوان یک پدر برای گره های بیشتر." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"این گزینه را بررسی کنید تا این گره به عنوان یک ظرف برای اسناد عمل کند و نه " +"به عنوان یک پدر برای گره های بیشتر." #: models.py:243 msgid "Link documents" @@ -177,7 +182,8 @@ msgstr "ریشه" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "خطای نمایه سازی سند: %(document)s؛ عبارت: %(expression)s؛ %(exception)s" +msgstr "" +"خطای نمایه سازی سند: %(document)s؛ عبارت: %(expression)s؛ %(exception)s" #: models.py:351 msgid "Index template node" @@ -280,8 +286,8 @@ msgstr "ویرایش نمایه: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po index 4bcb6c420c..fa395443bd 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 12:07+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -114,16 +115,19 @@ msgstr "Libellé" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Cette valeur sera utilisée par d'autres applications pour faire référence à cet index." +msgstr "" +"Cette valeur sera utilisée par d'autres applications pour faire référence à " +"cet index." #: models.py:41 msgid "Slug" msgstr "Jeton" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Permet à cet index d'être à la fois visible et mis à jour quand le contenu d'un document est modifié." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Permet à cet index d'être à la fois visible et mis à jour quand le contenu " +"d'un document est modifié." #: models.py:49 models.py:235 msgid "Enabled" @@ -145,7 +149,9 @@ msgstr "Instances d'index" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de " +"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -153,13 +159,17 @@ msgstr "Expression d'indexation" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Permet à ce nœud d'être visible et mis à jour quand le contenu d'un document est modifié." +msgstr "" +"Permet à ce nœud d'être visible et mis à jour quand le contenu d'un document " +"est modifié." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Cochez cette option pour permettre à ce nœud d'être un conteneur de documents et pas seulement un nœud parent d'autres nœuds enfants." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Cochez cette option pour permettre à ce nœud d'être un conteneur de " +"documents et pas seulement un nœud parent d'autres nœuds enfants." #: models.py:243 msgid "Link documents" @@ -182,7 +192,9 @@ msgstr "Racine" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Erreur lors de l'indexation du document : %(document)s; expression: %(expression)s; %(exception)s" +msgstr "" +"Erreur lors de l'indexation du document : %(document)s; expression: " +"%(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -285,9 +297,13 @@ msgstr "Modifier l'index : %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "Indexe les groupes de documents automatiquement en niveaux. Les index sont définis à l'aide de modèles dont les marqueurs sont remplacés par les propriétés directes de documents tels que l'étiquette, la description ou de propriétés étendues telles que les métadonnées." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"Indexe les groupes de documents automatiquement en niveaux. Les index sont " +"définis à l'aide de modèles dont les marqueurs sont remplacés par les " +"propriétés directes de documents tels que l'étiquette, la description ou de " +"propriétés étendues telles que les métadonnées." #: views.py:148 msgid "There are no indexes." diff --git a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po index 27006e3c51..41f3ea0af7 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -116,8 +117,7 @@ msgid "Slug" msgstr "Hivatkozás" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -152,8 +152,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -280,8 +280,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po index 5de4f81f6a..8f23de97fd 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -115,8 +116,7 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po index 357411e38b..4ae1c838dc 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Giovanni Tricarico , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -112,16 +113,18 @@ msgstr "etichetta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Questo valore sarà usato dalle altre app per riferirirsi a questo indice" +msgstr "" +"Questo valore sarà usato dalle altre app per riferirirsi a questo indice" #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Fa sì che questo indice possa essere visibile e aggiornato quando i dati del documento cambiano." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Fa sì che questo indice possa essere visibile e aggiornato quando i dati del " +"documento cambiano." #: models.py:49 models.py:235 msgid "Enabled" @@ -151,13 +154,17 @@ msgstr "Espressione di indicizzazione" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del documento cambiano." +msgstr "" +"Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del " +"documento cambiano." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Selezionare questa opzione per questo specifico nodo quale contenitore per i documenti e non come un genitore per ulteriori nodi." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Selezionare questa opzione per questo specifico nodo quale contenitore per i " +"documenti e non come un genitore per ulteriori nodi." #: models.py:243 msgid "Link documents" @@ -180,7 +187,9 @@ msgstr "Principale" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Errore nell'ndicizzazione del documento: %(document)s; espressione: %(expression)s; %(exception)s" +msgstr "" +"Errore nell'ndicizzazione del documento: %(document)s; espressione: " +"%(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -283,8 +292,8 @@ msgstr "Modifica indice: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po index d5296d7cf2..99ff1ca03d 100644 --- a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:11+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: admin.py:24 msgid "None" @@ -116,8 +118,7 @@ msgid "Slug" msgstr "Lode" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "Indekss ir redzams un atjaunināts, kad mainās dokumentu dati." #: models.py:49 models.py:235 @@ -140,7 +141,9 @@ msgstr "Indeksa gadījumi" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes " +"valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -152,9 +155,11 @@ msgstr "Šāda mezgls ir redzams un atjaunināts, kad mainās dokumentu dati." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Atzīmējiet šo opciju, lai šis mezgls darbotos kā konteiners dokumentiem un nevis kā vecāks turpmākajiem mezgliem." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Atzīmējiet šo opciju, lai šis mezgls darbotos kā konteiners dokumentiem un " +"nevis kā vecāks turpmākajiem mezgliem." #: models.py:243 msgid "Link documents" @@ -177,7 +182,9 @@ msgstr "Sakne" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Kļūdas indeksēšanas dokuments: %(document)s; izteiksme: %(expression)s; %(exception)s" +msgstr "" +"Kļūdas indeksēšanas dokuments: %(document)s; izteiksme: %(expression)s; " +"%(exception)s" #: models.py:351 msgid "Index template node" @@ -260,7 +267,10 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "Šāda veida dokumenti parādīsies indeksos, kas saistīti, kad tie tiek atjaunināti. Šāda veida dokumentu notikumi izraisīs saistīto indeksu atjauninājumus." +msgstr "" +"Šāda veida dokumenti parādīsies indeksos, kas saistīti, kad tie tiek " +"atjaunināti. Šāda veida dokumentu notikumi izraisīs saistīto indeksu " +"atjauninājumus." #: views.py:81 #, python-format @@ -280,9 +290,13 @@ msgstr "Rediģēt indeksu: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "Indeksē grupas dokumentu automātiski līmeņos. Indexe tiek definēti, izmantojot veidni, kuras marķieri tiek aizstāti ar tiešām dokumentu īpašībām, piemēram, uzlīmi vai aprakstu, vai paplašinātām īpašībām, piemēram, metadatiem." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"Indeksē grupas dokumentu automātiski līmeņos. Indexe tiek definēti, " +"izmantojot veidni, kuras marķieri tiek aizstāti ar tiešām dokumentu " +"īpašībām, piemēram, uzlīmi vai aprakstu, vai paplašinātām īpašībām, " +"piemēram, metadatiem." #: views.py:148 msgid "There are no indexes." @@ -301,7 +315,9 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "Kad būvēts, indeksā tiks parādīti tikai atlasīto tipu dokumenti. Indeksā tiks atjaunināti tikai atlasīto tipu dokumentu notikumi." +msgstr "" +"Kad būvēts, indeksā tiks parādīti tikai atlasīto tipu dokumenti. Indeksā " +"tiks atjaunināti tikai atlasīto tipu dokumentu notikumi." #: views.py:176 #, python-format @@ -332,7 +348,9 @@ msgstr "Rediģējiet indeksa veidnes mezglu: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "Tas varētu nozīmēt, ka nav izveidotas nevienas indeksa veidnes vai ka indeksu veidnes, bet tās nav pareizi definētas." +msgstr "" +"Tas varētu nozīmēt, ka nav izveidotas nevienas indeksa veidnes vai ka " +"indeksu veidnes, bet tās nav pareizi definētas." #: views.py:291 msgid "There are no index instances available." @@ -352,7 +370,9 @@ msgstr "Indeksa saturs: %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "Piešķiriet šī dokumenta dokumenta tipu indeksam, lai tas parādītos šo indeksu organizācijas vienību gadījumos." +msgstr "" +"Piešķiriet šī dokumenta dokumenta tipu indeksam, lai tas parādītos šo " +"indeksu organizācijas vienību gadījumos." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po index dd14efa5d8..edec15a5c9 100644 --- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -118,9 +119,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." #: models.py:49 models.py:235 msgid "Enabled" @@ -150,13 +151,15 @@ msgstr "Indexeringsexpressie" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" +msgstr "" +"Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " #: models.py:243 msgid "Link documents" @@ -179,7 +182,9 @@ msgstr "" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Fout bij het indexeren van document: %(document)s; uitdrukking: %(expression)s; %(exception)s" +msgstr "" +"Fout bij het indexeren van document: %(document)s; uitdrukking: " +"%(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -282,8 +287,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po index 3d021a7640..319b96e328 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -111,16 +114,19 @@ msgstr "Etykieta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Wartość ta zostanie użyta przez inne aplikacje w celu odniesienia się do tego indeksu." +msgstr "" +"Wartość ta zostanie użyta przez inne aplikacje w celu odniesienia się do " +"tego indeksu." #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany danych dokumentów." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany " +"danych dokumentów." #: models.py:49 models.py:235 msgid "Enabled" @@ -154,9 +160,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." #: models.py:243 msgid "Link documents" @@ -179,7 +187,9 @@ msgstr "Korzeń" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Błąd indeksowania dokumentu: %(document)s; wyrażenie: %(expression)s; %(exception)s" +msgstr "" +"Błąd indeksowania dokumentu: %(document)s; wyrażenie: %(expression)s; " +"%(exception)s" #: models.py:351 msgid "Index template node" @@ -282,8 +292,8 @@ msgstr "Edytuj indeks: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po index f2bdca77ae..482932f0ea 100644 --- a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Renata Oliveira , 2011 # Vítor Figueiró , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -117,9 +118,10 @@ msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível e atualizado quando os dados do documento forem alterados." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível e atualizado quando os dados do " +"documento forem alterados." #: models.py:49 models.py:235 msgid "Enabled" @@ -149,13 +151,17 @@ msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó seja visível e atualizado quando os dados do documento forem alterados." +msgstr "" +"Faz com que este nó seja visível e atualizado quando os dados do documento " +"forem alterados." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Escolha esta opção para que este nó atue como contentor para documentos e não como pai de outros nós." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Escolha esta opção para que este nó atue como contentor para documentos e " +"não como pai de outros nós." #: models.py:243 msgid "Link documents" @@ -281,8 +287,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po index 706f3d32be..fd59f68416 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -112,16 +113,18 @@ msgstr "Etiqueta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Este valor será usado por outros aplicativos para referenciar este índice." +msgstr "" +"Este valor será usado por outros aplicativos para referenciar este índice." #: models.py:41 msgid "Slug" msgstr "Identificador" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível e atualizado quando dados de documentos forem alterados." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível e atualizado quando dados de documentos " +"forem alterados." #: models.py:49 models.py:235 msgid "Enabled" @@ -143,7 +146,9 @@ msgstr "Instâncias de índice" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Insira um modelo para renderizar. Use a linguagem padrão de modelos do Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "" +"Insira um modelo para renderizar. Use a linguagem padrão de modelos do " +"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:227 msgid "Indexing expression" @@ -151,13 +156,17 @@ msgstr "Indexando expressão" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó seja visível e atualizado quando dados do documento forem alterados." +msgstr "" +"Faz com que este nó seja visível e atualizado quando dados do documento " +"forem alterados." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opção para que este nó atue como um recipiente para documentos e não como um pai para outros nós secundários." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opção para que este nó atue como um recipiente para documentos e " +"não como um pai para outros nós secundários." #: models.py:243 msgid "Link documents" @@ -180,7 +189,9 @@ msgstr "Raiz" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Erro indexando documento: %(document)s; expressão: %(expression)s; %(exception)s" +msgstr "" +"Erro indexando documento: %(document)s; expressão: %(expression)s; " +"%(exception)s" #: models.py:351 msgid "Index template node" @@ -283,9 +294,13 @@ msgstr "Editar Indice: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "Índices agrupam documentos automaticamente em níveis. Índices são definidos usando modelos cujos marcadores são substituídos por propriedades diretas de documentos, como rótulo ou descrição, ou propriedades estendidas, como metadados." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"Índices agrupam documentos automaticamente em níveis. Índices são definidos " +"usando modelos cujos marcadores são substituídos por propriedades diretas de " +"documentos, como rótulo ou descrição, ou propriedades estendidas, como " +"metadados." #: views.py:148 msgid "There are no indexes." @@ -304,7 +319,10 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "Apenas os documentos dos tipos selecionados serão mostrados no índice após sua construção. Apenas os eventos dos documentos dos tipos selecionados desencadearão atualizações no índice." +msgstr "" +"Apenas os documentos dos tipos selecionados serão mostrados no índice após " +"sua construção. Apenas os eventos dos documentos dos tipos selecionados " +"desencadearão atualizações no índice." #: views.py:176 #, python-format @@ -335,7 +353,9 @@ msgstr "Editar o nó de modelo de índice: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "Isso pode significar que nenhum modelo de índice foi criado ou que existem modelos de índice, mas eles não foram definidos apropriadamente." +msgstr "" +"Isso pode significar que nenhum modelo de índice foi criado ou que existem " +"modelos de índice, mas eles não foram definidos apropriadamente." #: views.py:291 msgid "There are no index instances available." @@ -355,7 +375,9 @@ msgstr "Conteúdo para Indice? %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "Associe o tipo deste documento a um índice para que ele apareça em instâncias das unidades de organização desses índices." +msgstr "" +"Associe o tipo deste documento a um índice para que ele apareça em " +"instâncias das unidades de organização desses índices." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po index 53cfafe090..3fa3bf04d3 100644 --- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 08:11+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: admin.py:24 msgid "None" @@ -61,7 +63,9 @@ msgstr "Index editat" #: forms.py:19 msgid "Index templates to be queued for rebuilding." -msgstr "Șabloanele index ce vor fi în trimise în coada așteptare pentru reconstrucție." +msgstr "" +"Șabloanele index ce vor fi în trimise în coada așteptare pentru " +"reconstrucție." #: forms.py:20 links.py:30 msgid "Index templates" @@ -110,16 +114,19 @@ msgstr "Etichetă" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Această valoare va fi utilizată de alte aplicații pentru a face referință la acest index." +msgstr "" +"Această valoare va fi utilizată de alte aplicații pentru a face referință la " +"acest index." #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Cauză pentru acest index să fie vizibil și actualizat când documentul suferă schimbări." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Cauză pentru acest index să fie vizibil și actualizat când documentul suferă " +"schimbări." #: models.py:49 models.py:235 msgid "Enabled" @@ -141,7 +148,10 @@ msgstr "Exemple de index-uri" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating " +"implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/" +"builtins/)" #: models.py:227 msgid "Indexing expression" @@ -149,13 +159,17 @@ msgstr "Expresie de indexare" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Va face ca acest nod să fie vizibil și actualizat la modificarea datelor documentului." +msgstr "" +"Va face ca acest nod să fie vizibil și actualizat la modificarea datelor " +"documentului." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Bifați această opțiune pentru a avea acest nod ca un container pentru documente și nu ca un părinte pentru nodurile suplimentare." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Bifați această opțiune pentru a avea acest nod ca un container pentru " +"documente și nu ca un părinte pentru nodurile suplimentare." #: models.py:243 msgid "Link documents" @@ -178,7 +192,9 @@ msgstr "Rădăcină" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Eroare la indexarea ducumentuluir: %(document)s; expresie: %(expression)s; %(exception)s" +msgstr "" +"Eroare la indexarea ducumentuluir: %(document)s; expresie: %(expression)s; " +"%(exception)s" #: models.py:351 msgid "Index template node" @@ -261,7 +277,10 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "Documentele de acest tip vor apărea în indexurile legate când acestea vor fi actualizate. Evenimentele de documente de acest tip vor declanșa actualizări în indexurile legate." +msgstr "" +"Documentele de acest tip vor apărea în indexurile legate când acestea vor fi " +"actualizate. Evenimentele de documente de acest tip vor declanșa actualizări " +"în indexurile legate." #: views.py:81 #, python-format @@ -281,9 +300,13 @@ msgstr "Editați indexul: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "Indexurile grupează documentele automat în nivele. Indexurile sunt definite folosind un șablon al cărui marcatori sunt înlocuiți cu proprietăți directe ale unor documente, cum ar fi eticheta sau descrierea, sau cele ale unor proprietăți extinse precum metadatele." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"Indexurile grupează documentele automat în nivele. Indexurile sunt definite " +"folosind un șablon al cărui marcatori sunt înlocuiți cu proprietăți directe " +"ale unor documente, cum ar fi eticheta sau descrierea, sau cele ale unor " +"proprietăți extinse precum metadatele." #: views.py:148 msgid "There are no indexes." @@ -302,7 +325,10 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "Numai documentele tipurilor selectate vor fi afișate în index atunci când sunt construite. Doar evenimentele din documentele selectate vor declanșa actualizări ale indexului." +msgstr "" +"Numai documentele tipurilor selectate vor fi afișate în index atunci când " +"sunt construite. Doar evenimentele din documentele selectate vor declanșa " +"actualizări ale indexului." #: views.py:176 #, python-format @@ -333,7 +359,9 @@ msgstr "Editați nodul șablonului index: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "Acest lucru ar putea însemna că nu au fost create șabloane de index sau că există șabloane index, dar nu sunt definite în mod corespunzător." +msgstr "" +"Acest lucru ar putea însemna că nu au fost create șabloane de index sau că " +"există șabloane index, dar nu sunt definite în mod corespunzător." #: views.py:291 msgid "There are no index instances available." @@ -353,7 +381,9 @@ msgstr "Conținutul pentru index: %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "Atribuiți tipul de document al acestui document într-un index pentru a fi afișat în instanțele unităților de organizare a acestor indici." +msgstr "" +"Atribuiți tipul de document al acestui document într-un index pentru a fi " +"afișat în instanțele unităților de organizare a acestor indici." #: views.py:399 msgid "This document is not in any index" @@ -368,6 +398,7 @@ msgstr "Nodurile indexurilor care conțin documentul: %s" #, python-format msgid "%(count)d index queued for rebuild." msgid_plural "%(count)d indexes queued for rebuild." -msgstr[0] "Indicele %(count)d se află în coada de așteptare pentru reconstrucție." +msgstr[0] "" +"Indicele %(count)d se află în coada de așteptare pentru reconstrucție." msgstr[1] "%(count)d indexate în coada pentru reconstrucție." msgstr[2] "%(count)d indexări în coada pentru reconstrucție." diff --git a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po index 845e457efa..1c7111d124 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -116,9 +119,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Этот индекс должен быть видимым и обновляться при изменении данных документа." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Этот индекс должен быть видимым и обновляться при изменении данных документа." #: models.py:49 models.py:235 msgid "Enabled" @@ -148,13 +151,15 @@ msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Этот узел должен быть видимым и обновляются при изменении данных документа." +msgstr "" +"Этот узел должен быть видимым и обновляются при изменении данных документа." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Этот узел будет контейнером для документов и не будет иметь дочерних узлов." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Этот узел будет контейнером для документов и не будет иметь дочерних узлов." #: models.py:243 msgid "Link documents" @@ -280,8 +285,8 @@ msgstr "Редактировать индекс: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po index 5ead007df3..81c71258f0 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -115,8 +117,7 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +152,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +280,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po index 96b3f8f349..bd0240d8fe 100644 --- a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -110,16 +111,18 @@ msgstr "Etiket" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Bu değer, bu dizine atıfta bulunmak için diğer uygulamalar tarafından kullanılacaktır." +msgstr "" +"Bu değer, bu dizine atıfta bulunmak için diğer uygulamalar tarafından " +"kullanılacaktır." #: models.py:41 msgid "Slug" msgstr "Sümüklüböcek" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Belge verileri değiştiğinde bu dizin görünür ve güncellenmesine neden olur." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Belge verileri değiştiğinde bu dizin görünür ve güncellenmesine neden olur." #: models.py:49 models.py:235 msgid "Enabled" @@ -149,13 +152,16 @@ msgstr "Dizinleme ifadesi" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Belge verileri değiştiğinde bu düğümün görünür ve güncellenmesine neden olur." +msgstr "" +"Belge verileri değiştiğinde bu düğümün görünür ve güncellenmesine neden olur." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Bu düğümün belgeler için bir kap olarak hareket ettirilmesi ve diğer düğümler için üst öğe olmaması için bu seçeneği işaretleyin." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Bu düğümün belgeler için bir kap olarak hareket ettirilmesi ve diğer " +"düğümler için üst öğe olmaması için bu seçeneği işaretleyin." #: models.py:243 msgid "Link documents" @@ -281,8 +287,8 @@ msgstr "Dizini düzenle: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po index b80a09b96c..90166836b0 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -115,8 +116,7 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po index 01ff422ab1..9705e974b3 100644 --- a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -116,8 +117,7 @@ msgid "Slug" msgstr "标称" #: models.py:46 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "使文档数据更改时,此索引可见并更新。" #: models.py:49 models.py:235 @@ -140,7 +140,9 @@ msgstr "索引实例" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/" +"en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -152,8 +154,8 @@ msgstr "使文档数据更改时,此节点可见并更新。" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "选中此选项可使此节点充当文档的容器,而不是其他节点的父节点。" #: models.py:243 @@ -280,9 +282,11 @@ msgstr "编辑索引:%s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like" -" label or description, or that of extended properties like metadata." -msgstr "索引将文档自动分组到级别。 索引是使用模板定义的,其标记被替换为标签或描述等文档的直接属性,或者像元数据等的扩展属性。" +"template whose markers are replaced with direct properties of documents like " +"label or description, or that of extended properties like metadata." +msgstr "" +"索引将文档自动分组到级别。 索引是使用模板定义的,其标记被替换为标签或描述等文" +"档的直接属性,或者像元数据等的扩展属性。" #: views.py:148 msgid "There are no indexes." @@ -301,7 +305,9 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "构建时,只有所选类型的文档才会显示在索引中。只有所选类型的文档的事件才会触发索引中的更新。" +msgstr "" +"构建时,只有所选类型的文档才会显示在索引中。只有所选类型的文档的事件才会触发" +"索引中的更新。" #: views.py:176 #, python-format diff --git a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po index b244d48d33..f2a3b06aa3 100644 --- a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mohammed ALDOUB , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mohammed ALDOUB , 2018\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -160,11 +161,9 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po index 942e51ab43..0582a5f638 100644 --- a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Iliya Georgiev , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Iliya Georgiev , 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -159,8 +160,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po index 9602b69f52..334b53c9a2 100644 --- a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # www.ping.ba , 2018 # Atdhe Tabaku , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -163,8 +165,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." diff --git a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po index b8bb5168cc..006f01d7c8 100644 --- a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -155,8 +156,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po index 57074ba725..c48f285091 100644 --- a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -159,8 +160,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po index a57c650e68..dd421486cf 100644 --- a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Berny , 2018 # Robin Schubert , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -166,8 +167,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt " "wird, um Text aus PDF-Dateien zu extrahieren." diff --git a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po index a621d619a7..8741c90569 100644 --- a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2018 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,8 +160,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Διαδρομή του προγράμματος pdftotext για την εξαγωγή κειμένου από αρχεία PDF." diff --git a/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po index 7db5ef12e3..ea36b1516e 100644 --- a/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po index 922b71b1b1..a5f96d591d 100644 --- a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -84,8 +84,7 @@ msgstr "Página del documento" #: models.py:25 msgid "The actual text content as extracted by the document parsing backend." msgstr "" -"El contenido de texto real extraído por el documento que analiza el " -"servidor." +"El contenido de texto real extraído por el documento que analiza el servidor." #: models.py:33 msgid "Document page content" @@ -166,8 +165,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Ruta de acceso al programa de poppler llamado pdftotext utilizado para " "extraer texto de archivos PDF." diff --git a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po index bb2a981946..e73571ac3b 100644 --- a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2018 # Mehdi Amani , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,8 +160,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "محل فایل POPPLER جهت استخراج TEXT از PDF" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po index 94637db0f3..420d47c832 100644 --- a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po @@ -2,27 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Christophe CHAUVET , 2018 # Thierry Schott , 2018 # Yves Dubois , 2018 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -102,8 +102,8 @@ msgstr "Type de document" #: models.py:50 msgid "Automatically queue newly created documents for parsing." msgstr "" -"Ajouter automatiquement les documents nouvellement créés à la file d'attente" -" d'analyse." +"Ajouter automatiquement les documents nouvellement créés à la file d'attente " +"d'analyse." #: models.py:61 msgid "Document type settings" @@ -162,16 +162,15 @@ msgstr "Analyse de version de document" #: settings.py:12 msgid "Set new document types to perform parsing automatically by default." msgstr "" -"Les nouveaux types de documents, par défaut, réaliseront automatiquement une" -" analyse." +"Les nouveaux types de documents, par défaut, réaliseront automatiquement une " +"analyse." #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" -"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à" -" partir des fichiers PDF." +"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à " +"partir des fichiers PDF." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po index 5bec65a6ef..45a0ae8bff 100644 --- a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2018 # molnars , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: molnars , 2018\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,8 +161,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "elérési útvonal a poppler féle pdftotext programhoz ami PDF-ből szöveget " "nyer ki" diff --git a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po index f414106eed..ab706c6996 100644 --- a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sehat , 2018 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,8 +161,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po index 0fe8f25bc8..5633bc43c2 100644 --- a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po @@ -2,26 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Pierpaolo Baldan , 2017 # Marco Camplese , 2018 # Giovanni Tricarico , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Giovanni Tricarico , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -162,8 +162,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Percorso del programma poppler pdftotext.usato per estrarre il testo dai " "file PDF." diff --git a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po index 2c66444f92..a73bbfbf97 100644 --- a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -161,8 +162,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Failu ceļš uz poppler pdftotext programmu, ko izmanto, lai iegūtu tekstu no " "PDF failiem." diff --git a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po index 8db5f12772..05db3b4e45 100644 --- a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Johan Braeken, 2017 # Evelijn Saaltink , 2017 # Lucas Weel , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Lucas Weel , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -162,11 +163,10 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" -"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF" -" files." +"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF " +"files." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po index 436a112f40..ef16a818dd 100644 --- a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # mic , 2017 # Wojciech Warczakowski , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -161,8 +163,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po index 9bb66f7660..d926dcf230 100644 --- a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Emerson Soares , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Emerson Soares , 2018\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,8 +161,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Caminho para o programa pdftotext de poppler, usado para extrair texto de " "ficheiros PDF." diff --git a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po index 12b08fe0a1..3ef4f6df60 100644 --- a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rogerio Falcone , 2017 # Roberto Rosario, 2018 # Aline Freitas , 2018 # José Samuel Facundo da Silva , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" -"Last-Translator: José Samuel Facundo da Silva , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Last-Translator: José Samuel Facundo da Silva , " +"2018\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -167,8 +169,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Caminho para o programa poppler pdftotext usado para extrair texto de " "arquivos PDF." diff --git a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po index cdcdf3e664..dd2d88162a 100644 --- a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po @@ -2,27 +2,29 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Stefaniu Criste , 2017 # Badea Gabriel , 2018 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -40,8 +42,8 @@ msgstr "Conținut" msgid "" "Utility from the poppler-utils package used to text content from PDF files." msgstr "" -"Utilitar din pachetul poppler-utils utilizat pentru aextrage textul conținut" -" din fișiere PDF." +"Utilitar din pachetul poppler-utils utilizat pentru aextrage textul conținut " +"din fișiere PDF." #: events.py:12 msgid "Document version submitted for parsing" @@ -168,8 +170,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "Calea de fișier pentru programul pdftotext folosit pentru a extrage textul " "din fișiere PDF." diff --git a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po index e5177c9e77..449504fbfd 100644 --- a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Sergey Glita , 2018 # lilo.panic, 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: lilo.panic, 2018\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -161,11 +163,10 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" -"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста" -" из PDF файлов." +"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста " +"из PDF файлов." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po index 34513d2724..98782e9348 100644 --- a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: kontrabant , 2018\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -159,8 +161,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po index bcf282d7e1..bca9c7ded8 100644 --- a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: serhatcan77 , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -159,8 +160,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" "PDF dosyalarından metin ayıklamak için kullanılan poppler'ın pptotext " "programının dosya yolu." diff --git a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po index 59771e9e47..2f56b9852c 100644 --- a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Trung Phan Minh , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Trung Phan Minh , 2018\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -159,8 +160,7 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po index e1a5e76c48..7140c111a1 100644 --- a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -159,8 +159,7 @@ msgstr "设置新文档类型以默认自动执行解析。" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "poppler的pdftotext程序的文件路径,用于从PDF文件中提取文本。" #: views.py:43 diff --git a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po index 71759718e7..5cec6fa8eb 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po index 8967db9e12..7da6272c6b 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -295,7 +296,9 @@ msgstr "" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." +msgstr "" +"При големи бази данни тази операция може да отнеме известно време за " +"изпълнение." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po index ea49c62228..3611663972 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # Ilvana Dollaroviq , 2018 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po index 0e42ccec52..6ad2531d02 100644 --- a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po index 7c522dee07..17d9e32b4e 100644 --- a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po index 48df4dc453..851ff054ce 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Bjoern Kowarsch , 2018 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -56,7 +57,9 @@ msgstr "Schlüssel" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "Das Passwort zum Entsperren des Schlüssels um die Dokumentenversion zu unterschreiben." +msgstr "" +"Das Passwort zum Entsperren des Schlüssels um die Dokumentenversion zu " +"unterschreiben." #: forms.py:26 msgid "Passphrase" @@ -64,7 +67,9 @@ msgstr "Passwort" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "Der private Schlüssel, der für die Unterschrift dieser Dokumentenversion benutzt wird." +msgstr "" +"Der private Schlüssel, der für die Unterschrift dieser Dokumentenversion " +"benutzt wird." #: forms.py:46 msgid "Signature is embedded?" @@ -240,7 +245,9 @@ msgstr "Fehlende eingebettete Unterschrift überprüfen" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Pfad zu der Speicherklasse (Storage subclass) für die Speicherung separater Unterschriften." +msgstr "" +"Pfad zu der Speicherklasse (Storage subclass) für die Speicherung separater " +"Unterschriften." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -283,7 +290,11 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "Unterschriften dienen der Ermittlung der Autorenschaft und der Entdeckung von Fälschungen. Sie sind sehr sicher und schwer zu fälschen. Eine Unterschrift kann als Teil des Dokuments in dieses eingebettet sein oder separat erstellt und hochgeladen werden." +msgstr "" +"Unterschriften dienen der Ermittlung der Autorenschaft und der Entdeckung " +"von Fälschungen. Sie sind sehr sicher und schwer zu fälschen. Eine " +"Unterschrift kann als Teil des Dokuments in dieses eingebettet sein oder " +"separat erstellt und hochgeladen werden." #: views.py:328 msgid "There are no signatures for this document." @@ -301,7 +312,8 @@ msgstr "Seperate Unterschrift für Dokumentenversion %s hochladen" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." +msgstr "" +"Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po index db9a4717ca..cb10eeba95 100644 --- a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -294,7 +295,9 @@ msgstr "Ανέβασμα αποσπασμένης υπογραφής για τη #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Σε μεγάλες βάσεις δεδομένων αυτή η ενέργεια μπορεί να χρειαστεί αρκετό χρόνο για να ολοκληρωθεί." +msgstr "" +"Σε μεγάλες βάσεις δεδομένων αυτή η ενέργεια μπορεί να χρειαστεί αρκετό χρόνο " +"για να ολοκληρωθεί." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po index d3eb49268d..25140d385d 100644 --- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po index 22506ecc2f..5d3e26d27c 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -53,7 +54,9 @@ msgstr "Llave" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "La frase de contraseña para desbloquear la llave y permitir que se use para firmar la versión del documento." +msgstr "" +"La frase de contraseña para desbloquear la llave y permitir que se use para " +"firmar la versión del documento." #: forms.py:26 msgid "Passphrase" @@ -237,7 +240,8 @@ msgstr "Verificar la firma integrada que falta" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Ruta a la subclase Storage para usar cuando se almacenan firmas separadas." +msgstr "" +"Ruta a la subclase Storage para usar cuando se almacenan firmas separadas." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -280,7 +284,11 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "Las firmas ayudan a proporcionar evidencia de autoría y detección de manipulación. Son muy seguras y difíciles de falsificar. Una firma puede integrarse como parte del documento en sí o cargarse como un archivo separado." +msgstr "" +"Las firmas ayudan a proporcionar evidencia de autoría y detección de " +"manipulación. Son muy seguras y difíciles de falsificar. Una firma puede " +"integrarse como parte del documento en sí o cargarse como un archivo " +"separado." #: views.py:328 msgid "There are no signatures for this document." @@ -298,7 +306,9 @@ msgstr "Subir firma aparte para la versión de documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." +msgstr "" +"En bases de datos de gran tamaño esta operación puede tardar algún tiempo en " +"ejecutarse." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po index e84afa9e80..c008a478a3 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -295,7 +296,9 @@ msgstr "امضای جداگانه برای نسخه سند آپلود: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "در پایگاه داده های بزرگ این عملیات ممکن است برای اجرای برخی از زمان ها طول بکشد." +msgstr "" +"در پایگاه داده های بزرگ این عملیات ممکن است برای اجرای برخی از زمان ها طول " +"بکشد." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po index 9153a53895..bf6f7933ec 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2015,2017 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-17 12:04+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -55,7 +56,9 @@ msgstr "Clé" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "La phrase secrète permettant de déverrouiller la clé pour pouvoir signer la version du document." +msgstr "" +"La phrase secrète permettant de déverrouiller la clé pour pouvoir signer la " +"version du document." #: forms.py:26 msgid "Passphrase" @@ -239,7 +242,9 @@ msgstr "Vérifier la signature intégrée manquante" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Emplacement de la sous-classe de stockage à utiliser lors du stockage des signatures détachées." +msgstr "" +"Emplacement de la sous-classe de stockage à utiliser lors du stockage des " +"signatures détachées." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -282,7 +287,10 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "Les signatures aident à fournir des preuves d’auteur et la détection d’altération. Ils sont très sécurisés et difficiles à copier. Une signature peut être incorporée dans le document lui-même ou dans un fichier séparé." +msgstr "" +"Les signatures aident à fournir des preuves d’auteur et la détection " +"d’altération. Ils sont très sécurisés et difficiles à copier. Une signature " +"peut être incorporée dans le document lui-même ou dans un fichier séparé." #: views.py:328 msgid "There are no signatures for this document." @@ -300,7 +308,9 @@ msgstr "Transférer une signature détachée pour la version du document : %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." +msgstr "" +"Sur de grosses bases de données, cette opération peut prendre un certain " +"temps." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po index 3ff5f64116..43f042b116 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po index e59f6fb20a..a2ca0675e6 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-12 17:54+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -294,7 +295,9 @@ msgstr "" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu untuk dilaksanakan." +msgstr "" +"Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu " +"untuk dilaksanakan." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po index 989f04c5ff..5beb14b891 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Marco Camplese , 2016-2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -297,7 +298,9 @@ msgstr "Carica la firma scollegata per la versione documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." +msgstr "" +"Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di " +"tempo." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po index cc887f2da5..0d165fb6cf 100644 --- a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-31 12:16+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" @@ -50,7 +52,9 @@ msgstr "Atslēga" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "Ieejas frāze, lai atbloķētu atslēgu un ļautu to izmantot dokumenta versijas parakstīšanai." +msgstr "" +"Ieejas frāze, lai atbloķētu atslēgu un ļautu to izmantot dokumenta versijas " +"parakstīšanai." #: forms.py:26 msgid "Passphrase" @@ -58,7 +62,8 @@ msgstr "Ieejas frāze" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "Privāta atslēga, kas tiks izmantota, lai parakstītu šo dokumenta versiju." +msgstr "" +"Privāta atslēga, kas tiks izmantota, lai parakstītu šo dokumenta versiju." #: forms.py:46 msgid "Signature is embedded?" @@ -234,7 +239,8 @@ msgstr "Pārbaudiet trūkstošo iegulto parakstu" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Ceļš uz glabāšanas apakšklasi, kas jāizmanto, uzglabājot atdalītos parakstus." +msgstr "" +"Ceļš uz glabāšanas apakšklasi, kas jāizmanto, uzglabājot atdalītos parakstus." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -277,7 +283,10 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "Paraksti palīdz nodrošināt autorības pierādījumus un manipulāciju atklāšanu. Viņi ir ļoti droši un grūti veidojami. Parakstu var ievietot kā daļu no dokumenta vai augšupielādēt kā atsevišķu failu." +msgstr "" +"Paraksti palīdz nodrošināt autorības pierādījumus un manipulāciju atklāšanu. " +"Viņi ir ļoti droši un grūti veidojami. Parakstu var ievietot kā daļu no " +"dokumenta vai augšupielādēt kā atsevišķu failu." #: views.py:328 msgid "There are no signatures for this document." diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po index b9cd75081c..cc661a6a63 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po index 4e8e01d207..2fe3d579b0 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po index 3c0451b679..2e1c00b14b 100644 --- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Vítor Figueiró , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po index ed2f29deab..7aba52a8d8 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -236,7 +237,9 @@ msgstr "Verificar assinatura integrada que falta" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Caminho para a subclasse Storage que será usada para armazenar firmas separadas." +msgstr "" +"Caminho para a subclasse Storage que será usada para armazenar firmas " +"separadas." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -279,7 +282,10 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "Assinaturas ajudam a proporcionar evidência de autoria e detecção de manipulação. São muito seguras e difíceis de falsificar. Uma assinatura pode ser integrada ao próprio documento ou carregada como um arquivo separado." +msgstr "" +"Assinaturas ajudam a proporcionar evidência de autoria e detecção de " +"manipulação. São muito seguras e difíceis de falsificar. Uma assinatura pode " +"ser integrada ao próprio documento ou carregada como um arquivo separado." #: views.py:328 msgid "There are no signatures for this document." @@ -297,7 +303,8 @@ msgstr "Carregar a assinatura destacada para a versão do documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." +msgstr "" +"Em grandes bases de dados esta operação pode levar algum tempo para executar." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po index ed12073257..502a4b37b9 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-02 05:17+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" @@ -51,7 +53,9 @@ msgstr "Cheie" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "Fraza de acces pentru a debloca cheia și a permite utilizarea acesteia pentru a semna versiunea documentului." +msgstr "" +"Fraza de acces pentru a debloca cheia și a permite utilizarea acesteia " +"pentru a semna versiunea documentului." #: forms.py:26 msgid "Passphrase" @@ -59,7 +63,9 @@ msgstr "Expresie de acces" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "Cheia privată care va fi utilizată pentru a semna această versiune a documentului." +msgstr "" +"Cheia privată care va fi utilizată pentru a semna această versiune a " +"documentului." #: forms.py:46 msgid "Signature is embedded?" @@ -235,7 +241,9 @@ msgstr "Verificați semnatura încorporată lipsă" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Calea către subclasa de stocare care trebuie utilizată la stocarea semnăturilor detașate." +msgstr "" +"Calea către subclasa de stocare care trebuie utilizată la stocarea " +"semnăturilor detașate." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -278,7 +286,10 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "Semnăturile vă ajută să furnizați dovezi de autorizare și detectarea fraudelor. Sunt foarte sigure și greu de falsificat. O semnătură poate fi încorporată ca parte a documentului sau încărcată ca fișier separat." +msgstr "" +"Semnăturile vă ajută să furnizați dovezi de autorizare și detectarea " +"fraudelor. Sunt foarte sigure și greu de falsificat. O semnătură poate fi " +"încorporată ca parte a documentului sau încărcată ca fișier separat." #: views.py:328 msgid "There are no signatures for this document." @@ -296,7 +307,8 @@ msgstr "Încărcați semnătura detașată pentru versiunea documentului: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." +msgstr "" +"Pe baze de date mari, această operație poate dura ceva timp pentru a executa." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po index 6f408767f3..f638f118f0 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 # Sergey Glita , 2012 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" @@ -296,7 +299,9 @@ msgstr "Выгрузить отделённую подпись для верси #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." +msgstr "" +"В больших базах данных эта операция может занять некоторое время для " +"выполнения." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po index 08c1527554..9d250a5e03 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po index b819129565..5bf4057a5f 100644 --- a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po index a5f744f189..b6481515d8 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po index 1a5e8c0976..5fd8998352 100644 --- a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -277,7 +278,9 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "签名有助于提供作者证据和篡改检测。它们非常安全且难以伪造。签名可以作为文档本身的一部分嵌入,也可以作为单独的文件上传。" +msgstr "" +"签名有助于提供作者证据和篡改检测。它们非常安全且难以伪造。签名可以作为文档本" +"身的一部分嵌入,也可以作为单独的文件上传。" #: views.py:328 msgid "There are no signatures for this document." diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po index 0bdc7f76a6..077e867fe8 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -43,7 +45,7 @@ msgstr "لا شيء" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "مستخدم" @@ -55,15 +57,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "تعليق" @@ -79,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "العنوان" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "مفعل" @@ -115,6 +117,10 @@ msgstr "لا" msgid "Yes" msgstr "نعم" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +216,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Event type" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +412,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +427,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +628,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po index 6d195c88bc..df1962b19c 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -43,7 +44,7 @@ msgstr "Няма" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Потребител" @@ -55,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Коментар" @@ -79,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +116,10 @@ msgstr "Не" msgid "Yes" msgstr "Да" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +215,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Тип на събитието" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +426,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +627,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +716,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +737,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po index c13ee68149..149a17c3ad 100644 --- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -44,7 +46,7 @@ msgstr "Nijedno" msgid "Current state" msgstr "Trenutna stanje" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Korisnik" @@ -56,15 +58,15 @@ msgstr "Poslednja tranzicija" msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Završetak" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Tranzicija" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentar" @@ -80,7 +82,7 @@ msgstr "Vrsta akcije" msgid "Triggers" msgstr "Uzroci" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Akcije stanja rada" @@ -100,11 +102,11 @@ msgstr "Akcija" msgid "Namespace" msgstr "Imenovani prostor" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Labela" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Omogućeno" @@ -116,6 +118,10 @@ msgstr "Ne" msgid "Yes" msgstr "Da" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -197,13 +203,15 @@ msgstr "Na izlazu" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj tok posla. Može sadržavati samo slova, brojeve i podvučice." +msgstr "" +"Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj tok " +"posla. Može sadržavati samo slova, brojeve i podvučice." #: models.py:45 msgid "Internal name" msgstr "Interno ime" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Radni tok" @@ -211,127 +219,131 @@ msgstr "Radni tok" msgid "Initial state" msgstr "Početno stanje" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Izaberite da li će ovo biti stanje s kojom želite da radni tok započne. Samo jedno stanje može biti početno stanje." +msgstr "" +"Izaberite da li će ovo biti stanje s kojom želite da radni tok započne. Samo " +"jedno stanje može biti početno stanje." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inicijalno" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Unesite procenat završetka koji ovo stanje predstavlja u odnosu na radni tok. Koristite brojeve bez znakova procenata." +msgstr "" +"Unesite procenat završetka koji ovo stanje predstavlja u odnosu na radni " +"tok. Koristite brojeve bez znakova procenata." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Stanje radnog toka" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stanje Radnog toka" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "U kojem momentu stanje ova akcija će se izvršiti" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Kada" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Podešena staza Python do klase akcije radnog toka." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Putanja za ulaznu akciju" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Podaci o ulaznoj akciji" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Stanje akcije radnog toka" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Stanje porekla" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Stanje destinacije" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Prelazak na radni tok" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Prelazak na radni tok" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tip događaja" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Događaji tranzicije radnog toka" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Događaji tranzicije radnog toka" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Primjer posla" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Primeri toka posla" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Datum i vrijeme" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Unos tragova u procesu toka posla" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Unos tragova u procesu toka posla" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Izbor tranzicije nije validan." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Vrijeme radnog toka proxy" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Vrijeme radnog toka proxies" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy za izvršavanje radnog procesa" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Radni proksi za izvršavanje posla" @@ -375,7 +387,9 @@ msgstr "Primarni ključ vrste dokumenta koji treba dodati." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL koji ukazuje na tip dokumenta u odnosu na tok posla kome je priključen. Ova URL adresa se razlikuje od URL kanonskog tipa dokumenta." +msgstr "" +"API URL koji ukazuje na tip dokumenta u odnosu na tok posla kome je " +"priključen. Ova URL adresa se razlikuje od URL kanonskog tipa dokumenta." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -389,7 +403,9 @@ msgstr "Primarni ključ porekla stanja koji treba dodati." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "URL API koji ukazuje na tok posla u odnosu na dokument na koji je priložen. Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." +msgstr "" +"URL API koji ukazuje na tok posla u odnosu na dokument na koji je priložen. " +"Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -399,7 +415,9 @@ msgstr "Veza na čitavu istoriju ovog toka posla." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Lista odvojenih primarnih ključeva tipova dokumenata na koje se taj radni proces povezuje." +msgstr "" +"Lista odvojenih primarnih ključeva tipova dokumenata na koje se taj radni " +"proces povezuje." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -407,8 +425,8 @@ msgstr "Primarni ključ tranzicije koji treba dodati." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +440,7 @@ msgstr "Radni tokovi za dokument: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -547,7 +564,9 @@ msgstr "Tipovi dokumenata dodeljeni ovim radnim tokovima" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "Uklanjanje tipa dokumenta iz radnog toka će takođe ukloniti sve pokrenute instance tog toka posla za dokumente tipa dokumenta koji je upravo uklonjen." +msgstr "" +"Uklanjanje tipa dokumenta iz radnog toka će takođe ukloniti sve pokrenute " +"instance tog toka posla za dokumente tipa dokumenta koji je upravo uklonjen." #: views/workflow_views.py:212 #, python-format @@ -571,8 +590,8 @@ msgstr "Izmenite akciju stanja toka posla: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +643,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,11 +732,15 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Može biti IP adresa, domen ili šablon. Šabloni primaju primere prijavljivanja dnevnika rada kao dio njihovog konteksta pomoću varijable \"entri_log\". \"Entri_log\" zauzvrat pruža \"vorkflov_instance\", \"datetime\", \"transition\", \"user\" i \"comment\" atribute." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Može biti IP adresa, domen ili šablon. Šabloni primaju primere " +"prijavljivanja dnevnika rada kao dio njihovog konteksta pomoću varijable " +"\"entri_log\". \"Entri_log\" zauzvrat pruža \"vorkflov_instance\", \"datetime" +"\", \"transition\", \"user\" i \"comment\" atribute." #: workflow_actions.py:103 msgid "Timeout" @@ -735,11 +757,16 @@ msgstr "Payload" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "JSON dokument koji treba uključiti u zahtev. Može biti i šablon koji vraća JSON dokument. Šabloni primaju primere prijavljivanja dnevnika rada kao dio njihovog konteksta pomoću varijable \"entri_log\". \"Entri_log\" zauzvrat pruža \"vorkflov_instance\", \"datetime\", \"transition\", \"user\" i \"comment\" atribute." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"JSON dokument koji treba uključiti u zahtev. Može biti i šablon koji vraća " +"JSON dokument. Šabloni primaju primere prijavljivanja dnevnika rada kao dio " +"njihovog konteksta pomoću varijable \"entri_log\". \"Entri_log\" zauzvrat " +"pruža \"vorkflov_instance\", \"datetime\", \"transition\", \"user\" i " +"\"comment\" atribute." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po index 5521eb6690..8eeca4d06b 100644 --- a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -43,7 +45,7 @@ msgstr "" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "" @@ -55,15 +57,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "" @@ -79,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Označení" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +117,10 @@ msgstr "" msgid "Yes" msgstr "" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +216,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +412,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +427,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +628,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po index fca096aff5..31b9e384c0 100644 --- a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -43,7 +44,7 @@ msgstr "Ingen" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Bruger" @@ -55,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "" @@ -79,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiket" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +116,10 @@ msgstr "Nej" msgid "Yes" msgstr "Ja" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +215,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +426,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +627,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +716,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +737,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po index a63c3a1748..ff26365068 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -36,7 +37,8 @@ msgstr "Den aktuellen Status des ausgewählten Workflows zurückgeben" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Den Ergebniswert des aktuellen Status des ausgewählten Workflows zurückgeben" +msgstr "" +"Den Ergebniswert des aktuellen Status des ausgewählten Workflows zurückgeben" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -46,7 +48,7 @@ msgstr "Keiner" msgid "Current state" msgstr "Aktueller Status" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Benutzer" @@ -58,15 +60,15 @@ msgstr "Letzter Übergang" msgid "Date and time" msgstr "Datum und Zeit" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Fertigstellung" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Übergang" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Kommentar" @@ -82,7 +84,7 @@ msgstr "Aktionstyp" msgid "Triggers" msgstr "Trigger" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Statusaktionen von Workflows" @@ -102,11 +104,11 @@ msgstr "Aktion" msgid "Namespace" msgstr "Namensraum" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Bezeichnung" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Aktiviert" @@ -118,6 +120,10 @@ msgstr "Nein" msgid "Yes" msgstr "Ja" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -199,13 +205,16 @@ msgstr "Beim Verlassen" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Dieser Wert wird von anderen Programmteilen verwendet, um sich auf diesen Workflow zu beziehen. Es sind nur Buchstaben, Zahlen und Unterstriche erlaubt." +msgstr "" +"Dieser Wert wird von anderen Programmteilen verwendet, um sich auf diesen " +"Workflow zu beziehen. Es sind nur Buchstaben, Zahlen und Unterstriche " +"erlaubt." #: models.py:45 msgid "Internal name" msgstr "Interner Name" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Workflow" @@ -213,127 +222,133 @@ msgstr "Workflow" msgid "Initial state" msgstr "Initialstatus" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." +msgstr "" +"Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein " +"Status kann initial sein." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Initial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." +msgstr "" +"Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der " +"Fertigstellung in Bezug auf den Workflow angibt." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Workflow Status" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Workflow Status" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Ein einfacher Identifikator für diese Aktion." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Zu welchem Zeitpunkt des Status diese Aktion ausgeführt wird" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Wann" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "Der punktierte Pythonpfad zu der Workflowaktionsklasse, die ausgeführt werden soll." +msgstr "" +"Der punktierte Pythonpfad zu der Workflowaktionsklasse, die ausgeführt " +"werden soll." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Pfad der Eingangsaktion" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Daten der Eingangsaktion" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Workflowstatusaktion" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Herkunftsstatus" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Zielstatus" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Workflow Übergang" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Workflow Übergänge" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Ereignistyp" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Workflowübergangstriggerereignis" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Workflowübergangstriggerereignisse" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Workflow" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Workflows" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Zeit" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Workflow Logeintrag" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Workflow Logeinträge" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Kein gültiger Übergang." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Workflow-Laufzeitproxy" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Workflow-Laufzeit-Proxies" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Laufzeitproxy für Workflowstatus" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Runtime-Proxies für Workflowstatus" @@ -377,7 +392,10 @@ msgstr "Primärschlüssel des hinzuzufügenden Dokumententyps." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL für den Dokumententyp, der auf den Workflow verweist, mit dem er verknüpft ist. Diese URL unterscheidet sich von der kanonischen Dokumententyp-URL." +msgstr "" +"API URL für den Dokumententyp, der auf den Workflow verweist, mit dem er " +"verknüpft ist. Diese URL unterscheidet sich von der kanonischen " +"Dokumententyp-URL." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -391,7 +409,9 @@ msgstr "Primärschlüssel des hinzuzufügenden Herkunftsstatus." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "API URL für den Workflow, der auf das Dokument verweist, mit dem er verknüpft ist. Diese URL unterscheidet sich von der kanonischen Workflow-URL." +msgstr "" +"API URL für den Workflow, der auf das Dokument verweist, mit dem er " +"verknüpft ist. Diese URL unterscheidet sich von der kanonischen Workflow-URL." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -401,7 +421,9 @@ msgstr "Ein Link zur kompletten Historie dieses Workflows." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen dieser Workflow verknüpft wird." +msgstr "" +"Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen " +"dieser Workflow verknüpft wird." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -409,9 +431,11 @@ msgstr "Primärschlüssel des hinzuzufügenden Übergangs." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " -msgstr "Weisen Sie Workflows zu dem Dokumententyp dieses Dokuments zu, damit sie für dieses Dokument durchgeführt werden." +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " +msgstr "" +"Weisen Sie Workflows zu dem Dokumententyp dieses Dokuments zu, damit sie für " +"dieses Dokument durchgeführt werden." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -424,8 +448,7 @@ msgstr "Workflows für Dokument %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -455,7 +478,9 @@ msgstr "Übergang für Workflow %s durchführen" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "Verknüpfen Sie einen Workflow mit Dokumententypen, um die Dokumente dieser Typen hier anzuzeigen." +msgstr "" +"Verknüpfen Sie einen Workflow mit Dokumententypen, um die Dokumente dieser " +"Typen hier anzuzeigen." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -470,7 +495,9 @@ msgstr "Dokumente mit Workflow %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "Workflows erstellen und mit einem Dokumententyp verknüpfen. Aktive Workflows werden hier angezeigt und die Dokumente, für die sie ausgeführt werden." +msgstr "" +"Workflows erstellen und mit einem Dokumententyp verknüpfen. Aktive Workflows " +"werden hier angezeigt und die Dokumente, für die sie ausgeführt werden." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -510,7 +537,9 @@ msgstr "Diesem Dokumententyp zugewiesene Workflows" msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "Die Entfernung eines Workflows von einem Dokumententyp wird auch alle laufenden Instanzen dieses Workflows löschen." +msgstr "" +"Die Entfernung eines Workflows von einem Dokumententyp wird auch alle " +"laufenden Instanzen dieses Workflows löschen." #: views/workflow_views.py:87 #, python-format @@ -521,7 +550,10 @@ msgstr "An Dokumententyp %s zugewiesene Workflows" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "Workflows speichern eine Reihenfolge von Zuständen (Status) und verfolgen den aktuellen Status eines Dokuments. Übergänge werden dazu verwendet, vom aktuellen Status zu einem neuen zu wechseln." +msgstr "" +"Workflows speichern eine Reihenfolge von Zuständen (Status) und verfolgen " +"den aktuellen Status eines Dokuments. Übergänge werden dazu verwendet, vom " +"aktuellen Status zu einem neuen zu wechseln." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -549,7 +581,9 @@ msgstr "Dokumententypen zugeordnet zu diesem Workflow" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "Das Entfernen eines Dokumententyps von einem Workflow wird auch sämtliche laufenden Workflowinstanzen für andere Dokumente dieses Typs entfernen." +msgstr "" +"Das Entfernen eines Dokumententyps von einem Workflow wird auch sämtliche " +"laufenden Workflowinstanzen für andere Dokumente dieses Typs entfernen." #: views/workflow_views.py:212 #, python-format @@ -573,9 +607,11 @@ msgstr "Workflowstatusaktion %s bearbeiten" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." -msgstr "Workflowstatusaktionen sind Makros, die bei Betreten oder Verlassen eines Dokumentenstatus ausgeführt werden." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." +msgstr "" +"Workflowstatusaktionen sind Makros, die bei Betreten oder Verlassen eines " +"Dokumentenstatus ausgeführt werden." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -626,9 +662,10 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." -msgstr "Einen Übergang erstellen und verwenden, um von einem Status in einen anderen zu wechseln." +"Create a transition and use it to move a workflow from one state to another." +msgstr "" +"Einen Übergang erstellen und verwenden, um von einem Status in einen anderen " +"zu wechseln." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -642,7 +679,8 @@ msgstr "Übergänge für Workflow %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Fehler bei der Aktualisierung von Workflowübergangstriggerereignissen; %s" +msgstr "" +"Fehler bei der Aktualisierung von Workflowübergangstriggerereignissen; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" @@ -651,7 +689,9 @@ msgstr "Workflowübergangstriggerereignissen erfolgreich aktualisiert" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Trigger sind Ereignisse, die für eine automatische Ausführung dieses Übergangs sorgen." +msgstr "" +"Trigger sind Ereignisse, die für eine automatische Ausführung dieses " +"Übergangs sorgen." #: views/workflow_views.py:698 #, python-format @@ -666,7 +706,9 @@ msgstr "Alle Workflows starten?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Dies wird alle Workflows anstoßen, die erst nach dem Upload von Dokumenten erstellt wurden." +msgstr "" +"Dies wird alle Workflows anstoßen, die erst nach dem Upload von Dokumenten " +"erstellt wurden." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -684,7 +726,9 @@ msgstr "" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "Der neue Bezeichner, der dem Dokument zugewiesen werden soll. Kann eine Zeichenfolge oder eine Vorlage sein." +msgstr "" +"Der neue Bezeichner, der dem Dokument zugewiesen werden soll. Kann eine " +"Zeichenfolge oder eine Vorlage sein." #: workflow_actions.py:30 msgid "Document description" @@ -694,7 +738,9 @@ msgstr "" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "Die neue Beschreibung, die dem Dokument zugewiesen werden soll. Kann eine Zeichenfolge oder eine Vorlage sein." +msgstr "" +"Die neue Beschreibung, die dem Dokument zugewiesen werden soll. Kann eine " +"Zeichenfolge oder eine Vorlage sein." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -716,11 +762,15 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Kann eine IP-Adresse, eine Domain oder eine Vorlage sein. Vorlagen erhalten die Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". \"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition\", \"user\" und \"comment\" Attribute." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Kann eine IP-Adresse, eine Domain oder eine Vorlage sein. Vorlagen erhalten " +"die Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". " +"\"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition" +"\", \"user\" und \"comment\" Attribute." #: workflow_actions.py:103 msgid "Timeout" @@ -737,11 +787,16 @@ msgstr "Payload" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "Ein JSON-Dokument, das in den Request eingeschlossen werden soll. Kann auch eine Vorlage sein, die ein JSON-Dokument zurückgibt. Vorlagen erhalten die Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". \"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition\", \"user\" und \"comment\" Attribute." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"Ein JSON-Dokument, das in den Request eingeschlossen werden soll. Kann auch " +"eine Vorlage sein, die ein JSON-Dokument zurückgibt. Vorlagen erhalten die " +"Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". " +"\"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition" +"\", \"user\" und \"comment\" Attribute." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po index 838fdac654..1b660fab9d 100644 --- a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -33,7 +34,9 @@ msgstr "Επιστέφει την τρέχουσα κατταση της επι #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Επιστρέφει την τιμή ολολήρωσης της τρέχουσας κατάστασης για την επιλεγμένη ροή εργασίας" +msgstr "" +"Επιστρέφει την τιμή ολολήρωσης της τρέχουσας κατάστασης για την επιλεγμένη " +"ροή εργασίας" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -43,7 +46,7 @@ msgstr "Κανένα" msgid "Current state" msgstr "Τρέχουσα κατσταση" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Χρήστης" @@ -55,15 +58,15 @@ msgstr "Τελευταία μετάβαση" msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Ολοκλήρωση" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Μετάβαση" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Σχόλιο" @@ -79,7 +82,7 @@ msgstr "Τύπος ενέργειας" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Ενέργειες κατάστασης ροής εργασίας" @@ -99,11 +102,11 @@ msgstr "Ενέργεια" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Ετικέτα" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Ενεργοποιημένο" @@ -115,6 +118,10 @@ msgstr "Όχι" msgid "Yes" msgstr "Ναι" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -196,13 +203,16 @@ msgstr "Κατά την έξοδο" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Αυτή η τιμή θα χρησιμοποιείτε από τις άλλες εφαρμογές σαν αναφορά γι' αυτή την ροή εργασίας. Χρησιμοποιήστε μόνο γράμματα,αριθμούς και τον χαρακτήρα υπογράμμισης." +msgstr "" +"Αυτή η τιμή θα χρησιμοποιείτε από τις άλλες εφαρμογές σαν αναφορά γι' αυτή " +"την ροή εργασίας. Χρησιμοποιήστε μόνο γράμματα,αριθμούς και τον χαρακτήρα " +"υπογράμμισης." #: models.py:45 msgid "Internal name" msgstr "Εσωτερικό όνομα" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Ροή εργασίας" @@ -210,127 +220,131 @@ msgstr "Ροή εργασίας" msgid "Initial state" msgstr "Αρχική κατάσταση" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Επιλέξτε αν αυτή θα είναι η αρχική κατάσταση της ροής εργασίας. Μόνο μια κατάσταση μπορεί να είναι η αρχική κατάσταση." +msgstr "" +"Επιλέξτε αν αυτή θα είναι η αρχική κατάσταση της ροής εργασίας. Μόνο μια " +"κατάσταση μπορεί να είναι η αρχική κατάσταση." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Αρχική" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Εισάγετε το ποσοστό ολοκλήρωσης που εκπροσωπεί αυτή η κατάσταση σε σχέση με την ροή εργασίας. Χρησιμοποιήστε αριθμούς χωρίς το σύμβολο του ποσοστού (%)." +msgstr "" +"Εισάγετε το ποσοστό ολοκλήρωσης που εκπροσωπεί αυτή η κατάσταση σε σχέση με " +"την ροή εργασίας. Χρησιμοποιήστε αριθμούς χωρίς το σύμβολο του ποσοστού (%)." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Κατάσταση ροής εργασίας" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Καταστάσεις ροής εργασίας" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Σε ποιό σημείο αυτής της κατάστασης θα εκτελεστεί αυτή η ενέργεια " -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Πότε" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Ενέργεια κατάστασης ροής εργασίας" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Κατάσταση προέλευσης" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Κατάσταση προορισμού" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Μετάβαση ροής εργασίας" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Μεταβάσεις ροής εργασίας" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Τύπος συμβάντος" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Συμβάν ενεργοποίησης μετάβασης ροής εργασίας" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Συμβάντα ενεργοποίησης μεταβάσεων ροής εργασίας" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Έγγραφο" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Περιστατικό ροής εργασίας" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Περιστατικά ροής εργασίας" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Ημερομηνία και ώρα" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Εγγραφή ημερολογίου περιστατικού ροής εργασίας" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Εγγραφές ημερολογίου περιστατικών ροής εργασίας" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Άκυρη επιλογή μετάβασης." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +420,8 @@ msgstr "Πρωτεύον κλειδί της μετάβασης που θα π #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +435,7 @@ msgstr "Ροή εργασίας για το έγγραφο: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +583,8 @@ msgstr "Τροποποίηση ενέργειας κατάστασης ροής #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +636,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -639,7 +651,9 @@ msgstr "Μεταβάσεις της ροής εργασίας: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Σφάλμα κατά την τροποποίηση του συμβάντος ενεργοποίησης μετάβασης ροής εργασίας: %s" +msgstr "" +"Σφάλμα κατά την τροποποίηση του συμβάντος ενεργοποίησης μετάβασης ροής " +"εργασίας: %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" @@ -713,10 +727,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +748,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po index 4bc702a7e8..e6346cf3e1 100644 --- a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgstr "" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "" msgid "Yes" msgstr "" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po index ced630bcd8..b5856aadd9 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2016-2019 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -35,7 +36,9 @@ msgstr "Devolver el estado actual del flujo de trabajo seleccionado" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Devolver el valor de finalización del estado actual del flujo de trabajo seleccionado" +msgstr "" +"Devolver el valor de finalización del estado actual del flujo de trabajo " +"seleccionado" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -45,7 +48,7 @@ msgstr "Ninguno" msgid "Current state" msgstr "Estado actual" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Usuario" @@ -57,15 +60,15 @@ msgstr "Última transición" msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Cantidad de completación" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transición" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentario" @@ -81,7 +84,7 @@ msgstr "Tipo de acción" msgid "Triggers" msgstr "Disparadores" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Acciones del estado del flujo de trabajo" @@ -101,11 +104,11 @@ msgstr "Acción" msgid "Namespace" msgstr "Categoría" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiqueta" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Habilitado" @@ -117,6 +120,10 @@ msgstr "No" msgid "Yes" msgstr "Si" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -198,13 +205,15 @@ msgstr "A la salida" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Este valor será utilizado por otras aplicaciones para hacer referencia a este flujo de trabajo. Sólo puede contener letras, números y subrayados." +msgstr "" +"Este valor será utilizado por otras aplicaciones para hacer referencia a " +"este flujo de trabajo. Sólo puede contener letras, números y subrayados." #: models.py:45 msgid "Internal name" msgstr "Nombre interno" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Flujo de trabajo" @@ -212,127 +221,133 @@ msgstr "Flujo de trabajo" msgid "Initial state" msgstr "Estado inicial" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Seleccione si este va a ser el estado con el que desea que el flujo de trabajo comience. Sólo un estado puede ser el estado inicial." +msgstr "" +"Seleccione si este va a ser el estado con el que desea que el flujo de " +"trabajo comience. Sólo un estado puede ser el estado inicial." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inicial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Introduzca el porcentaje de finalización que este estado representa en relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." +msgstr "" +"Introduzca el porcentaje de finalización que este estado representa en " +"relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Estado de flujo de trabajo" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Estados de flujo de trabajo" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Un identificador simple para esta acción." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "En qué momento del estado se ejecutará esta acción" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Cuando" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "La ruta de Python separada por puntos a la clase de acción de flujo de trabajo que se va a ejecutar." +msgstr "" +"La ruta de Python separada por puntos a la clase de acción de flujo de " +"trabajo que se va a ejecutar." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Ruta de acceso a la acción" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Datos de la acción" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Acción del estado del flujo de trabajo" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Estado origen" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Estado destino" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transición de flujo de trabajo" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transiciones de flujo de trabajo" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo de evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Disparador de transiciones de flujo de trabajo" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Disparadores de transiciones de flujo de trabajo" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Documento" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instancia de flujo de trabajo" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Instancias de flujo de trabajo" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Fecha y hora" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Entrada de registro de la instancia de flujo de trabajo" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Entradas de registro de las instancias de flujos de trabajo" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "No hay opción valida de transición." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy de tiempo de ejecución de flujo de trabajo" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxies de tiempo de ejecución de flujo de trabajo" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy de tiempo de ejecución de estado de flujo de trabajo" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxies de tiempo de ejecución de estado de flujo de trabajo" @@ -376,7 +391,10 @@ msgstr "Llave primaria del tipo de documento a ser agregado." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "URL de la API que apunta a un tipo de documento en relación con el flujo de trabajo al que está conectado. Esta URL es diferente de la URL del tipo de documento canónico." +msgstr "" +"URL de la API que apunta a un tipo de documento en relación con el flujo de " +"trabajo al que está conectado. Esta URL es diferente de la URL del tipo de " +"documento canónico." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -390,7 +408,9 @@ msgstr "Llave primaria del estado inicial a ser agregado." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "API URL que apunta a un flujo de trabajo en relación con el documento al que está asociado. Esta URL es diferente de la URL de flujo de trabajo canónico." +msgstr "" +"API URL que apunta a un flujo de trabajo en relación con el documento al que " +"está asociado. Esta URL es diferente de la URL de flujo de trabajo canónico." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -400,7 +420,9 @@ msgstr "Un enlace a la historia completa de este flujo de trabajo." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Lista separada por comas de las llaves principales de tipos de documentos a los que se adjuntará este flujo de trabajo." +msgstr "" +"Lista separada por comas de las llaves principales de tipos de documentos a " +"los que se adjuntará este flujo de trabajo." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -408,9 +430,11 @@ msgstr "Llave primaria de la transición a añadir." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " -msgstr "Asigne flujos de trabajo al tipo de documento de este documento para que este documento ejecute esos flujos de trabajo." +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " +msgstr "" +"Asigne flujos de trabajo al tipo de documento de este documento para que " +"este documento ejecute esos flujos de trabajo." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -423,9 +447,10 @@ msgstr "Flujos de trabajo para el documento: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." -msgstr "Esta vista mostrará los cambios de estado a medida que se realiza la transición de una instancia de flujo de trabajo." +"This view will show the state changes as a workflow instance is transitioned." +msgstr "" +"Esta vista mostrará los cambios de estado a medida que se realiza la " +"transición de una instancia de flujo de trabajo." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" @@ -454,7 +479,9 @@ msgstr "Realizar la transición de flujo de trabajo: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "Asociar un flujo de trabajo con algunos tipos de documentos y documentos de esos tipos se enumerará en esta vista." +msgstr "" +"Asociar un flujo de trabajo con algunos tipos de documentos y documentos de " +"esos tipos se enumerará en esta vista." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -469,7 +496,10 @@ msgstr "Documentos con el flujo de trabajo: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "Cree algunos flujos de trabajo y asócielos con un tipo de documento. Los flujos de trabajo activos se mostrarán aquí y los documentos para los que se están ejecutando." +msgstr "" +"Cree algunos flujos de trabajo y asócielos con un tipo de documento. Los " +"flujos de trabajo activos se mostrarán aquí y los documentos para los que se " +"están ejecutando." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -509,7 +539,9 @@ msgstr "Flujos de trabajo asignados a este tipo de documento." msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "La eliminación de un flujo de trabajo de un tipo de documento también eliminará todas las instancias en ejecución de ese flujo de trabajo." +msgstr "" +"La eliminación de un flujo de trabajo de un tipo de documento también " +"eliminará todas las instancias en ejecución de ese flujo de trabajo." #: views/workflow_views.py:87 #, python-format @@ -520,7 +552,10 @@ msgstr "Flujos de trabajo asignados al tipo de documento: %s" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "Los flujos de trabajo almacenan una serie de estados y realizan un seguimiento del estado actual de un documento. Las transiciones se utilizan para cambiar el estado actual a uno nuevo." +msgstr "" +"Los flujos de trabajo almacenan una serie de estados y realizan un " +"seguimiento del estado actual de un documento. Las transiciones se utilizan " +"para cambiar el estado actual a uno nuevo." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -548,7 +583,10 @@ msgstr "Tipos de documentos asignados a este flujo de trabajo" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "La eliminación de un tipo de documento de un flujo de trabajo también eliminará todas las instancias en ejecución de ese flujo de trabajo para documentos del tipo de documento que se acaba de eliminar." +msgstr "" +"La eliminación de un tipo de documento de un flujo de trabajo también " +"eliminará todas las instancias en ejecución de ese flujo de trabajo para " +"documentos del tipo de documento que se acaba de eliminar." #: views/workflow_views.py:212 #, python-format @@ -572,9 +610,11 @@ msgstr "Editar acción de estado de flujo de trabajo: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." -msgstr "Las acciones de estado de flujo de trabajo son macros que se ejecutan cuando los documentos entran o salen del estado en el que residen." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." +msgstr "" +"Las acciones de estado de flujo de trabajo son macros que se ejecutan cuando " +"los documentos entran o salen del estado en el que residen." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -625,9 +665,10 @@ msgstr "Editar la transición del flujo de trabajo: %s" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." -msgstr "Cree una transición y úselo para mover un flujo de trabajo de un estado a otro." +"Create a transition and use it to move a workflow from one state to another." +msgstr "" +"Cree una transición y úselo para mover un flujo de trabajo de un estado a " +"otro." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -641,16 +682,21 @@ msgstr "Transiciones de flujo de trabajo: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Error al actualizar eventos de disparo de transición de flujo de trabajo; %s" +msgstr "" +"Error al actualizar eventos de disparo de transición de flujo de trabajo; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "Eventos de activación de transición de flujo de trabajo actualizados correctamente" +msgstr "" +"Eventos de activación de transición de flujo de trabajo actualizados " +"correctamente" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Los desencadenantes son eventos que hacen que esta transición se ejecute automáticamente." +msgstr "" +"Los desencadenantes son eventos que hacen que esta transición se ejecute " +"automáticamente." #: views/workflow_views.py:698 #, python-format @@ -665,7 +711,9 @@ msgstr "¿Lanzar todos los flujos de trabajo?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Esto iniciará todos los flujos de trabajo creados después de que los documentos ya se hayan cargado." +msgstr "" +"Esto iniciará todos los flujos de trabajo creados después de que los " +"documentos ya se hayan cargado." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -683,7 +731,9 @@ msgstr "Etiqueta de documento" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "La nueva etiqueta que se asignará al documento. Puede ser una cadena o una plantilla." +msgstr "" +"La nueva etiqueta que se asignará al documento. Puede ser una cadena o una " +"plantilla." #: workflow_actions.py:30 msgid "Document description" @@ -693,7 +743,9 @@ msgstr "Descripción del documento" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "La nueva descripción que se asignará al documento. Puede ser una cadena o una plantilla." +msgstr "" +"La nueva descripción que se asignará al documento. Puede ser una cadena o " +"una plantilla." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -715,11 +767,16 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Puede ser una dirección IP, un dominio o una plantilla. Las plantillas reciben la instancia de entrada del registro de flujo de trabajo como parte de su contexto a través de la variable \"entry_log\". El \"entry_log\" a su vez proporciona los atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\" y \"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Puede ser una dirección IP, un dominio o una plantilla. Las plantillas " +"reciben la instancia de entrada del registro de flujo de trabajo como parte " +"de su contexto a través de la variable \"entry_log\". El \"entry_log\" a su " +"vez proporciona los atributos \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\" y \"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -736,11 +793,17 @@ msgstr "Datos a enviar" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "Un documento JSON a incluir en la solicitud. También puede ser una plantilla que devuelva un documento JSON. Las plantillas reciben la instancia de entrada del registro de flujo de trabajo como parte de su contexto a través de la variable \"entry_log\". El \"entry_log\" a su vez proporciona los atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\" y \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"Un documento JSON a incluir en la solicitud. También puede ser una plantilla " +"que devuelva un documento JSON. Las plantillas reciben la instancia de " +"entrada del registro de flujo de trabajo como parte de su contexto a través " +"de la variable \"entry_log\". El \"entry_log\" a su vez proporciona los " +"atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\" y " +"\"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po index 4e2bcd97b3..b76224fe2c 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015,2018 # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -45,7 +46,7 @@ msgstr "هیچ یک" msgid "Current state" msgstr "وضعیت فعلی" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "کاربر" @@ -57,15 +58,15 @@ msgstr "آخرین گذار" msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "تکمیل" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "گذار" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "اظهار نظر" @@ -81,7 +82,7 @@ msgstr "نوع اقدام" msgid "Triggers" msgstr "راه اندازی" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "اقدامات دولت کار جریان" @@ -101,11 +102,11 @@ msgstr "عمل" msgid "Namespace" msgstr "فضای نام" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "برچسب" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "فعال شده است" @@ -117,6 +118,10 @@ msgstr "نه" msgid "Yes" msgstr "بله" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -198,13 +203,15 @@ msgstr "در خروج" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "این مقدار توسط برنامه های دیگر برای ارجاع به این گردش کار استفاده می شود. فقط شامل حروف، اعداد و حروف الفبا است." +msgstr "" +"این مقدار توسط برنامه های دیگر برای ارجاع به این گردش کار استفاده می شود. " +"فقط شامل حروف، اعداد و حروف الفبا است." #: models.py:45 msgid "Internal name" msgstr "نام داخلی" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "گردش کار" @@ -212,127 +219,131 @@ msgstr "گردش کار" msgid "Initial state" msgstr "حالت اولیه" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "انتخاب کنید اگر این حالت شما خواهد بود که می خواهید جریان کار شروع شود. تنها یک حالت می تواند وضعیت اولیه باشد." +msgstr "" +"انتخاب کنید اگر این حالت شما خواهد بود که می خواهید جریان کار شروع شود. تنها " +"یک حالت می تواند وضعیت اولیه باشد." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "اولیه" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "درصد تکمیل را که این وضعیت در رابطه با جریان کاری نشان می دهد وارد کنید. استفاده از اعداد بدون نشانه درصد." +msgstr "" +"درصد تکمیل را که این وضعیت در رابطه با جریان کاری نشان می دهد وارد کنید. " +"استفاده از اعداد بدون نشانه درصد." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "حالت گردش کار" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "وضعیت کار" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "در این لحظه دولت این عمل را اجرا خواهد کرد" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "چه زمانی" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "مسیر پایتون نقطه به کلاس عملیات گردش کار برای اجرای." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Entry action path" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Entry action data" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Workflow state action" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "کشور مبدا" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "حالت مقصد" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "گذار گردش کار" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "گذارهای کاری" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "نوع رویداد" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "رویداد رویداد انتقال جریان کاری" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "انتقال گردش کار باعث وقایع می شود" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "سند" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "نمونه گردش کار" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "نمونه کارها" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "زمان قرار" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "ورودی به لاگ یک مورد از گردش کار" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "ورودیهای لگ یک مورد از گردش کار" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "یک انتخاب منتخب معتبر نیست" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "پروکسی زمانبندی گردش کار" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "پروکسی کارآمد در زمان اجرا" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "پروکسی زمان اجرا وضعیت " -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "پروکسی زمان اجرا وضعیت " @@ -376,7 +387,9 @@ msgstr "کلید اولیه نوع سند اضافه می شود" msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "URL API اشاره به نوع سند مربوط به جریان کاری که به آن متصل است. این URL متفاوت از URL سند نوع سند است." +msgstr "" +"URL API اشاره به نوع سند مربوط به جریان کاری که به آن متصل است. این URL " +"متفاوت از URL سند نوع سند است." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -390,7 +403,9 @@ msgstr "کلید اولیه حالت مبدأ اضافه می شود" msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "URL API اشاره به یک گردش کار در رابطه با سند که آن متصل است. این URL متفاوت از URL کارآفرینی کانونی است." +msgstr "" +"URL API اشاره به یک گردش کار در رابطه با سند که آن متصل است. این URL متفاوت " +"از URL کارآفرینی کانونی است." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -400,7 +415,8 @@ msgstr "لینک به کل تاریخچه این گردش کار" msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "لیست کاملی از نوع سند کپی اولیه که این جریان کار متصل است، جدا شده است." +msgstr "" +"لیست کاملی از نوع سند کپی اولیه که این جریان کار متصل است، جدا شده است." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -408,8 +424,8 @@ msgstr "کلید اصلی انتقال برای اضافه کردن" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -423,8 +439,7 @@ msgstr "گردش کار برای سند: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -572,8 +587,8 @@ msgstr "ویرایش عمل جریان کار: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -625,8 +640,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -715,11 +729,15 @@ msgstr "نشانی اینترنتی" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "می تواند یک آدرس IP، یک دامنه یا یک الگو باشد. قالب ها ورودی ورودی ورود به سیستم را به عنوان بخشی از متن خود از طریق متغیر \"entry_log\" دریافت می کنند. \"entry_log\" به نوبه خود ویژگی های \"workflow_instance\"، \"datetime\"، \"transition\"، \"user\" و \"comment\" را فراهم می کند." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"می تواند یک آدرس IP، یک دامنه یا یک الگو باشد. قالب ها ورودی ورودی ورود به " +"سیستم را به عنوان بخشی از متن خود از طریق متغیر \"entry_log\" دریافت می " +"کنند. \"entry_log\" به نوبه خود ویژگی های \"workflow_instance\"، \"datetime" +"\"، \"transition\"، \"user\" و \"comment\" را فراهم می کند." #: workflow_actions.py:103 msgid "Timeout" @@ -736,11 +754,16 @@ msgstr "ظرفیت ترابری" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "یک سند JSON برای درخواست در همچنین می تواند یک الگو باشد که یک سند JSON را بازگرداند. قالب ها ورودی ورودی ورود به سیستم را به عنوان بخشی از متن خود از طریق متغیر \"entry_log\" دریافت می کنند. \"entry_log\" به نوبه خود ویژگی های \"workflow_instance\"، \"datetime\"، \"transition\"، \"user\" و \"comment\" را فراهم می کند." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"یک سند JSON برای درخواست در همچنین می تواند یک الگو باشد که یک سند JSON را " +"بازگرداند. قالب ها ورودی ورودی ورود به سیستم را به عنوان بخشی از متن خود از " +"طریق متغیر \"entry_log\" دریافت می کنند. \"entry_log\" به نوبه خود ویژگی های " +"\"workflow_instance\"، \"datetime\"، \"transition\"، \"user\" و \"comment\" " +"را فراهم می کند." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po index 0dbbfedf35..aabf6393c6 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -37,7 +38,9 @@ msgstr "Fournir l'état actuel du flux de travail sélectionné" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Renvoyer la valeur d'achèvement de l'état actuel du flux de travail sélectionné" +msgstr "" +"Renvoyer la valeur d'achèvement de l'état actuel du flux de travail " +"sélectionné" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -47,7 +50,7 @@ msgstr "Aucun" msgid "Current state" msgstr "État actuel" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utilisateur" @@ -59,15 +62,15 @@ msgstr "Dernière transition" msgid "Date and time" msgstr "Date et heure" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Finalisation" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transition" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Commentaire" @@ -83,7 +86,7 @@ msgstr "Type d'action" msgid "Triggers" msgstr "Déclencheurs" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Actions d'état du flux de travail" @@ -103,11 +106,11 @@ msgstr "Action" msgid "Namespace" msgstr "Espace de nommage" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Libellé" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Activé" @@ -119,6 +122,10 @@ msgstr "Non" msgid "Yes" msgstr "Oui" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -200,13 +207,16 @@ msgstr "A la sortie" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Cette valeur sera utilisée par d'autres applications pour faire référence à ce flux de travail. Ne peut contenir que des lettres, des chiffres et des caractères de soulignement." +msgstr "" +"Cette valeur sera utilisée par d'autres applications pour faire référence à " +"ce flux de travail. Ne peut contenir que des lettres, des chiffres et des " +"caractères de soulignement." #: models.py:45 msgid "Internal name" msgstr "Nom interne" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Flux de travail" @@ -214,127 +224,133 @@ msgstr "Flux de travail" msgid "Initial state" msgstr "État initial" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Sélectionnez si vous voulez que cet état soit celui par lequel le flux de travail débute. Un seul état peut être à l'état initial." +msgstr "" +"Sélectionnez si vous voulez que cet état soit celui par lequel le flux de " +"travail débute. Un seul état peut être à l'état initial." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Initial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Spécifiez le pourcentage de finalisation que cet état représente au sein du flux de travail. Saisissez un nombre sans le signe de pourcentage." +msgstr "" +"Spécifiez le pourcentage de finalisation que cet état représente au sein du " +"flux de travail. Saisissez un nombre sans le signe de pourcentage." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "État du flux de travail" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "États du flux de travail" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Un identifiant simple pour cette action." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "A quel stade de l'état cette action sera exécutée" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Quand" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "Le chemin Python séparé par des points vers la classe d'action de flux de travail à exécuter." +msgstr "" +"Le chemin Python séparé par des points vers la classe d'action de flux de " +"travail à exécuter." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Chemin d'action d'entrée" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Données d'action d'entrée" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Action d'état du flux de travail" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "État d'origine" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "État de destination" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transition du flux de travail" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transitions du flux de travail" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Type d'évènement" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Événement déclencheur de transition du flux de travail" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Événements déclencheurs de transitions du flux de travail" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Document" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instance du flux de travail" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Instances du flux de travail" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Date et heure" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Entrée de la journalisation de l'instance du flux de travail" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Entrées de la journalisation du flux de travail" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Choix de transition invalide." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy d'exécution du flux de travail" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxies d'exécution du flux de travail" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Protocole d'exécution de l'état du flux de travail" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxies d'exécution de l'état du flux de travail" @@ -378,7 +394,10 @@ msgstr "Clé principale du type de document à ajouter." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "URL de l'API indiquant un type de document par rapport au flux de travail auquel il est joint. Cette URL est différente de l'URL du type de document canonique." +msgstr "" +"URL de l'API indiquant un type de document par rapport au flux de travail " +"auquel il est joint. Cette URL est différente de l'URL du type de document " +"canonique." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -392,7 +411,9 @@ msgstr "Clé principale de l'état d'origine à ajouter." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "URL de l'API indiquant un flux de travail par rapport au document auquel il est joint. Cette URL est différente de l'URL du flux de travail canonique." +msgstr "" +"URL de l'API indiquant un flux de travail par rapport au document auquel il " +"est joint. Cette URL est différente de l'URL du flux de travail canonique." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -402,7 +423,9 @@ msgstr "Un lien vers l'historique complet de ce flux de travail." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Liste séparée par des virgules des clés primaires de type de document auxquelles ce flux de travail sera joint." +msgstr "" +"Liste séparée par des virgules des clés primaires de type de document " +"auxquelles ce flux de travail sera joint." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -410,8 +433,8 @@ msgstr "Clé principale de la transition à ajouter." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -425,8 +448,7 @@ msgstr "Flux de travail du document : %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -550,7 +572,10 @@ msgstr "Types de document associés à ce flux de travail" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "Retirer un type de document d'un flux de travail supprimera également toutes les instances en cours d'exécution de ce flux de travail pour les documents du type retiré." +msgstr "" +"Retirer un type de document d'un flux de travail supprimera également toutes " +"les instances en cours d'exécution de ce flux de travail pour les documents " +"du type retiré." #: views/workflow_views.py:212 #, python-format @@ -574,8 +599,8 @@ msgstr "Modifier une action d'état de flux de travail : %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -627,9 +652,10 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." -msgstr "Créez une transition et utilisez-la pour déplacer un flux de travail d'un état à un autre." +"Create a transition and use it to move a workflow from one state to another." +msgstr "" +"Créez une transition et utilisez-la pour déplacer un flux de travail d'un " +"état à un autre." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -643,16 +669,22 @@ msgstr "Transitions du flux de travail : %s " #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Erreur de mise-à-jour des événements déclencheurs de transition du flux de travail ; %s " +msgstr "" +"Erreur de mise-à-jour des événements déclencheurs de transition du flux de " +"travail ; %s " #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "Événements déclencheurs de transition du flux de travail mis à jour avec succès" +msgstr "" +"Événements déclencheurs de transition du flux de travail mis à jour avec " +"succès" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Les déclencheurs sont des événements qui entraînent l'exécution automatique de cette transition." +msgstr "" +"Les déclencheurs sont des événements qui entraînent l'exécution automatique " +"de cette transition." #: views/workflow_views.py:698 #, python-format @@ -667,11 +699,14 @@ msgstr "Lancer tous les flux de travail ?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Ceci lancera tous les flux de travail créés après que les documents ont déjà été téléversés." +msgstr "" +"Ceci lancera tous les flux de travail créés après que les documents ont déjà " +"été téléversés." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." -msgstr "Le lancement du flux de travail a été mis en file d'attente avec succès." +msgstr "" +"Le lancement du flux de travail a été mis en file d'attente avec succès." #: views/workflow_views.py:774 #, python-format @@ -685,7 +720,9 @@ msgstr "" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "La nouvelle étiquette à attribuer au document. Peut être une chaîne ou un modèle." +msgstr "" +"La nouvelle étiquette à attribuer au document. Peut être une chaîne ou un " +"modèle." #: workflow_actions.py:30 msgid "Document description" @@ -695,7 +732,9 @@ msgstr "" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "La nouvelle description à attribuer au document. Peut être une chaîne ou un modèle." +msgstr "" +"La nouvelle description à attribuer au document. Peut être une chaîne ou un " +"modèle." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -717,11 +756,16 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Peut être une adresse IP, un domaine ou un modèle. Les modèles reçoivent l'instance d'entrée de journal du flux de travail au sein de leur contexte via la variable \"entry_log\". \"entry_log\" fournit à son tour les attributs \"workflow_instance\", \"datetime\", \"transition\", \"user\" et \"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Peut être une adresse IP, un domaine ou un modèle. Les modèles reçoivent " +"l'instance d'entrée de journal du flux de travail au sein de leur contexte " +"via la variable \"entry_log\". \"entry_log\" fournit à son tour les " +"attributs \"workflow_instance\", \"datetime\", \"transition\", \"user\" et " +"\"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -738,11 +782,16 @@ msgstr "Contenu" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "Un document JSON à inclure dans la requête. Peut également être un modèle qui renvoie un document JSON. Les modèles reçoivent l'instance d'entrée du journal de flux de travail dans leur contexte via la variable \"entry_log\". \"entry_log\" fournit à son tour les attributs \"workflow_instance\", \"datetime\", \"transition\", \"user\" et \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"Un document JSON à inclure dans la requête. Peut également être un modèle " +"qui renvoie un document JSON. Les modèles reçoivent l'instance d'entrée du " +"journal de flux de travail dans leur contexte via la variable \"entry_log\". " +"\"entry_log\" fournit à son tour les attributs \"workflow_instance\", " +"\"datetime\", \"transition\", \"user\" et \"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po index 9f5c2f1bb7..ef063a1f2c 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -44,7 +45,7 @@ msgstr "Semmi" msgid "Current state" msgstr "Jelen állapot" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Felhasználó" @@ -56,15 +57,15 @@ msgstr "" msgid "Date and time" msgstr "Dátum és idő" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Megjegyzés" @@ -80,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "Névtér" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Cimke" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Bekapcsolt" @@ -116,6 +117,10 @@ msgstr "Nem" msgid "Yes" msgstr "Igen" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -211,127 +216,127 @@ msgstr "" msgid "Initial state" msgstr "Kezdeti állapot" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Esemény típus" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokumentum" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -407,8 +412,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +427,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +628,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index f4b8f3437a..bd617ba685 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Adek Lanin, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -44,7 +45,7 @@ msgstr "Nihil" msgid "Current state" msgstr "Kondisi saat ini" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Pengguna" @@ -56,15 +57,15 @@ msgstr "Transisi terakhir" msgid "Date and time" msgstr "Tanggal dan waktu" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transisi" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentar" @@ -80,7 +81,7 @@ msgstr "Tipe tindakan" msgid "Triggers" msgstr "Pemicu" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Kondisi aksi alur kerja" @@ -100,11 +101,11 @@ msgstr "Tindakan" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Label" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -116,6 +117,10 @@ msgstr "Tidak" msgid "Yes" msgstr "Ya" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "Nama internal" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Alur kerja" @@ -211,127 +216,127 @@ msgstr "Alur kerja" msgid "Initial state" msgstr "Kondisi inisiasi" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inisiasi" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Kondisi alur kerja" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Kondisi alur kerja" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Kapan" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Kondisi asli" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Tujuan kondisi" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transisi alur kerja" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transisi alur kerja" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokumen" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Waktu tanggal" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Pilihan transisi tidak valid" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -407,8 +412,8 @@ msgstr "Kunci utama dari transisi yang ditambahkan." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +427,7 @@ msgstr "Alur kerja untuk dokumen: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +628,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po index d1bc78da6f..f6c7bb0f4e 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -44,7 +45,7 @@ msgstr "Nessuna " msgid "Current state" msgstr "Stato corrente" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utente" @@ -56,15 +57,15 @@ msgstr "Ultima transizione" msgid "Date and time" msgstr "Data e ora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Completamento" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transizione" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Commento" @@ -80,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "Namespace" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etichetta" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Abilitato" @@ -116,6 +117,10 @@ msgstr "No" msgid "Yes" msgstr "Si" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "Nome interno" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Workflow" @@ -211,127 +216,131 @@ msgstr "Workflow" msgid "Initial state" msgstr "Stato iniziale" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo uno stato può essere quello iniziale." +msgstr "" +"Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo " +"uno stato può essere quello iniziale." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Iniziale" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Inserisci la percentuale di completamento che questo stato rappresenta in relazione al workflow. Usa i numeri senza segno di percentuale." +msgstr "" +"Inserisci la percentuale di completamento che questo stato rappresenta in " +"relazione al workflow. Usa i numeri senza segno di percentuale." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Stato workflow" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stati workflow" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Stato originale" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Stato di destinazione" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transizione workflow" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transizioni workflow" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Documento" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Istanza workflow" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Istanze workflow" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Data e ora" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Voce log istanza workflow" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Voci log istanza workflow" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -407,8 +416,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +431,7 @@ msgstr "Workflow per il documento: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +579,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +632,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +721,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +742,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po index b7b7ec0ecf..8827dbfd39 100644 --- a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -34,7 +36,8 @@ msgstr "Atgrieziet atlasītās darbplūsmas pašreizējo stāvokli" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Atgrieziet atlasītās darbplūsmas pašreizējā stāvokļa pabeigšanas vērtību" +msgstr "" +"Atgrieziet atlasītās darbplūsmas pašreizējā stāvokļa pabeigšanas vērtību" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -44,7 +47,7 @@ msgstr "Nav neviens" msgid "Current state" msgstr "Pašreizējais stāvoklis" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Lietotājs" @@ -56,15 +59,15 @@ msgstr "Pēdējā pāreja" msgid "Date and time" msgstr "Datums un laiks" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Pabeigšana" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Pāreja" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentārs" @@ -80,7 +83,7 @@ msgstr "Darbības veids" msgid "Triggers" msgstr "Palaišanas" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Darbplūsmas stāvokļa darbības" @@ -100,11 +103,11 @@ msgstr "Rīcība" msgid "Namespace" msgstr "Vārda vieta" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiķete" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Iespējots" @@ -116,6 +119,10 @@ msgstr "Nē" msgid "Yes" msgstr "Jā" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -197,13 +204,15 @@ msgstr "Iziet" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Šo vērtību izmantos citas lietotnes, lai atsauktos uz šo darbplūsmu. Var saturēt tikai burtus, ciparus un pasvītrojumus." +msgstr "" +"Šo vērtību izmantos citas lietotnes, lai atsauktos uz šo darbplūsmu. Var " +"saturēt tikai burtus, ciparus un pasvītrojumus." #: models.py:45 msgid "Internal name" msgstr "Iekšējais nosaukums" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Darbplūsma" @@ -211,127 +220,131 @@ msgstr "Darbplūsma" msgid "Initial state" msgstr "Sākotnējais stāvoklis" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Atlasiet, vai tas būs stāvoklis, ar kuru vēlaties darbplūsmu sākt. Tikai viens stāvoklis var būt sākotnējais stāvoklis." +msgstr "" +"Atlasiet, vai tas būs stāvoklis, ar kuru vēlaties darbplūsmu sākt. Tikai " +"viens stāvoklis var būt sākotnējais stāvoklis." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Sākotnējais" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Ievadiet procentus no pabeigšanas, ko šī valsts pārstāv attiecībā uz darbplūsmu. Izmantot numurus bez procentuālās zīmes." +msgstr "" +"Ievadiet procentus no pabeigšanas, ko šī valsts pārstāv attiecībā uz " +"darbplūsmu. Izmantot numurus bez procentuālās zīmes." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Darbplūsmas stāvoklis" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Darbplūsmas stāvokļi" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Vienkāršs šīs darbības identifikators." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Kādā brīdī šī darbība tiks izpildīta" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Kad" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Punkta Python ceļš uz darbplūsmas darbības klasi, lai izpildītu." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Ieejas ceļš" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Ievades darbības dati" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Darbplūsmas stāvokļa darbība" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Izcelsmes valsts" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Galamērķa valsts" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Darbplūsmas pāreja" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Darbplūsmas pārejas" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Notikuma veids" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Darbplūsmas pārejas sprūda notikums" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Darbplūsmas pārejas izraisa notikumus" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokuments" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Darbplūsmas piemērs" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Darbplūsmas gadījumi" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Datums Laiks" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Darbplūsmas gadījumu žurnāla ieraksts" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Darbplūsmas gadījumu žurnāla ieraksti" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Nav derīga pārejas izvēle." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Darbplūsmas izpildes laiks" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Darbplūsmas izpildes laiks" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Darbplūsmas stāvokļa izpildlaika starpniekserveris" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Darbplūsmas stāvokļa izpildes laiks" @@ -375,7 +388,9 @@ msgstr "Pievienojamā dokumenta tipa primārā atslēga." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL, kas norāda uz dokumenta veidu saistībā ar darbplūsmu, kurai tas ir pievienots. Šis URL atšķiras no kanoniskā dokumenta tipa URL." +msgstr "" +"API URL, kas norāda uz dokumenta veidu saistībā ar darbplūsmu, kurai tas ir " +"pievienots. Šis URL atšķiras no kanoniskā dokumenta tipa URL." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -389,7 +404,9 @@ msgstr "Pievienojamās izcelsmes valsts primārā atslēga." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "API URL, kas norāda uz darbplūsmu saistībā ar dokumentu, uz kuru tas ir pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." +msgstr "" +"API URL, kas norāda uz darbplūsmu saistībā ar dokumentu, uz kuru tas ir " +"pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -399,7 +416,9 @@ msgstr "Saite uz visu šīs darbplūsmas vēsturi." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Komatu atdalīts dokumentu tipa primāro atslēgu saraksts, kurām šī darbplūsma tiks pievienota." +msgstr "" +"Komatu atdalīts dokumentu tipa primāro atslēgu saraksts, kurām šī darbplūsma " +"tiks pievienota." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -407,9 +426,11 @@ msgstr "Pievienojamās pārejas primārā atslēga." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " -msgstr "Piešķiriet šī dokumenta dokumenta tipam darbplūsmas, lai šis dokuments izpildītu šīs darbplūsmas." +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " +msgstr "" +"Piešķiriet šī dokumenta dokumenta tipam darbplūsmas, lai šis dokuments " +"izpildītu šīs darbplūsmas." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -422,8 +443,7 @@ msgstr "Dokumenta darbplūsmas: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -453,7 +473,9 @@ msgstr "Vai pāreja darbplūsmai: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "Darbplūsmas saistīšana ar dažiem dokumentu veidiem un šo veidu dokumenti tiks iekļauti šajā skatā." +msgstr "" +"Darbplūsmas saistīšana ar dažiem dokumentu veidiem un šo veidu dokumenti " +"tiks iekļauti šajā skatā." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -468,7 +490,9 @@ msgstr "Dokumenti ar darbplūsmu: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "Izveidojiet dažas darbplūsmas un saistiet tās ar dokumenta veidu. Šeit tiks parādītas aktīvas darbplūsmas un dokumenti, kuriem tie tiek izpildīti." +msgstr "" +"Izveidojiet dažas darbplūsmas un saistiet tās ar dokumenta veidu. Šeit tiks " +"parādītas aktīvas darbplūsmas un dokumenti, kuriem tie tiek izpildīti." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -508,7 +532,9 @@ msgstr "Darbplūsmām piešķirts šī dokumenta veids" msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "Darbplūsmas noņemšana no dokumenta veida arī novērsīs visus darbplūsmas gadījumus." +msgstr "" +"Darbplūsmas noņemšana no dokumenta veida arī novērsīs visus darbplūsmas " +"gadījumus." #: views/workflow_views.py:87 #, python-format @@ -519,7 +545,9 @@ msgstr "Darbplūsmas, kurām piešķirts dokumenta tips: %s" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "Darbplūsmas saglabā virkni valstu un seko dokumenta pašreizējam stāvoklim. Pārejas tiek izmantotas, lai mainītu pašreizējo stāvokli uz jaunu." +msgstr "" +"Darbplūsmas saglabā virkni valstu un seko dokumenta pašreizējam stāvoklim. " +"Pārejas tiek izmantotas, lai mainītu pašreizējo stāvokli uz jaunu." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -547,7 +575,9 @@ msgstr "Dokumentu veidiem piešķirta šī darbplūsma" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "Dokumenta veida noņemšana no darbplūsmas arī novērsīs visus darbplūsmas gadījumus, kad tikko izņemtie dokumenta veidi ir dokumenti." +msgstr "" +"Dokumenta veida noņemšana no darbplūsmas arī novērsīs visus darbplūsmas " +"gadījumus, kad tikko izņemtie dokumenta veidi ir dokumenti." #: views/workflow_views.py:212 #, python-format @@ -571,9 +601,11 @@ msgstr "Rediģēt darbplūsmas stāvokļa darbību: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." -msgstr "Darbplūsmas stāvokļa darbības ir makro, kas tiek izpildīts, kad dokumenti tiek ievadīti vai atstāti valstī, kurā tie atrodas." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." +msgstr "" +"Darbplūsmas stāvokļa darbības ir makro, kas tiek izpildīts, kad dokumenti " +"tiek ievadīti vai atstāti valstī, kurā tie atrodas." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -624,9 +656,10 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." -msgstr "Izveidojiet pāreju un izmantojiet to, lai pārvietotu darbplūsmu no vienas valsts uz citu." +"Create a transition and use it to move a workflow from one state to another." +msgstr "" +"Izveidojiet pāreju un izmantojiet to, lai pārvietotu darbplūsmu no vienas " +"valsts uz citu." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -664,7 +697,9 @@ msgstr "Uzsākt visas darbplūsmas?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Tas palaidīs visas darbplūsmas, kas izveidotas pēc tam, kad dokumenti jau ir augšupielādēti." +msgstr "" +"Tas palaidīs visas darbplūsmas, kas izveidotas pēc tam, kad dokumenti jau ir " +"augšupielādēti." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -714,11 +749,16 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Var būt IP adrese, domēns vai veidne. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo "entry_log". Savukārt "entry_log" nodrošina atribūtus "workflow_instance", "datetime", "pāreja", "lietotājs" un "komentārs"." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Var būt IP adrese, domēns vai veidne. Veidnes saņem darbplūsmas žurnāla " +"ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo "" +"entry_log". Savukārt "entry_log" nodrošina atribūtus "" +"workflow_instance", "datetime", "pāreja", "" +"lietotājs" un "komentārs"." #: workflow_actions.py:103 msgid "Timeout" @@ -735,11 +775,17 @@ msgstr "Kravnesība" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "JSON dokuments, kas jāiekļauj pieprasījumā. Var būt arī veidne, kas atgriež JSON dokumentu. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo "entry_log". Savukārt "entry_log" nodrošina atribūtus "workflow_instance", "datetime", "pāreja", "lietotājs" un "komentārs"." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"JSON dokuments, kas jāiekļauj pieprasījumā. Var būt arī veidne, kas atgriež " +"JSON dokumentu. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu " +"no konteksta, izmantojot mainīgo "entry_log". Savukārt "" +"entry_log" nodrošina atribūtus "workflow_instance", "" +"datetime", "pāreja", "lietotājs" un "" +"komentārs"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po index bbf0f4f069..e1e789ab90 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -44,7 +45,7 @@ msgstr "Geen" msgid "Current state" msgstr "Huidige staat" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Gebruiker" @@ -56,15 +57,15 @@ msgstr "Laatste transitie" msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Voltooiing" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transitie" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Commentaar" @@ -80,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "Namespace" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Label" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Ingeschakeld" @@ -116,6 +117,10 @@ msgstr "Nee" msgid "Yes" msgstr "Ja" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Workflow" @@ -211,127 +216,127 @@ msgstr "Workflow" msgid "Initial state" msgstr "Initiële staat" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Initieel" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Workflowstaat" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Workflowstaten" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Originele staat" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Bestemmingsstaat" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Workflowtransitie" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Workflowtransities" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Evenementsoort" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Document" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Workflowinstantie" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Workflowinstanties" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Datumtijd" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -407,8 +412,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +427,7 @@ msgstr "Workflows voor document: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +628,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po index a04e031bae..e368bf52d6 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -44,7 +47,7 @@ msgstr "Brak" msgid "Current state" msgstr "Aktualny stan" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Użytkownik" @@ -56,15 +59,15 @@ msgstr "" msgid "Date and time" msgstr "Data i godzina" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentarz" @@ -80,7 +83,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +103,11 @@ msgstr "" msgid "Namespace" msgstr "Przestrzeń nazw" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etykieta" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Włączone" @@ -116,6 +119,10 @@ msgstr "Nie" msgid "Yes" msgstr "Tak" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +210,7 @@ msgstr "" msgid "Internal name" msgstr "Nazwa wewnętrzna" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Obieg dokumentów" @@ -211,127 +218,127 @@ msgstr "Obieg dokumentów" msgid "Initial state" msgstr "Stan początkowy" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Początkowy" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Stan obiegu" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stany obiegu" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Typ zdarzenia" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -407,8 +414,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +429,7 @@ msgstr "Obiegi dokumentu: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +577,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +630,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +719,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +740,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po index d7ed9c747f..fe86499085 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -43,7 +44,7 @@ msgstr "Nenhum" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utilizador" @@ -55,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentário" @@ -79,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Nome" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +116,10 @@ msgstr "Não" msgid "Yes" msgstr "Sim" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +215,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo de evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +426,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +627,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +716,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +737,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po index c7e3c85033..f8c3af30e3 100644 --- a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -37,7 +38,9 @@ msgstr "Retorna o estado atual de um fluxo de trabalho selecionado" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Retorna o valor de finalização do estado atual de um fluxo de trabalho selecionado" +msgstr "" +"Retorna o valor de finalização do estado atual de um fluxo de trabalho " +"selecionado" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -47,7 +50,7 @@ msgstr "Nenhum" msgid "Current state" msgstr "Estado atual" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Usuário" @@ -59,15 +62,15 @@ msgstr "Última transação" msgid "Date and time" msgstr "Data e hora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Finalização" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transações" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentário" @@ -83,7 +86,7 @@ msgstr "Tipo de ação" msgid "Triggers" msgstr "Acionadores" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Ações do estado do fluxo de trabalho" @@ -103,11 +106,11 @@ msgstr "Ação" msgid "Namespace" msgstr "namespace" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Rótulo" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Habilitado" @@ -119,6 +122,10 @@ msgstr "Não" msgid "Yes" msgstr "Sim" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -200,13 +207,15 @@ msgstr "Na saída" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Este valor será usado por outros aplicativos para referenciar este fluxo de trabalho. Pode conter apenas letras, números e subtraços." +msgstr "" +"Este valor será usado por outros aplicativos para referenciar este fluxo de " +"trabalho. Pode conter apenas letras, números e subtraços." #: models.py:45 msgid "Internal name" msgstr "Nome interno" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Fluxo de trabalho" @@ -214,127 +223,133 @@ msgstr "Fluxo de trabalho" msgid "Initial state" msgstr "Estado Inicial" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Selecione se este será o estado no qual você deseja que o fluxo de trabalho comece. Apenas um estado pode ser o estado inicial." +msgstr "" +"Selecione se este será o estado no qual você deseja que o fluxo de trabalho " +"comece. Apenas um estado pode ser o estado inicial." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inicial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Insira a porcentagem de finalização que este estado representa em relação ao fluxo de trabalho. Utilize números sem o sinal de porcentagem." +msgstr "" +"Insira a porcentagem de finalização que este estado representa em relação ao " +"fluxo de trabalho. Utilize números sem o sinal de porcentagem." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Estado do fluxo de trabalho" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Estados do fluxo de trabalho" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Um identificador simples para esta ação" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Em que momento do estado esta ação será executada" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Quando" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "A caminho em Python para a classe de ação do fluxo de trabalho que será executado." +msgstr "" +"A caminho em Python para a classe de ação do fluxo de trabalho que será " +"executado." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Caminho da ação de entrada" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Dados da ação de entrada" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Ação do estado do fluxo de trabalho" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Estado original" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Estado de destino" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transição do fluxo de trabalho" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transições do fluxo de trabalho" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo de Evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Evento acionador de transição do fluxo de trabalho" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Eventos acionadores de transições de fluxos de trabalho" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Documento" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instância do fluxo de trabalho" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "instâncias do fluxo de trabalho" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Hora e data" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Entrada do registro de instâncias do fluxo de trabalho" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Entradas do registro de instâncias do fluxo de trabalho" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Não é uma opção de transição válida." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" @@ -378,7 +393,10 @@ msgstr "Chave primária do tipo de documento a ser adicionado." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL que aponta para um tipo de documento em relação ao fluxo de trabalho ao qual está anexado. Esse URL é diferente do URL do tipo de documento canônico." +msgstr "" +"API URL que aponta para um tipo de documento em relação ao fluxo de trabalho " +"ao qual está anexado. Esse URL é diferente do URL do tipo de documento " +"canônico." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -392,7 +410,9 @@ msgstr "Chave primária do estado de origem a ser adicionado." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "API URL que aponta para um fluxo de trabalho em relação ao documento ao qual está anexado. Esse URL é diferente do URL de fluxo de trabalho canônico." +msgstr "" +"API URL que aponta para um fluxo de trabalho em relação ao documento ao qual " +"está anexado. Esse URL é diferente do URL de fluxo de trabalho canônico." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -402,7 +422,9 @@ msgstr "Um link para todo o histórico deste fluxo de trabalho." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Lista separada por vírgulas do tipo de documento chaves primárias às quais este fluxo de trabalho será anexado." +msgstr "" +"Lista separada por vírgulas do tipo de documento chaves primárias às quais " +"este fluxo de trabalho será anexado." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -410,9 +432,11 @@ msgstr "Chave primária da transição a ser adicionada." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " -msgstr "Atribua fluxos de trabalho ao tipo deste documento para que ele execute tais fluxos." +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " +msgstr "" +"Atribua fluxos de trabalho ao tipo deste documento para que ele execute tais " +"fluxos." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -425,8 +449,7 @@ msgstr "Fluxos de trabalho para o documento: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -456,7 +479,9 @@ msgstr "Fazer a transição para o fluxo de trabalho: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "Associe um fluxo de trabalho a alguns tipos de documentos e os documentos desses tipos serão listados nesta vista." +msgstr "" +"Associe um fluxo de trabalho a alguns tipos de documentos e os documentos " +"desses tipos serão listados nesta vista." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -471,7 +496,10 @@ msgstr "Documentos com o fluxo de trabalho: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "Crie alguns fluxos de trabalho e associe-os a um tipo de documento. Os fluxos de trabalho ativos e os documentos para os quais eles estão sendo executados serão mostrados aqui." +msgstr "" +"Crie alguns fluxos de trabalho e associe-os a um tipo de documento. Os " +"fluxos de trabalho ativos e os documentos para os quais eles estão sendo " +"executados serão mostrados aqui." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -522,7 +550,10 @@ msgstr "" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "Fluxos de trabalho armazenam uma série de estados e acompanham o estado atual de um documento. Transições são usadas para mudar o estado atual para um novo." +msgstr "" +"Fluxos de trabalho armazenam uma série de estados e acompanham o estado " +"atual de um documento. Transições são usadas para mudar o estado atual para " +"um novo." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -550,7 +581,10 @@ msgstr "Tipos de documentos atribuídos a este fluxo de trabalho" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "Remover um tipo de documento de um fluxo de trabalho também removerá todas as instâncias ativas daquele fluxo de trabalho para os documentos do tipo removido." +msgstr "" +"Remover um tipo de documento de um fluxo de trabalho também removerá todas " +"as instâncias ativas daquele fluxo de trabalho para os documentos do tipo " +"removido." #: views/workflow_views.py:212 #, python-format @@ -574,9 +608,11 @@ msgstr "Editar ação do estado do fluxo de trabalho: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." -msgstr "Ações do estado do fluxo de trabalho são macros que são executadas quando documentos entram ou saem dos estados para os quais elas estão definidas." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." +msgstr "" +"Ações do estado do fluxo de trabalho são macros que são executadas quando " +"documentos entram ou saem dos estados para os quais elas estão definidas." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -627,9 +663,10 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." -msgstr "Crie uma transição e use-a para mover um fluxo de trabalho de um estado para outro." +"Create a transition and use it to move a workflow from one state to another." +msgstr "" +"Crie uma transição e use-a para mover um fluxo de trabalho de um estado para " +"outro." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -643,16 +680,20 @@ msgstr "Transições do fluxo de trabalho: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Erro ao carregar os eventos acionadores de transição do fluxo de trabalho; %s" +msgstr "" +"Erro ao carregar os eventos acionadores de transição do fluxo de trabalho; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "Eventos acionadores de transição do fluxo de trabalho atualizados com sucesso" +msgstr "" +"Eventos acionadores de transição do fluxo de trabalho atualizados com sucesso" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Acionadores são eventos que fazem esta transição ser executada automaticamente." +msgstr "" +"Acionadores são eventos que fazem esta transição ser executada " +"automaticamente." #: views/workflow_views.py:698 #, python-format @@ -667,7 +708,9 @@ msgstr "Iniciar todos os fluxos de trabalho?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Isto iniciará todos os fluxos de trabalho criados após o carregamento dos documentos." +msgstr "" +"Isto iniciará todos os fluxos de trabalho criados após o carregamento dos " +"documentos." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -685,7 +728,9 @@ msgstr "" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "O novo rótulo que será associado ao documento. Pode ser uma string ou um modelo." +msgstr "" +"O novo rótulo que será associado ao documento. Pode ser uma string ou um " +"modelo." #: workflow_actions.py:30 msgid "Document description" @@ -695,7 +740,9 @@ msgstr "" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "A nova descrição que será associada ao documento. Pode ser uma string ou um modelo." +msgstr "" +"A nova descrição que será associada ao documento. Pode ser uma string ou um " +"modelo." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -717,11 +764,16 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Pode ser um endereço de IP, um domínio ou um modelo. Modelos recebem a instância de entrada de registro do fluxo de trabalho como parte de seus contextos através da variável \"entry_log\". A \"entry_log\" por sua vez provê os atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Pode ser um endereço de IP, um domínio ou um modelo. Modelos recebem a " +"instância de entrada de registro do fluxo de trabalho como parte de seus " +"contextos através da variável \"entry_log\". A \"entry_log\" por sua vez " +"provê os atributos \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", e \"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -738,11 +790,16 @@ msgstr "Carga de dados" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "Um documento JSON a ser incluído na requisição. Também pode ser um modelo que retorne um documento JSON. Modelos recebem a instância de entrada de registro do fluxo de trabalho como parte de seus contextos através da variável \"entry_log\". A \"entry_log\" por sua vez provê os atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"Um documento JSON a ser incluído na requisição. Também pode ser um modelo " +"que retorne um documento JSON. Modelos recebem a instância de entrada de " +"registro do fluxo de trabalho como parte de seus contextos através da " +"variável \"entry_log\". A \"entry_log\" por sua vez provê os atributos " +"\"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po index 39284d08ed..22d5c90670 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -44,7 +46,7 @@ msgstr "Nici unul" msgid "Current state" msgstr "Starea curentă" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utilizator" @@ -56,15 +58,15 @@ msgstr "Ultima tranziție" msgid "Date and time" msgstr "Data și ora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Finalizare" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Tranziție" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentariu" @@ -80,7 +82,7 @@ msgstr "Tipul de acțiune" msgid "Triggers" msgstr "Declanșatoare" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Acțiuni de stare de lucru" @@ -100,11 +102,11 @@ msgstr "Acțiune" msgid "Namespace" msgstr "Spațiu de nume" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etichetă" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Activat" @@ -116,6 +118,10 @@ msgstr "Nu" msgid "Yes" msgstr "Da" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -197,13 +203,15 @@ msgstr "La ieșire" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Această valoare va fi utilizată de alte aplicații pentru a face referire la acest flux de lucru. Pot conține numai litere, numere și subliniere." +msgstr "" +"Această valoare va fi utilizată de alte aplicații pentru a face referire la " +"acest flux de lucru. Pot conține numai litere, numere și subliniere." #: models.py:45 msgid "Internal name" msgstr "Nume intern" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Flux de lucru" @@ -211,127 +219,133 @@ msgstr "Flux de lucru" msgid "Initial state" msgstr "Stare inițială" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Selectați dacă aceasta va fi starea cu care doriți să înceapă fluxul de lucru. Numai o stare poate fi starea inițială." +msgstr "" +"Selectați dacă aceasta va fi starea cu care doriți să înceapă fluxul de " +"lucru. Numai o stare poate fi starea inițială." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Iniţială" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Introduceți procentul de finalizare pe care această stare îl reprezinta în raport cu fluxul de lucru. Utilizați numere fără semnul procentual." +msgstr "" +"Introduceți procentul de finalizare pe care această stare îl reprezinta în " +"raport cu fluxul de lucru. Utilizați numere fără semnul procentual." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Starea fluxului de lucru" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stările fluxului de lucru" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Un identificator simplu pentru această acțiune." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "În ce moment al stării se va executa această acțiune" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Cănd" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "Calea Python punctată la clasa de acțiune a fluxului de lucru care trebuie executată." +msgstr "" +"Calea Python punctată la clasa de acțiune a fluxului de lucru care trebuie " +"executată." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Căi de acțiune pentru intrare" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Datele privind acțiunile de intrare" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Acțiune de stare de flux de lucru" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Stare originală" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Stare destinație" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Tranziția fluxului de lucru" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Tranziții ale fluxului de lucru" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tip eveniment" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Evenimentul de declanșare a tranziției fluxului de lucru" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Evenimente de declanșare a tranzițiilor fluxului de lucru" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Document" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instanță de flux de lucru" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Instanțe de flux de lucru" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Marcă temporală" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Înregistrare din jurnalul instanțelor fluxului de lucru" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Înregistrări din jurnalul instanțelor fluxului de lucru" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Nu este o alegere de tranziție valabilă." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy runtime pentru fluxul de lucru" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxy-uri de runtime pentru fluxul de lucru" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy de runtime pentru starea fluxului de lucru" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxy-uri runtime de stare de flux de lucru" @@ -375,7 +389,10 @@ msgstr "Cheia primară a tipului de document care urmează să fie adăugată." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "Adresă URL API care indică un tip de document în raport cu fluxul de lucru la care este atașat. Această adresă URL este diferită de URL-ul tipului de document canonic." +msgstr "" +"Adresă URL API care indică un tip de document în raport cu fluxul de lucru " +"la care este atașat. Această adresă URL este diferită de URL-ul tipului de " +"document canonic." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -389,7 +406,10 @@ msgstr "Cheia primară a stării de origine care urmează să fie adăugată." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "Adresă URL API care indică un flux de lucru în raport cu documentul la care este atașat. Această adresă URL este diferită de adresa URL canonică a fluxului de lucru." +msgstr "" +"Adresă URL API care indică un flux de lucru în raport cu documentul la care " +"este atașat. Această adresă URL este diferită de adresa URL canonică a " +"fluxului de lucru." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -399,7 +419,9 @@ msgstr "O legătură către întreaga istorie a acestui flux de lucru." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Listă separată prin virgule de chei primare de tip de documente la care se va atașa acest flux de lucru." +msgstr "" +"Listă separată prin virgule de chei primare de tip de documente la care se " +"va atașa acest flux de lucru." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -407,9 +429,11 @@ msgstr "Cheia primară a tranziției care urmează să fie adăugată." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " -msgstr "Atribuiți fluxurile de lucru la acest tip de document pentru ca acest document să execute acele fluxuri de lucru." +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " +msgstr "" +"Atribuiți fluxurile de lucru la acest tip de document pentru ca acest " +"document să execute acele fluxuri de lucru." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -422,9 +446,10 @@ msgstr "Fluxuri de lucru pentru documentul: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." -msgstr "Această vizualizare va afișa modificările de stare pe măsură ce o instanță a fluxului de lucru este tranziționată." +"This view will show the state changes as a workflow instance is transitioned." +msgstr "" +"Această vizualizare va afișa modificările de stare pe măsură ce o instanță a " +"fluxului de lucru este tranziționată." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" @@ -453,7 +478,9 @@ msgstr "Execută tranziția pentru fluxul de lucru: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "Asociați un flux de lucru cu unele tipuri de documente și documente de acele tipuri vor fi listate în această vizualizare." +msgstr "" +"Asociați un flux de lucru cu unele tipuri de documente și documente de acele " +"tipuri vor fi listate în această vizualizare." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -468,7 +495,10 @@ msgstr "Documentele cu fluxul de lucru: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "Creați câteva fluxuri de lucru și asociați-le cu un tip de document. Fluxurile de lucru active vor fi afișate aici precum și documentele pentru care se execută." +msgstr "" +"Creați câteva fluxuri de lucru și asociați-le cu un tip de document. " +"Fluxurile de lucru active vor fi afișate aici precum și documentele pentru " +"care se execută." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -508,7 +538,9 @@ msgstr "Fluxurile de lucru atribuite acestui tip de document" msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "Eliminarea unui flux de lucru dintr-un tip de document va elimina, de asemenea, toate instanțele care rulează din acel flux de lucru." +msgstr "" +"Eliminarea unui flux de lucru dintr-un tip de document va elimina, de " +"asemenea, toate instanțele care rulează din acel flux de lucru." #: views/workflow_views.py:87 #, python-format @@ -519,7 +551,10 @@ msgstr "Fluxurile de lucru atribuite tipului de document: %s" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "Fluxurile de lucru stochează o serie de stări și urmăresc starea actuală a unui document. Tranzițiile sunt folosite pentru a schimba starea curentă la una nouă." +msgstr "" +"Fluxurile de lucru stochează o serie de stări și urmăresc starea actuală a " +"unui document. Tranzițiile sunt folosite pentru a schimba starea curentă la " +"una nouă." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -547,7 +582,10 @@ msgstr "Tipurile de documente atribuite acestui flux de lucru" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "Înlăturarea unui tip de document dintr-un flux de lucru va elimina, de asemenea, toate instanțele în execuție ale acelui flux de lucru pentru documentele de tipul documentului tocmai eliminat." +msgstr "" +"Înlăturarea unui tip de document dintr-un flux de lucru va elimina, de " +"asemenea, toate instanțele în execuție ale acelui flux de lucru pentru " +"documentele de tipul documentului tocmai eliminat." #: views/workflow_views.py:212 #, python-format @@ -571,9 +609,11 @@ msgstr "Editați acțiunea de stare a fluxului de lucru: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." -msgstr "Acțiunile de stare a fluxului de lucru sunt macrocomenzi care se execută atunci când documentele intră sau părăsesc starea în care se află." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." +msgstr "" +"Acțiunile de stare a fluxului de lucru sunt macrocomenzi care se execută " +"atunci când documentele intră sau părăsesc starea în care se află." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -624,9 +664,10 @@ msgstr "Editați tranziția fluxului de lucru: %s" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." -msgstr "Creați o tranziție și utilizați-o pentru a muta un flux de lucru dintr-o stare în alta." +"Create a transition and use it to move a workflow from one state to another." +msgstr "" +"Creați o tranziție și utilizați-o pentru a muta un flux de lucru dintr-o " +"stare în alta." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -640,16 +681,20 @@ msgstr "Tranzițiile fluxului de lucru: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Eroare la actualizarea evenimentelor de declanșare a fluxului de lucru; %s" +msgstr "" +"Eroare la actualizarea evenimentelor de declanșare a fluxului de lucru; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "Evenimentele de declanșare a fluxului de lucru au fost actualizate cu succes" +msgstr "" +"Evenimentele de declanșare a fluxului de lucru au fost actualizate cu succes" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Declanșatoarele sunt evenimente care determină ca această tranziție să fie executată automat." +msgstr "" +"Declanșatoarele sunt evenimente care determină ca această tranziție să fie " +"executată automat." #: views/workflow_views.py:698 #, python-format @@ -664,7 +709,9 @@ msgstr "Lansați toate fluxurile de lucru?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Aceasta va lansa toate fluxurile de lucru create după ce documentele au fost deja încărcate." +msgstr "" +"Aceasta va lansa toate fluxurile de lucru create după ce documentele au fost " +"deja încărcate." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -682,7 +729,9 @@ msgstr "Etichetele documentului" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "Noua etichetă care va fi atribuită documentului. Poate fi un șir sau un șablon." +msgstr "" +"Noua etichetă care va fi atribuită documentului. Poate fi un șir sau un " +"șablon." #: workflow_actions.py:30 msgid "Document description" @@ -692,7 +741,9 @@ msgstr "Descrierea documentului" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "Noua descriere care trebuie atribuită documentului. Poate fi un șir sau un șablon." +msgstr "" +"Noua descriere care trebuie atribuită documentului. Poate fi un șir sau un " +"șablon." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -714,11 +765,15 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "Poate fi o adresă IP, un domeniu sau un șablon. Șabloanele primesc instanța înregistrării fluxului de lucru ca parte a contextului lor prin intermediul variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele \"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"Poate fi o adresă IP, un domeniu sau un șablon. Șabloanele primesc instanța " +"înregistrării fluxului de lucru ca parte a contextului lor prin intermediul " +"variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele " +"\"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -735,11 +790,16 @@ msgstr "Încărcătură utilă" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "Un document JSON care trebuie inclus în cerere. Poate fi, de asemenea, un șablon care returnează un document JSON. Șabloanele primesc instanța înregistrării fluxului de lucru ca parte a contextului lor prin intermediul variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele \"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"Un document JSON care trebuie inclus în cerere. Poate fi, de asemenea, un " +"șablon care returnează un document JSON. Șabloanele primesc instanța " +"înregistrării fluxului de lucru ca parte a contextului lor prin intermediul " +"variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele " +"\"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po index 8373c2d3fb..48fa317148 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -44,7 +47,7 @@ msgstr "Ничего" msgid "Current state" msgstr "Текущее состояние" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Пользователь" @@ -56,15 +59,15 @@ msgstr "" msgid "Date and time" msgstr "Дата и время" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Завершение" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Переход" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Комментарий" @@ -80,7 +83,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +103,11 @@ msgstr "" msgid "Namespace" msgstr "Пространство имен" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Надпись" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Доступно" @@ -116,6 +119,10 @@ msgstr "Нет" msgid "Yes" msgstr "Да" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +210,7 @@ msgstr "" msgid "Internal name" msgstr "Внутреннее имя" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -211,127 +218,127 @@ msgstr "" msgid "Initial state" msgstr "Исходное состояние" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Тип события" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Документ" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -407,8 +414,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +429,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +577,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +630,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +719,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +740,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po index abcb6f5cd3..8e06457bf3 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -43,7 +45,7 @@ msgstr "Brez" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "" @@ -55,15 +57,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentar" @@ -79,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "Imenski prostor" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Oznaka" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +117,10 @@ msgstr "Ne" msgid "Yes" msgstr "Da" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +208,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +216,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +412,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +427,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +628,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po index a986386a43..5c604fd869 100644 --- a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -44,7 +45,7 @@ msgstr "Yok" msgid "Current state" msgstr "Mevcut durum" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Kullanıcı" @@ -56,15 +57,15 @@ msgstr "Son geçiş" msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Tamamlama" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Geçiş" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Yorum Yap" @@ -80,7 +81,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +101,11 @@ msgstr "" msgid "Namespace" msgstr "Alanadı" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiket" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Etkin" @@ -116,6 +117,10 @@ msgstr "Hayır" msgid "Yes" msgstr "Evet" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -197,13 +202,15 @@ msgstr "" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Bu değer, bu iş akışını referans olarak diğer uygulamalar tarafından kullanılacaktır. Yalnızca harf, rakam ve altçizgi içerebilir." +msgstr "" +"Bu değer, bu iş akışını referans olarak diğer uygulamalar tarafından " +"kullanılacaktır. Yalnızca harf, rakam ve altçizgi içerebilir." #: models.py:45 msgid "Internal name" msgstr "Dahili adı" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "İş Akışı" @@ -211,127 +218,131 @@ msgstr "İş Akışı" msgid "Initial state" msgstr "İlk durum" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Bunun, iş akışının başlatılmasını istediğiniz durum olup olmayacağını seçin. Başlangıç ​​durumu yalnızca bir durum olabilir." +msgstr "" +"Bunun, iş akışının başlatılmasını istediğiniz durum olup olmayacağını seçin. " +"Başlangıç ​​durumu yalnızca bir durum olabilir." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "ilk" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "İş akışıyla ilişkili olarak bu durumun temsil ettiği tamamlama yüzdesini girin. Yüzde işareti olmadan rakamları kullanın." +msgstr "" +"İş akışıyla ilişkili olarak bu durumun temsil ettiği tamamlama yüzdesini " +"girin. Yüzde işareti olmadan rakamları kullanın." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "İş akışı durumu" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "İş akışı durumları" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Kaynak Durum" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Hedef durum" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Iş akışı geçiş" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "İş akışı geçişleri" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Etkinlik türü" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "belge" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "İş akışı örneği" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "İş akışı örnekleri" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Tarih saat" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "İş akışı örneği günlük girişi" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "İş akışı örneği günlük girdileri" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Geçerli bir geçiş seçeneği değil." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "İş akışı çalışma zamanı vekili" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "İş akışı çalışma zamanı vekilleri" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "İş akışı durum çalışma zamanı vekili" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "İş akışı durum çalışma zamanı vekilleri" @@ -375,7 +386,9 @@ msgstr "Belge türünün birincil anahtarı eklenecek." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "Bağlı olduğu iş akışıyla ilişkili olarak bir doküman türünü işaret eden API URL'si. Bu URL, yasal çerçeve türü URL'inden farklı." +msgstr "" +"Bağlı olduğu iş akışıyla ilişkili olarak bir doküman türünü işaret eden API " +"URL'si. Bu URL, yasal çerçeve türü URL'inden farklı." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -389,7 +402,9 @@ msgstr "Kaynak durumun birincil anahtarı eklenecek." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "Bağlı olduğu dokümana ilişkin bir iş akışını işaret eden API URL'si. Bu URL, kurallı iş akışı URL'inden farklı." +msgstr "" +"Bağlı olduğu dokümana ilişkin bir iş akışını işaret eden API URL'si. Bu URL, " +"kurallı iş akışı URL'inden farklı." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -399,7 +414,9 @@ msgstr "Bu iş akışının tüm geçmişi ile bağlantı." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Bu iş akışının ekleneceği belge türü birincil anahtarlarının virgülle ayrılmış listesi." +msgstr "" +"Bu iş akışının ekleneceği belge türü birincil anahtarlarının virgülle " +"ayrılmış listesi." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -407,8 +424,8 @@ msgstr "Geçişin birincil anahtarı eklenecek." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -422,8 +439,7 @@ msgstr "Belge için iş akışı: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -571,8 +587,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,8 +640,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -714,10 +729,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -735,10 +750,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po index 2e02547320..de33d9c14d 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -43,7 +44,7 @@ msgstr "None" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Người dùng" @@ -55,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Chú thích" @@ -79,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +116,10 @@ msgstr "" msgid "Yes" msgstr "" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +215,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Loại sự kiện" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" @@ -406,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -421,8 +426,7 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -570,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -623,8 +627,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "" #: views/workflow_views.py:639 @@ -713,10 +716,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -734,10 +737,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po index 43c3b151ca..392cccdc05 100644 --- a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -44,7 +45,7 @@ msgstr "没有" msgid "Current state" msgstr "当前状态" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "用户" @@ -56,15 +57,15 @@ msgstr "最后的流转" msgid "Date and time" msgstr "日期和时间" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "完成" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "流转" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "评论" @@ -80,7 +81,7 @@ msgstr "操作类型" msgid "Triggers" msgstr "触发器" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "工作流状态操作" @@ -100,11 +101,11 @@ msgstr "操作" msgid "Namespace" msgstr "命名空间" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "标签" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "启用" @@ -116,6 +117,10 @@ msgstr "否" msgid "Yes" msgstr "是" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +208,7 @@ msgstr "其他应用程序将使用此值来引用此工作流程。只能包含 msgid "Internal name" msgstr "内部名称" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "工作流" @@ -211,127 +216,127 @@ msgstr "工作流" msgid "Initial state" msgstr "初始状态" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "选择是否这是您希望工作流启动的状态。只有一个状态可以是初始状态。" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "初始" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "输入此状态相对于工作流所代表的完成百分比。使用没有百分号的数字。" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "工作流状态" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "工作流状态" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "此操作的简单标识符。" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "在该状态下此操作将执行" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "何时" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "要执行的工作流操作类的虚线Python路径。" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "进入操作路径" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "进入操作数据" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "工作流状态操作" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "原始状态" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "目标状态" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "工作流流转" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "工作流流转" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "事件类型" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "工作流流转触发事件" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "工作流流转触发事件" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "文档" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "工作流实例" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "工作流实例" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "日期时间" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "工作流实例日志条目" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "工作流实例日志条目" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "不是有效的流转选择。" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "工作流运行时的代理" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "工作流运行时的代理" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "工作流状态运行时的代理" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "工作流状态运行时的代理" @@ -375,7 +380,8 @@ msgstr "要添加的文档类型的主键。" msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL指向与其连接的工作流相关的文档类型。此URL与规范文档类型URL不同。" +msgstr "" +"API URL指向与其连接的工作流相关的文档类型。此URL与规范文档类型URL不同。" #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -407,8 +413,8 @@ msgstr "要添加的流转的主键。" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document" -" execute those workflows. " +"Assign workflows to the document type of this document to have this document " +"execute those workflows. " msgstr "将工作流分配给此文档的文档类型,以使此文档执行这些工作流。" #: views/workflow_instance_views.py:48 @@ -422,8 +428,7 @@ msgstr "文件:%s的工作流" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is " -"transitioned." +"This view will show the state changes as a workflow instance is transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -468,7 +473,9 @@ msgstr "具有工作流的文档:%s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "创建一些工作流并将其与文档类型相关联。此处将显示活动工作流以及它们正在执行的文档。" +msgstr "" +"创建一些工作流并将其与文档类型相关联。此处将显示活动工作流以及它们正在执行的" +"文档。" #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -519,7 +526,8 @@ msgstr "" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "工作流存储一系列状态并跟踪文档的当前状态。流转用于将当前状态更改为新状态。" +msgstr "" +"工作流存储一系列状态并跟踪文档的当前状态。流转用于将当前状态更改为新状态。" #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -547,7 +555,8 @@ msgstr "分配此工作流的文档类型" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "从工作流中删除文档类型还将删除属于其的文档的工作流中所有正在运行的实例。" +msgstr "" +"从工作流中删除文档类型还将删除属于其的文档的工作流中所有正在运行的实例。" #: views/workflow_views.py:212 #, python-format @@ -571,8 +580,8 @@ msgstr "编辑工作流状态操作:%s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or" -" leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or " +"leaves the state in which they reside." msgstr "工作流状态操作是在文档进入或离开它们所处的状态时执行的宏。" #: views/workflow_views.py:371 @@ -624,8 +633,7 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to " -"another." +"Create a transition and use it to move a workflow from one state to another." msgstr "创建流转并使用它将工作流从一个状态移至另一个状态。" #: views/workflow_views.py:639 @@ -714,11 +722,14 @@ msgstr "网址" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow" -" log entry instance as part of their context via the variable \"entry_log\"." -" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", and \"comment\" attributes." -msgstr "可以是IP地址,域或模板。模板通过变量“entry_log”接收工作流日志条目实例作为其上下文的一部分。 “entry_log”又提供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" +"Can be an IP address, a domain or a template. Templates receive the workflow " +"log entry instance as part of their context via the variable \"entry_log\". " +"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " +"\"transition\", \"user\", and \"comment\" attributes." +msgstr "" +"可以是IP地址,域或模板。模板通过变量“entry_log”接收工作流日志条目实例作为其上" +"下文的一部分。 “entry_log”又提" +"供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" #: workflow_actions.py:103 msgid "Timeout" @@ -735,11 +746,14 @@ msgstr "有效载荷" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as" -" part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", and \"comment\" attributes." -msgstr "要包含在请求中的JSON文档。也可以是返回JSON文档的模板。模板通过变量“entry_log”接收工作流日志条目实例作为其上下文的一部分。 “entry_log”又提供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" +"return a JSON document. Templates receive the workflow log entry instance as " +"part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" +"\", and \"comment\" attributes." +msgstr "" +"要包含在请求中的JSON文档。也可以是返回JSON文档的模板。模板通过变" +"量“entry_log”接收工作流日志条目实例作为其上下文的一部分。 “entry_log”又提" +"供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index 2b82619b54..acb803f1d8 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -1,26 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Yaman Sanobar , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "الوثائق" @@ -32,7 +33,9 @@ msgstr "انشاء نوع وثيقة" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "كل وثيقة ترفع يجب ان يحدد لها نوع \"نوع الوثيقة\", انها الطريقة الاساسية التي يقوم مايان اي دي ام اس بها بترتيب الوثائق. " +msgstr "" +"كل وثيقة ترفع يجب ان يحدد لها نوع \"نوع الوثيقة\", انها الطريقة الاساسية " +"التي يقوم مايان اي دي ام اس بها بترتيب الوثائق. " #: apps.py:151 msgid "Versions comment" @@ -74,7 +77,7 @@ msgstr "عدد الصفحات الكلي" msgid "Total documents" msgstr "عدد الوثائق الكلي" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -133,8 +136,8 @@ msgstr "ضغط" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -146,7 +149,9 @@ msgstr "اسم الملف المضغوط" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار السابق" +msgstr "" +"اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار " +"السابق" #: forms/document_forms.py:85 msgid "Quick document rename" @@ -534,8 +539,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -595,8 +599,8 @@ msgstr "ملف" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -790,15 +794,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -948,10 +952,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +987,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,7 +1028,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1242,8 +1246,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1252,8 +1256,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1348,17 +1352,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1368,25 +1372,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1396,28 +1400,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index 5412ff265d..1a78eb08cf 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Документи" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -132,8 +132,8 @@ msgstr "Компресиране" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -145,7 +145,9 @@ msgstr "Име на компресирания архив" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Името на компресирания архив, съдържащ документите за сваляне, ако предишната опция е избрана." +msgstr "" +"Името на компресирания архив, съдържащ документите за сваляне, ако " +"предишната опция е избрана." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -327,7 +329,9 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Изчистване на графичното представяне, използвано да ускори изобразяването на документите и интерактивните промени." +msgstr "" +"Изчистване на графичното представяне, използвано да ускори изобразяването на " +"документите и интерактивните промени." #: links.py:274 msgid "Clear document image cache" @@ -509,7 +513,9 @@ msgstr "" #: models/document_page_models.py:253 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "Страница %(page_num)d от общо %(total_pages)d страници от %(document)s документи." +msgstr "" +"Страница %(page_num)d от общо %(total_pages)d страници от %(document)s " +"документи." #: models/document_page_models.py:286 msgid "Date time" @@ -533,8 +539,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +599,8 @@ msgstr "Файл" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +794,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -826,7 +831,8 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Градуси на завъртане на страница от документ, при потребителско действие" +msgstr "" +"Градуси на завъртане на страница от документ, при потребителско действие" #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -844,17 +850,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Максимален процент (%) допустим за интерактивно увеличаване страницата от потребителя" +msgstr "" +"Максимален процент (%) допустим за интерактивно увеличаване страницата от " +"потребителя" #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Минимален процент (%) допустим за интерактивно смаляване страницата от потребителя" +msgstr "" +"Минимален процент (%) допустим за интерактивно смаляване страницата от " +"потребителя" #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Процент приближавани или отдалечаване на страницата на документа, приложен за потребителя" +msgstr "" +"Процент приближавани или отдалечаване на страницата на документа, приложен " +"за потребителя" #: statistics.py:18 msgid "January" @@ -947,10 +959,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -983,8 +994,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1024,7 +1035,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1206,7 +1218,9 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Грешка при изтриването на преобразования на страница на документ %(document)s, %(error)s." +msgstr "" +"Грешка при изтриването на преобразования на страница на документ " +"%(document)s, %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1229,8 +1243,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1239,8 +1253,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1327,68 +1341,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po index 731c11a61a..32b0a3b78f 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # Ilvana Dollaroviq , 2018 @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumenti" @@ -33,7 +34,9 @@ msgstr "Kreirajte tip dokumenta" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Svaki uploadovani dokument mora biti dodeljen tipu dokumenta, to je osnovni način koji Maian EDMS kategorizuje dokumente." +msgstr "" +"Svaki uploadovani dokument mora biti dodeljen tipu dokumenta, to je osnovni " +"način koji Maian EDMS kategorizuje dokumente." #: apps.py:151 msgid "Versions comment" @@ -75,7 +78,7 @@ msgstr "" msgid "Total documents" msgstr "Ukupni dokumenti" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenti u smeću" @@ -134,10 +137,13 @@ msgstr "Kompresuj" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Preuzmite dokument u originalnom formatu ili na kompresivan način. Ova opcija se može izabrati samo prilikom preuzimanja jednog dokumenta, za više dokumenata, paket će uvek biti preuzet kao komprimirana datoteka." +msgstr "" +"Preuzmite dokument u originalnom formatu ili na kompresivan način. Ova " +"opcija se može izabrati samo prilikom preuzimanja jednog dokumenta, za više " +"dokumenata, paket će uvek biti preuzet kao komprimirana datoteka." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -147,7 +153,9 @@ msgstr "Naziv kompresovane datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako je ova opcija odabrana." +msgstr "" +"Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako " +"je ova opcija odabrana." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -225,7 +233,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Uzima produžetak datoteke i pomera je do kraja imena datoteke koja omogućava operativne sisteme koji se oslanjaju na produžetak datoteka da bi ispravno otvorili preuzetu verziju dokumenta." +msgstr "" +"Uzima produžetak datoteke i pomera je do kraja imena datoteke koja omogućava " +"operativne sisteme koji se oslanjaju na produžetak datoteka da bi ispravno " +"otvorili preuzetu verziju dokumenta." #: links.py:66 msgid "Preview" @@ -329,7 +340,9 @@ msgstr "Kanta za smeće" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i interaktivnu transformaciju rezultata." +msgstr "" +"Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i " +"interaktivnu transformaciju rezultata." #: links.py:274 msgid "Clear document image cache" @@ -479,7 +492,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Stub dokumenta je dokument sa unosom u bazu podataka, ali datoteka nije otpremljena. Ovo bi moglo biti prekinuto otpremanje ili odloženo otpremanje preko API-ja." +msgstr "" +"Stub dokumenta je dokument sa unosom u bazu podataka, ali datoteka nije " +"otpremljena. Ovo bi moglo biti prekinuto otpremanje ili odloženo otpremanje " +"preko API-ja." #: models/document_models.py:84 msgid "Is stub?" @@ -535,9 +551,9 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Količina vremena nakon koje će se dokumenti ove vrste prebaciti u smeće." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Količina vremena nakon koje će se dokumenti ove vrste prebaciti u smeće." #: models/document_type_models.py:38 msgid "Trash time period" @@ -551,7 +567,8 @@ msgstr "Jedinica za otpatke" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Količina vremena nakon čega će se dokumenti ove vrste u smeću izbrisati." +msgstr "" +"Količina vremena nakon čega će se dokumenti ove vrste u smeću izbrisati." #: models/document_type_models.py:48 msgid "Delete time period" @@ -596,8 +613,8 @@ msgstr "Datoteka" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -776,13 +793,17 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Onemogućava prvu tačku keša koja skladišti visoke rezolucije, nepreformirane verzije dokumenata." +msgstr "" +"Onemogućava prvu tačku keša koja skladišti visoke rezolucije, nepreformirane " +"verzije dokumenata." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Onemogućava drugi sloj keša koji čuva medije do niske rezolucije, transformiše (rotira, zumira, itd.) Verzije stranica dokumenata." +msgstr "" +"Onemogućava drugi sloj keša koji čuva medije do niske rezolucije, " +"transformiše (rotira, zumira, itd.) Verzije stranica dokumenata." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -791,15 +812,18 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "Otkrijte orijentaciju svake stranice dokumenta i kreirajte odgovarajuću transformaciju rotacije da biste je prikazali. Ovo je eksperimentalna funkcija i ona je podrazumevano onemogućena." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"Otkrijte orijentaciju svake stranice dokumenta i kreirajte odgovarajuću " +"transformaciju rotacije da biste je prikazali. Ovo je eksperimentalna " +"funkcija i ona je podrazumevano onemogućena." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -846,13 +870,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu dokumenta." +msgstr "" +"Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu " +"dokumenta." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu dokumenta." +msgstr "" +"Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu " +"dokumenta." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -936,7 +964,10 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "\n                    Stranica %(page_number)s od %(total_pages)s\n                " +msgstr "" +"\n" +"                    Stranica %(page_number)s od %(total_pages)s\n" +"                " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -949,10 +980,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -985,8 +1015,8 @@ msgstr "Dokumenti tipa: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1022,12 +1052,15 @@ msgstr "Kreirajte brzu etiketu za tip dokumenta: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Izbrišite brzu etiketu: %(label)s, iz dokumenta tipa \"%(document_type)s\"?" +msgstr "" +"Izbrišite brzu etiketu: %(label)s, iz dokumenta tipa \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Izmenite brzi znak \"%(filename)s\" iz dokumenta tipa \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Izmenite brzi znak \"%(filename)s\" iz dokumenta tipa \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1163,7 +1196,8 @@ msgstr "%(count)d dokument stavljen u red za ponovni izračun broja stranica" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "%(count)d dokumenti postavljeni redom za ponovni izračun broja stranica" +msgstr "" +"%(count)d dokumenti postavljeni redom za ponovni izračun broja stranica" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" @@ -1234,8 +1268,8 @@ msgstr "Štampa: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1244,8 +1278,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1334,70 +1368,70 @@ msgstr "Skeniraj za duplirana dokumenta?" msgid "Duplicated document scan queued successfully." msgstr "Duplirano skeniranje dokumenata je u redu." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Prazno smeće?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Smeće ispraznjen uspješno" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po index b679315157..81b202e467 100644 --- a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po @@ -1,25 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumenty" @@ -73,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -533,8 +534,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +594,8 @@ msgstr "" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -947,10 +947,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -983,8 +982,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1024,7 +1023,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1235,8 +1235,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1245,8 +1245,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1337,17 +1337,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1355,25 +1355,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1381,28 +1381,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po index 7b1ac88da9..1ede1cc6c1 100644 --- a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumenter" @@ -74,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "Antal dokumenter" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenter i skraldespand" @@ -133,8 +133,8 @@ msgstr "" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -534,8 +534,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -595,8 +594,8 @@ msgstr "Fil" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -790,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -948,10 +947,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +982,8 @@ msgstr "Dokumenter af type: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,7 +1023,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1230,8 +1229,8 @@ msgstr "Print %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1240,8 +1239,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1328,68 +1327,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Tøm skraldespand?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Skraldespand tømt." -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po index 2cfbb74095..58f45280ca 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Felix , 2018 @@ -14,19 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumente" @@ -38,7 +38,9 @@ msgstr "Dokumententyp erstellen" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert." +msgstr "" +"Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da " +"Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert." #: apps.py:151 msgid "Versions comment" @@ -80,7 +82,7 @@ msgstr "Seiten gesamt" msgid "Total documents" msgstr "Alle Dokumente" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumente im Papierkorb" @@ -139,10 +141,13 @@ msgstr "Komprimieren" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." +msgstr "" +"Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese " +"Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. " +"Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -152,7 +157,9 @@ msgstr "Name der komprimierten Datei" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, wenn die vorherige Option gewählt wurde." +msgstr "" +"Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, " +"wenn die vorherige Option gewählt wurde." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -166,7 +173,10 @@ msgstr "Erweiterung beibehalten" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das Dokument korrekt zu öffnen." +msgstr "" +"Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es " +"Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das " +"Dokument korrekt zu öffnen." #: forms/document_forms.py:147 msgid "Date added" @@ -230,7 +240,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das heruntergeladene Dokument korrekt zu öffnen." +msgstr "" +"Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es " +"Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das " +"heruntergeladene Dokument korrekt zu öffnen." #: links.py:66 msgid "Preview" @@ -334,7 +347,9 @@ msgstr "Papierkorb" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Grafiken löschen, die benutzt werden um die Dokumentendarstellung und interaktive Transformationsausgabe zu beschleunigen." +msgstr "" +"Grafiken löschen, die benutzt werden um die Dokumentendarstellung und " +"interaktive Transformationsausgabe zu beschleunigen." #: links.py:274 msgid "Clear document image cache" @@ -453,7 +468,9 @@ msgstr "Beschreibung" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "Datum und Uhrzeit in Serverzeit, zu dem das Dokument auf dem System verarbeitet wurde." +msgstr "" +"Datum und Uhrzeit in Serverzeit, zu dem das Dokument auf dem System " +"verarbeitet wurde." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -473,7 +490,8 @@ msgstr "Im Papierkorb?" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "Datum und Uhrzeit, zu dem das Dokument in den Papierkorb verschoben wurde." +msgstr "" +"Datum und Uhrzeit, zu dem das Dokument in den Papierkorb verschoben wurde." #: models/document_models.py:77 msgid "Date and time trashed" @@ -484,7 +502,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." +msgstr "" +"Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das " +"keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener " +"Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." #: models/document_models.py:84 msgid "Is stub?" @@ -540,9 +561,10 @@ msgstr "Name des Dokumententyps." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben werden." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben " +"werden." #: models/document_type_models.py:38 msgid "Trash time period" @@ -556,7 +578,9 @@ msgstr "Einheit (Papierkorb)" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden endgültig gelöscht werden." +msgstr "" +"Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden " +"endgültig gelöscht werden." #: models/document_type_models.py:48 msgid "Delete time period" @@ -601,9 +625,12 @@ msgstr "Datei" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "Der MIME-Typ der Datei der Dokumentenversion. MIME-Typen sind eine standardisierte Art zur Beschreibung des Dateiformats, in diesem Fall des Dokuments. Besipiele: \"text/plain\" oder \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"Der MIME-Typ der Datei der Dokumentenversion. MIME-Typen sind eine " +"standardisierte Art zur Beschreibung des Dateiformats, in diesem Fall des " +"Dokuments. Besipiele: \"text/plain\" oder \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -613,7 +640,9 @@ msgstr "MIME Typ" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "Die Kodierung der Datei der Dokumentenversion. binary 7-bit, binary 8-bit, text, base64, etc." +msgstr "" +"Die Kodierung der Datei der Dokumentenversion. binary 7-bit, binary 8-bit, " +"text, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -775,19 +804,26 @@ msgstr "Pfad zu der Speicherklasse für die Speicherung des Bildercaches." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." -msgstr "Argumente, die an das DOCUMENT_CACHE_STORAGE_BACKEND weitergeleitet werden." +msgstr "" +"Argumente, die an das DOCUMENT_CACHE_STORAGE_BACKEND weitergeleitet werden." #: settings.py:34 msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Deaktiviert die erste Cache-Ebene, die für die Speicherung der hochauflösenden, nicht transformierten Versionen von Dokumentenseiten zuständig ist." +msgstr "" +"Deaktiviert die erste Cache-Ebene, die für die Speicherung der " +"hochauflösenden, nicht transformierten Versionen von Dokumentenseiten " +"zuständig ist." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Deaktiviert die zweite Cache-Ebene, die für die Speicherung der mittel- und niedrigauflösenden, transformierten (gedeht, gezoomt, etc.) Versionen von Dokumentenseiten zuständig ist." +msgstr "" +"Deaktiviert die zweite Cache-Ebene, die für die Speicherung der mittel- und " +"niedrigauflösenden, transformierten (gedeht, gezoomt, etc.) Versionen von " +"Dokumentenseiten zuständig ist." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -796,16 +832,23 @@ msgstr "Maximale Anzahl von Favoriten pro Benutzer." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "Erkennung der Ausrichtung von Dokumentenseiten und Erstellung einer entsprechenden Rotationstransformation, um die Seite in der korrekten Ausrichtung anzuzeigen. Dies ist eine experimentelle Eigenschaft, weshalb sie standardmäßig deaktiviert ist." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"Erkennung der Ausrichtung von Dokumentenseiten und Erstellung einer " +"entsprechenden Rotationstransformation, um die Seite in der korrekten " +"Ausrichtung anzuzeigen. Dies ist eine experimentelle Eigenschaft, weshalb " +"sie standardmäßig deaktiviert ist." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." -msgstr "Blockgröße die für die Berechnung der Dokumentenprüfsumme verwendet wird. Der Wert 0 verhindert die Berücksichtigung von Blöcken und das gesamte Dokument wird in den Speicher geladen." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." +msgstr "" +"Blockgröße die für die Berechnung der Dokumentenprüfsumme verwendet wird. " +"Der Wert 0 verhindert die Berücksichtigung von Blöcken und das gesamte " +"Dokument wird in den Speicher geladen." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -819,17 +862,22 @@ msgstr "Liste der unterstützten Dokumentensprachen. In ISO639-3 Format." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "Zeit in Sekunden, die der Browser die übermittelten Dokumentengraphiken im Cache speichern sollte. Der Standard von 31559626 Sekunden entspricht 1 Jahr." +msgstr "" +"Zeit in Sekunden, die der Browser die übermittelten Dokumentengraphiken im " +"Cache speichern sollte. Der Standard von 31559626 Sekunden entspricht 1 Jahr." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "Maximale Anzahl der letztens zugegriffenen (erstellten, bearbeiteten, angesehenen) Dokumente, die pro Benutzer gemerkt werden sollen." +msgstr "" +"Maximale Anzahl der letztens zugegriffenen (erstellten, bearbeiteten, " +"angesehenen) Dokumente, die pro Benutzer gemerkt werden sollen." #: settings.py:112 msgid "Maximum number of recently created documents to show." -msgstr "Maximale Anzahl der letztens erstellten Dokumente, die angezeigt werden soll." +msgstr "" +"Maximale Anzahl der letztens erstellten Dokumente, die angezeigt werden soll." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." @@ -837,11 +885,14 @@ msgstr "Gradzahl, die ein Dokument pro Benutzer Aktion gedreht wird." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "Pfad zur Speicher-Unterklasse (Storage subclass) für die Speicherung der Dokumentendateien." +msgstr "" +"Pfad zur Speicher-Unterklasse (Storage subclass) für die Speicherung der " +"Dokumentendateien." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." -msgstr "Argumente, die an das DOCUMENT_STORAGE_BACKEND übergeben werden sollen." +msgstr "" +"Argumente, die an das DOCUMENT_STORAGE_BACKEND übergeben werden sollen." #: settings.py:136 msgid "Height in pixels of the document thumbnail image." @@ -861,7 +912,8 @@ msgstr "Minimaler erlaubter Zoom in %, den Benutzer interaktiv wählen können." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." +msgstr "" +"Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." #: statistics.py:18 msgid "January" @@ -941,7 +993,10 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "\n Seite %(page_number)s von %(total_pages)s\n " +msgstr "" +"\n" +" Seite %(page_number)s von %(total_pages)s\n" +" " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -954,11 +1009,14 @@ msgstr "Unbekannte Sprache \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." -msgstr "Das könnte bedeuten, dass das Format des Dokuments nicht unterstützt ist, dass es beschädigt ist oder dass der Uploadpozess unterbrochen wurde. Verwenden Sie die Neuberechnung der Seitenzahl für einen Aktualisierungsversuch." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." +msgstr "" +"Das könnte bedeuten, dass das Format des Dokuments nicht unterstützt ist, " +"dass es beschädigt ist oder dass der Uploadpozess unterbrochen wurde. " +"Verwenden Sie die Neuberechnung der Seitenzahl für einen " +"Aktualisierungsversuch." #: views/document_page_views.py:59 msgid "No document pages available" @@ -990,10 +1048,14 @@ msgstr "Dokumente des Typs: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "Dokumententypen sind grundlegensten Elemente der Konfiguration. Alle weiteren Programmeinheiten des Systems hängen davon ab. Definieren Sie einen Dokumententyp für jede Dokumentenart, die Sie hochzuladen beabsichtigen. Beispiele sind: Rechnung, Beleg, Handbuch, Vorschrift, Bilanz." +msgstr "" +"Dokumententypen sind grundlegensten Elemente der Konfiguration. Alle " +"weiteren Programmeinheiten des Systems hängen davon ab. Definieren Sie einen " +"Dokumententyp für jede Dokumentenart, die Sie hochzuladen beabsichtigen. " +"Beispiele sind: Rechnung, Beleg, Handbuch, Vorschrift, Bilanz." #: views/document_type_views.py:77 msgid "No document types available" @@ -1027,19 +1089,27 @@ msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" +msgstr "" +"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " +"bearbeiten" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "Schnellbezeichner sind voreingestellte Dateinamen, die eine schnelle Umbenennung von Dokumenten beim Hochladen ermöglichen, indem man sie von einer Liste auswählt. Schnellbezeichner können auch nach dem Hochladen von Dokumenten angewendet werden." +msgstr "" +"Schnellbezeichner sind voreingestellte Dateinamen, die eine schnelle " +"Umbenennung von Dokumenten beim Hochladen ermöglichen, indem man sie von " +"einer Liste auswählt. Schnellbezeichner können auch nach dem Hochladen von " +"Dokumenten angewendet werden." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1091,7 +1161,10 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "Das könnte bedeuten, dass keine Dokumente hochgeladen wurden oder dass Ihr Benutzerkonto nicht die notwendigen Berechtigungen hat, um Dokumente oder Dokumententypen anzusehen." +msgstr "" +"Das könnte bedeuten, dass keine Dokumente hochgeladen wurden oder dass Ihr " +"Benutzerkonto nicht die notwendigen Berechtigungen hat, um Dokumente oder " +"Dokumententypen anzusehen." #: views/document_views.py:94 msgid "No documents available" @@ -1185,7 +1258,9 @@ msgstr "Seitenzahl neu berechnen für Dokument: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "Dokument \"%(document)s\" hat keinen Inhalt. Laden Sie wenigstens eine Dokumentenversion hoch, bevor Sie versuchen die Seitenzahl zu ermitteln." +msgstr "" +"Dokument \"%(document)s\" hat keinen Inhalt. Laden Sie wenigstens eine " +"Dokumentenversion hoch, bevor Sie versuchen die Seitenzahl zu ermitteln." #: views/document_views.py:492 #, python-format @@ -1213,7 +1288,8 @@ msgstr "Transformationen zurücksetzen für Dokument: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s." +msgstr "" +"Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1236,9 +1312,13 @@ msgstr "%s drucken" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." -msgstr "Duplikate sind Dokumente, die von exakt derselben (byte-identischen) Datei stammen. Dateien mit demselben Text oder OCR-Ergebnis, aber mit nicht exakt identischer Ursprungsdatei oder einem unterschiedlichen Speicherformat werden nicht als Duplikate geführt." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." +msgstr "" +"Duplikate sind Dokumente, die von exakt derselben (byte-identischen) Datei " +"stammen. Dateien mit demselben Text oder OCR-Ergebnis, aber mit nicht exakt " +"identischer Ursprungsdatei oder einem unterschiedlichen Speicherformat " +"werden nicht als Duplikate geführt." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1246,9 +1326,11 @@ msgstr "Keine Duplikate vorhanden" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." -msgstr "Diese Sicht zeigt die letzten in diesem Benutzerkonto angesehenen oder irgendwie bearbeiteten Bilder." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." +msgstr "" +"Diese Sicht zeigt die letzten in diesem Benutzerkonto angesehenen oder " +"irgendwie bearbeiteten Bilder." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1267,7 +1349,9 @@ msgstr "Keine zuletzt hinzugefügten Dokumente vorhanden" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "Favoriten werden in dieser Ansicht gelistet. Bis zu %(count)d Dokumente werden pro Benutzer als Favoriten gemerkt." +msgstr "" +"Favoriten werden in dieser Ansicht gelistet. Bis zu %(count)d Dokumente " +"werden pro Benutzer als Favoriten gemerkt." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1334,68 +1418,71 @@ msgstr "Nach Duplikaten suchen?" msgid "Duplicated document scan queued successfully." msgstr "Duplikatsuche erfolgreich in die Warteschlange eingestellt." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d Dokument in den Papierkorb verschoben." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d Dokumente in den Papierkorb verschoben." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Ausgewähltes Dokument in den Papierkorb verschieben?" msgstr[1] "Ausgewählte Dokumente in den Papierkorb verschieben?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Papierkorb leeren" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d Dokument aus dem Papierkorb gelöscht." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d Dokumente aus dem Papierkorb gelöscht." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Ausgewähltes Dokument aus dem Papierkorb löschen?" msgstr[1] "Ausgewählte Dokumente aus dem Papierkorb löschen?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "Um Datenverlust zu verhindern werden Dokumente nicht sofort gelöscht, sondern in den Papierkorb verschoben. Von hier aus können sie dann endgültig gelöscht oder wiederhergestellt werden." +msgstr "" +"Um Datenverlust zu verhindern werden Dokumente nicht sofort gelöscht, " +"sondern in den Papierkorb verschoben. Von hier aus können sie dann endgültig " +"gelöscht oder wiederhergestellt werden." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Es sind keine Dokumente im Papierkorb" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d Dokument aus dem Papierkorb wiederhergestellt." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d Dokumente aus dem Papierkorb wiederhergestellt." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Ausgewähltes Dokument aus dem Papierkorb wiederherstellen?" diff --git a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po index d183f4bd2c..0c09b844b2 100644 --- a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Hmayag Antonian , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Έγγραφα" @@ -32,7 +32,9 @@ msgstr "Δημιουργία τύπου εγγράφου" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Σε κάθε έγγραφο που ανεβάσατε πρέπει να ανατεθεί ένας τύπος εγγράφου. Αυτός είναι ο βασικός τρόπος κατηγοριοποίησης που χρησιμοποιεί το Mayan ΕDMS " +msgstr "" +"Σε κάθε έγγραφο που ανεβάσατε πρέπει να ανατεθεί ένας τύπος εγγράφου. Αυτός " +"είναι ο βασικός τρόπος κατηγοριοποίησης που χρησιμοποιεί το Mayan ΕDMS " #: apps.py:151 msgid "Versions comment" @@ -74,7 +76,7 @@ msgstr "" msgid "Total documents" msgstr "Σύνολο εγγράφων" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Έγγραφα στα απορρίμματα" @@ -133,10 +135,13 @@ msgstr "Συμπίεση" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Κατέβασμα του αρχείου στη αρχική μορφή ή συμπιεσμένο. Η επιλογή αυτή είναι εφικτή μόνο όταν κατεβάζετε ένα έγγραφο. Τα πολλαπλά έγγραφα συμπιέζονται από το σύστημα σε ένα αρχείο." +msgstr "" +"Κατέβασμα του αρχείου στη αρχική μορφή ή συμπιεσμένο. Η επιλογή αυτή είναι " +"εφικτή μόνο όταν κατεβάζετε ένα έγγραφο. Τα πολλαπλά έγγραφα συμπιέζονται " +"από το σύστημα σε ένα αρχείο." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -146,7 +151,9 @@ msgstr "Όνομα συμπιεσμένου αρχείου" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Το όνομα του συμπιεσμένου αρχείου που θα περιέχει τα έγγραφα που επιλέχθηκαν για κατέβασμα, αν η επιλογή για συμπίεση είναι ενεργή. " +msgstr "" +"Το όνομα του συμπιεσμένου αρχείου που θα περιέχει τα έγγραφα που επιλέχθηκαν " +"για κατέβασμα, αν η επιλογή για συμπίεση είναι ενεργή. " #: forms/document_forms.py:85 msgid "Quick document rename" @@ -224,7 +231,9 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Μεταφέρει την επέκταση του αρχείου στο τέλος ώστε λειτουργικά συστήματα που χρειάζονται την επέκταση να διαχειρίζονται το αρχείο σωστά." +msgstr "" +"Μεταφέρει την επέκταση του αρχείου στο τέλος ώστε λειτουργικά συστήματα που " +"χρειάζονται την επέκταση να διαχειρίζονται το αρχείο σωστά." #: links.py:66 msgid "Preview" @@ -328,7 +337,9 @@ msgstr "Απορρίμματα" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Καθαριμός της γραφικής απεικόνισης που χρησιμοποιείται για την ταχύτερη εμφάνιση εγγράφων και των αποτελεσμάτων μετασχηματισμών." +msgstr "" +"Καθαριμός της γραφικής απεικόνισης που χρησιμοποιείται για την ταχύτερη " +"εμφάνιση εγγράφων και των αποτελεσμάτων μετασχηματισμών." #: links.py:274 msgid "Clear document image cache" @@ -478,7 +489,11 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Απομεινάρι είναι ένα έγγραφο για το οποίο υπάρχει καταχώρηση στην βάση δεδομένων αλλά δεν υπάρχει το έγγραφο καθεαυτό. Αυτό μπορεί να συμβεί αν η μεταφόρτωση/ανέβασμα έχει διακοπεί ή αν έγινε καταχώρηση του εγγράφου μέσω API και θα μεταφορτωθεί αργότερα." +msgstr "" +"Απομεινάρι είναι ένα έγγραφο για το οποίο υπάρχει καταχώρηση στην βάση " +"δεδομένων αλλά δεν υπάρχει το έγγραφο καθεαυτό. Αυτό μπορεί να συμβεί αν η " +"μεταφόρτωση/ανέβασμα έχει διακοπεί ή αν έγινε καταχώρηση του εγγράφου μέσω " +"API και θα μεταφορτωθεί αργότερα." #: models/document_models.py:84 msgid "Is stub?" @@ -534,9 +549,10 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα μετακινούνται στα απορρίμματα." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα μετακινούνται " +"στα απορρίμματα." #: models/document_type_models.py:38 msgid "Trash time period" @@ -550,7 +566,9 @@ msgstr "Μονάδα μέτρησης χρόνου για μεταφορά στ msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα διαγράφονται από τα απορρίμματα" +msgstr "" +"Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα διαγράφονται " +"από τα απορρίμματα" #: models/document_type_models.py:48 msgid "Delete time period" @@ -595,8 +613,8 @@ msgstr "Αρχείο" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -775,13 +793,18 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Απενεργοποιεί το πρώτο επίπεδο μνήμης όπου αποθηκεύονται σελίδες εγγράφων μεγάλης ανάλυσης που δεν έχουν ετασχηματιστεί." +msgstr "" +"Απενεργοποιεί το πρώτο επίπεδο μνήμης όπου αποθηκεύονται σελίδες εγγράφων " +"μεγάλης ανάλυσης που δεν έχουν ετασχηματιστεί." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Απενεργοποιεί το δεύτερο επίπεδο μνήμης όπου αποθηκεύονται εκδόσεις σελίδων εγγράφων μεσαίας και μικρής ανάλυσης, μετασχηματισμένες (με περιστροφή, ζουμαρισμένες, κλπ)" +msgstr "" +"Απενεργοποιεί το δεύτερο επίπεδο μνήμης όπου αποθηκεύονται εκδόσεις σελίδων " +"εγγράφων μεσαίας και μικρής ανάλυσης, μετασχηματισμένες (με περιστροφή, " +"ζουμαρισμένες, κλπ)" #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -790,15 +813,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -827,7 +850,9 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Αριθμός μοιρών για περιστροφή μιας σελίδας εγγράφου από τον χρήστη ανά αλληλεπίδραση" +msgstr "" +"Αριθμός μοιρών για περιστροφή μιας σελίδας εγγράφου από τον χρήστη ανά " +"αλληλεπίδραση" #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -851,7 +876,8 @@ msgstr "Μέγιστο επιτρεπτό ποσοστό (%) μεγένθυνσ msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Ελλάχιστο επιτρεπτό ποσοστό (%) σμύκρινσης σε μια σελίδα από τονχρήστη." +msgstr "" +"Ελλάχιστο επιτρεπτό ποσοστό (%) σμύκρινσης σε μια σελίδα από τονχρήστη." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -948,10 +974,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +1009,8 @@ msgstr "Έγγραφα τύπου: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1021,12 +1046,17 @@ msgstr "Δημηουργία γρήγορης ετικέτας στον τύπο #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Διαγραφή της γρήγορης ετικέτας: %(label)s, απότον τύπο εγγράφων \"%(document_type)s\";" +msgstr "" +"Διαγραφή της γρήγορης ετικέτας: %(label)s, απότον τύπο εγγράφων " +"\"%(document_type)s\";" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Τροποποίηση γρήγορης ετικέτας \"%(filename)s\" από τον τύπο εγγράφων \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Τροποποίηση γρήγορης ετικέτας \"%(filename)s\" από τον τύπο εγγράφων " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1194,8 +1224,10 @@ msgstr "Αίτημα καθαρισμού μετασχηματισμών ολο #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "Καθαρισμός όλων των μετασχηματισμών σελίδας για το επιλεγμένο έγγραφο: %s;" -msgstr[1] "Καθαρισμός όλων των μετασχηματισμών σελίδας για τα επιλεγμένα έγγραφα: %s;" +msgstr[0] "" +"Καθαρισμός όλων των μετασχηματισμών σελίδας για το επιλεγμένο έγγραφο: %s;" +msgstr[1] "" +"Καθαρισμός όλων των μετασχηματισμών σελίδας για τα επιλεγμένα έγγραφα: %s;" #: views/document_views.py:514 #, python-format @@ -1207,7 +1239,9 @@ msgstr "Καθαρισμός όλων των μετασχηματισμών σε msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Σφάλμα κατά την διαγραφή των μετασχηματισμών σελίδας για το έγγραφο: %(document)s, %(error)s." +msgstr "" +"Σφάλμα κατά την διαγραφή των μετασχηματισμών σελίδας για το έγγραφο: " +"%(document)s, %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1230,8 +1264,8 @@ msgstr "Εκτύπωση: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1240,8 +1274,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1326,70 +1360,71 @@ msgstr "Αναζήτηση για διπλότυπα έγγραφα;" #: views/misc_views.py:39 msgid "Duplicated document scan queued successfully." -msgstr "Αίτημα αναζήτησης για διπλότυπα έγγραφα καταχωρήθηκε στην λίστα με επιτυχία." +msgstr "" +"Αίτημα αναζήτησης για διπλότυπα έγγραφα καταχωρήθηκε στην λίστα με επιτυχία." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Άδειασμα απορρημάτων;" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Ο κάδος απορριμάτων άδειασε με επιτυχία." -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index 34539fce27..37b252ff0c 100644 --- a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2017-08-15 01:59-0400\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1326,68 +1326,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index ddba911627..2d0f44ffb4 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:55+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documentos" @@ -32,7 +32,9 @@ msgstr "Crear tipo un tipo de documento" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Cada documento cargado debe tener asignado un tipo de documento, es la forma básica en que Mayan EDMS clasifica los documentos." +msgstr "" +"Cada documento cargado debe tener asignado un tipo de documento, es la forma " +"básica en que Mayan EDMS clasifica los documentos." #: apps.py:151 msgid "Versions comment" @@ -74,7 +76,7 @@ msgstr "Paginas totales" msgid "Total documents" msgstr "Total de documentos" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documentos en la papelera" @@ -133,10 +135,14 @@ msgstr "Comprimir" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Descargue el documento en el formato original o en una forma comprimida. Esta opción se puede seleccionar sólo cuando se descarga un documento. Para múltiples documentos, el paquete será siempre descargado en un archivo comprimido." +msgstr "" +"Descargue el documento en el formato original o en una forma comprimida. " +"Esta opción se puede seleccionar sólo cuando se descarga un documento. Para " +"múltiples documentos, el paquete será siempre descargado en un archivo " +"comprimido." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -146,7 +152,9 @@ msgstr "Nombre de archivo comprimido" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "El nombre del archivo comprimido que va a contener los documentos a descargar, si la opción anterior está activada." +msgstr "" +"El nombre del archivo comprimido que va a contener los documentos a " +"descargar, si la opción anterior está activada." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -160,7 +168,10 @@ msgstr "Preservar la extensión" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "Toma la extensión de archivo y la mueve al final del nombre de archivo, lo que permite que los sistemas operativos que dependen de las extensiones de archivo abran el documento correctamente." +msgstr "" +"Toma la extensión de archivo y la mueve al final del nombre de archivo, lo " +"que permite que los sistemas operativos que dependen de las extensiones de " +"archivo abran el documento correctamente." #: forms/document_forms.py:147 msgid "Date added" @@ -211,7 +222,9 @@ msgstr "Rango de páginas" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "Número de página a partir del cual se clonarán todas las transformaciones. Se perderán las transformaciones existentes." +msgstr "" +"Número de página a partir del cual se clonarán todas las transformaciones. " +"Se perderán las transformaciones existentes." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -224,7 +237,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Toma la extensión de archivo y la mueve al final del nombre de archivo permitiendo que los sistemas operativos que dependen de las extensiones de archivo abran correctamente la versión del documento descargado." +msgstr "" +"Toma la extensión de archivo y la mueve al final del nombre de archivo " +"permitiendo que los sistemas operativos que dependen de las extensiones de " +"archivo abran correctamente la versión del documento descargado." #: links.py:66 msgid "Preview" @@ -328,7 +344,10 @@ msgstr "Papelera" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Borrar las representaciones gráficas utilizadas para acelerar la presentación de los documentos y resultados de las transformaciones interactivas." +msgstr "" +"Borrar las representaciones gráficas utilizadas para acelerar la " +"presentación de los documentos y resultados de las transformaciones " +"interactivas." #: links.py:274 msgid "Clear document image cache" @@ -423,7 +442,9 @@ msgstr "Todas las páginas" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "UUID de un documento, ID único universalmente. Un identificador único generado para cada documento." +msgstr "" +"UUID de un documento, ID único universalmente. Un identificador único " +"generado para cada documento." #: models/document_models.py:49 msgid "The name of the document." @@ -447,7 +468,9 @@ msgstr "Descripción" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "La fecha y hora del servidor en que finalmente se procesó el documento y se agregó al sistema." +msgstr "" +"La fecha y hora del servidor en que finalmente se procesó el documento y se " +"agregó al sistema." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -467,7 +490,8 @@ msgstr "¿En la papelera?" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "La fecha y hora del servidor cuando el documento fue movido a la papelera." +msgstr "" +"La fecha y hora del servidor cuando el documento fue movido a la papelera." #: models/document_models.py:77 msgid "Date and time trashed" @@ -478,7 +502,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un recibo de documento es un documento con una entrada en la base de datos pero ningún archivo subido. Esto podría ser una subida interrumpida o una subida diferida a través de la API." +msgstr "" +"Un recibo de documento es un documento con una entrada en la base de datos " +"pero ningún archivo subido. Esto podría ser una subida interrumpida o una " +"subida diferida a través de la API." #: models/document_models.py:84 msgid "Is stub?" @@ -534,9 +561,10 @@ msgstr "El nombre del tipo de documento." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la papelera." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la " +"papelera." #: models/document_type_models.py:38 msgid "Trash time period" @@ -550,7 +578,9 @@ msgstr "Unidad de tiempo de envío a papelera" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de la papelera." +msgstr "" +"Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de " +"la papelera." #: models/document_type_models.py:48 msgid "Delete time period" @@ -574,7 +604,8 @@ msgstr "Etiqueta rapida" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "La fecha y hora del servidor cuando se procesó la versión del documento." +msgstr "" +"La fecha y hora del servidor cuando se procesó la versión del documento." #: models/document_version_models.py:79 msgid "Timestamp" @@ -595,9 +626,12 @@ msgstr "Archivo" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "El tipo de archivo de la versión del documento. Los tipos MIME son una forma estándar de describir el formato de un archivo, en este caso el formato de archivo del documento. Algunos ejemplos: \"text/plain\" o \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"El tipo de archivo de la versión del documento. Los tipos MIME son una forma " +"estándar de describir el formato de un archivo, en este caso el formato de " +"archivo del documento. Algunos ejemplos: \"text/plain\" o \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -607,7 +641,9 @@ msgstr "Tipo MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "La codificación del archivo de la versión del documento. Binario de 7 bits, binario de 8 bits, texto, base64, etc." +msgstr "" +"La codificación del archivo de la versión del documento. Binario de 7 bits, " +"binario de 8 bits, texto, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -765,7 +801,9 @@ msgstr "Escanear documentos duplicados" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "Ruta a la subclase Storage para usar cuando se almacenan los archivos de imagen del documento en caché." +msgstr "" +"Ruta a la subclase Storage para usar cuando se almacenan los archivos de " +"imagen del documento en caché." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -775,13 +813,18 @@ msgstr "Argumentos para pasar al DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Deshabilita el primer nivel de caché que almacena las versiones de las páginas de documentos que no son transformadas de alta resolución." +msgstr "" +"Deshabilita el primer nivel de caché que almacena las versiones de las " +"páginas de documentos que no son transformadas de alta resolución." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Deshabilita el segundo nivel de memoria caché que almacena versiones de páginas de documentos de media a baja resolución, transformadas (giradas, ampliadas, etc.)." +msgstr "" +"Deshabilita el segundo nivel de memoria caché que almacena versiones de " +"páginas de documentos de media a baja resolución, transformadas (giradas, " +"ampliadas, etc.)." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -790,16 +833,22 @@ msgstr "Número máximo de documentos favoritos para recordar por usuario." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "Detecta la orientación de cada una de las páginas del documento y crea una transformación de rotación correspondiente para mostrarla a la derecha. Esta es una función experimental y está deshabilitada por defecto." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"Detecta la orientación de cada una de las páginas del documento y crea una " +"transformación de rotación correspondiente para mostrarla a la derecha. Esta " +"es una función experimental y está deshabilitada por defecto." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." -msgstr "Tamaño de los bloques que se utilizarán al calcular la suma de comprobación del archivo de documento. Un valor de 0 desactiva el cálculo de bloque y todo el archivo se cargará en la memoria." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." +msgstr "" +"Tamaño de los bloques que se utilizarán al calcular la suma de comprobación " +"del archivo de documento. Un valor de 0 desactiva el cálculo de bloque y " +"todo el archivo se cargará en la memoria." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -813,13 +862,18 @@ msgstr "Lista de idiomas de documentos apoyados. En formato ISO639-3." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "Tiempo en segundos que el navegador debe almacenar en caché las imágenes del documento suministradas. El valor predeterminado de 31559626 segundos corresponde a 1 año." +msgstr "" +"Tiempo en segundos que el navegador debe almacenar en caché las imágenes del " +"documento suministradas. El valor predeterminado de 31559626 segundos " +"corresponde a 1 año." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "Número máximo de documentos recientemente accedidos (creados, editados, vistos) para recordar por usuario." +msgstr "" +"Número máximo de documentos recientemente accedidos (creados, editados, " +"vistos) para recordar por usuario." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -827,11 +881,15 @@ msgstr "Número máximo de documentos creados recientemente para mostrar." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Cantidad de grados que se va a girar una página de documento por cada acción del usuario." +msgstr "" +"Cantidad de grados que se va a girar una página de documento por cada acción " +"del usuario." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "Ruta a la subclase Storage para usar cuando se almacenan archivos de documentos." +msgstr "" +"Ruta a la subclase Storage para usar cuando se almacenan archivos de " +"documentos." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -845,17 +903,23 @@ msgstr "Altura en píxeles de la imagen en miniatura del documento." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página del documento de forma interactiva." +msgstr "" +"Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página " +"del documento de forma interactiva." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página del documento de forma interactiva." +msgstr "" +"Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página " +"del documento de forma interactiva." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Cantidad en porcentaje a acercar o alejar una página de documento por cada interacción del usuario." +msgstr "" +"Cantidad en porcentaje a acercar o alejar una página de documento por cada " +"interacción del usuario." #: statistics.py:18 msgid "January" @@ -935,7 +999,10 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "\n Página %(page_number)s de %(total_pages)s\n " +msgstr "" +"\n" +" Página %(page_number)s de %(total_pages)s\n" +" " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -948,11 +1015,14 @@ msgstr "Idioma desconocido \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." -msgstr "Esto podría significar que el documento tiene un formato que no es compatible, que está dañado o que el proceso de carga se interrumpió. Utilice la acción de recálculo de la página del documento para intentar realizar una introspección del recuento de páginas nuevamente." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." +msgstr "" +"Esto podría significar que el documento tiene un formato que no es " +"compatible, que está dañado o que el proceso de carga se interrumpió. " +"Utilice la acción de recálculo de la página del documento para intentar " +"realizar una introspección del recuento de páginas nuevamente." #: views/document_page_views.py:59 msgid "No document pages available" @@ -984,10 +1054,14 @@ msgstr "Documentos de tipo: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "Los tipos de documentos son las unidades de configuración más básicas. Todo en el sistema dependerá de ellos. Defina un tipo de documento para cada tipo de documento físico que desee cargar. Tipos de documentos de ejemplo: factura, recibo, manual, receta, balance." +msgstr "" +"Los tipos de documentos son las unidades de configuración más básicas. Todo " +"en el sistema dependerá de ellos. Defina un tipo de documento para cada tipo " +"de documento físico que desee cargar. Tipos de documentos de ejemplo: " +"factura, recibo, manual, receta, balance." #: views/document_type_views.py:77 msgid "No document types available" @@ -1021,19 +1095,28 @@ msgstr "Crear una etiqueta rápida para el tipo de documento: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "¿Eliminar la etiqueta rápida: %(label)s, del tipo de documento \"%(document_type)s\"?" +msgstr "" +"¿Eliminar la etiqueta rápida: %(label)s, del tipo de documento " +"\"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Editar etiqueta rápida \"%(filename)s\" del tipo de documento \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Editar etiqueta rápida \"%(filename)s\" del tipo de documento " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "Las etiquetas rápidas son nombres de archivo predeterminados que permiten el cambio de nombre rápido de documentos a medida que se cargan al seleccionarlos de una lista. Las etiquetas rápidas también se pueden usar después de cargar los documentos." +msgstr "" +"Las etiquetas rápidas son nombres de archivo predeterminados que permiten el " +"cambio de nombre rápido de documentos a medida que se cargan al " +"seleccionarlos de una lista. Las etiquetas rápidas también se pueden usar " +"después de cargar los documentos." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1085,7 +1168,10 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "Esto podría significar que no se han cargado documentos o que su cuenta de usuario no ha recibido el permiso de visualización para ningún documento o tipo de documento." +msgstr "" +"Esto podría significar que no se han cargado documentos o que su cuenta de " +"usuario no ha recibido el permiso de visualización para ningún documento o " +"tipo de documento." #: views/document_views.py:94 msgid "No documents available" @@ -1094,12 +1180,14 @@ msgstr "No hay documentos disponibles" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "Solicitud de cambio de tipo de documento realizada en el documento %(count)d" +msgstr "" +"Solicitud de cambio de tipo de documento realizada en el documento %(count)d" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "Solicitud de cambio de tipo de documento realizada en %(count)d documentos" +msgstr "" +"Solicitud de cambio de tipo de documento realizada en %(count)d documentos" #: views/document_views.py:117 msgid "Change" @@ -1167,7 +1255,8 @@ msgstr "%(count)d documentos en cola para el recuento de total de páginas" msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "¿Volver a calcular el total de páginas del documento seleccionado?" -msgstr[1] "¿Volver a calcular el total de páginas de los documentos seleccionados?" +msgstr[1] "" +"¿Volver a calcular el total de páginas de los documentos seleccionados?" #: views/document_views.py:463 #, python-format @@ -1179,23 +1268,29 @@ msgstr "¿Volver a calcular el total de páginas del documento: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "El documento \"%(document)s\" está vacío. Cargue al menos una versión del documento antes de intentar detectar el número de páginas." +msgstr "" +"El documento \"%(document)s\" está vacío. Cargue al menos una versión del " +"documento antes de intentar detectar el número de páginas." #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "Solicitud de borrar transformaciones, procesada para %(count)d documento" +msgstr "" +"Solicitud de borrar transformaciones, procesada para %(count)d documento" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "Solicitud de borrar transformaciones procesada para %(count)d documentos" +msgstr "" +"Solicitud de borrar transformaciones procesada para %(count)d documentos" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "¿Borrar todas las transformaciones de página para el documento seleccionado?" -msgstr[1] "¿Borrar todas las transformaciones de página para el documento seleccionado?" +msgstr[0] "" +"¿Borrar todas las transformaciones de página para el documento seleccionado?" +msgstr[1] "" +"¿Borrar todas las transformaciones de página para el documento seleccionado?" #: views/document_views.py:514 #, python-format @@ -1207,7 +1302,9 @@ msgstr "¿Borrar todas las transformaciones de página para el documento: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Error al eliminar las transformaciones de página para el documento: %(document)s; %(error)s." +msgstr "" +"Error al eliminar las transformaciones de página para el documento: " +"%(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1230,9 +1327,13 @@ msgstr "Imprimir: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." -msgstr "Los duplicados son documentos que se componen del mismo archivo exacto, hasta el último byte. Los archivos que tienen el mismo texto u OCR pero que no son idénticos o que se guardaron con un formato de archivo diferente no aparecerán como duplicados." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." +msgstr "" +"Los duplicados son documentos que se componen del mismo archivo exacto, " +"hasta el último byte. Los archivos que tienen el mismo texto u OCR pero que " +"no son idénticos o que se guardaron con un formato de archivo diferente no " +"aparecerán como duplicados." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1240,9 +1341,11 @@ msgstr "No hay documentos duplicados" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." -msgstr "Esta vista enumerará los últimos documentos visualizados o manipulados de alguna manera por esta cuenta de usuario." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." +msgstr "" +"Esta vista enumerará los últimos documentos visualizados o manipulados de " +"alguna manera por esta cuenta de usuario." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1250,7 +1353,9 @@ msgstr "No hay documentos accedidos recientemente" #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "Esta vista mostrará una lista de los últimos documentos cargados en el sistema." +msgstr "" +"Esta vista mostrará una lista de los últimos documentos cargados en el " +"sistema." #: views/document_views.py:736 msgid "There are no recently added document" @@ -1261,7 +1366,9 @@ msgstr "No hay documento agregado recientemente" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "Los documentos favoritos se enumerarán en esta vista. Hasta %(count)d documentos pueden ser preferidos por usuario." +msgstr "" +"Los documentos favoritos se enumerarán en esta vista. Hasta %(count)d " +"documentos pueden ser preferidos por usuario." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1328,68 +1435,71 @@ msgstr "¿Buscar documentos duplicados?" msgid "Duplicated document scan queued successfully." msgstr "La exploración de documentos duplicados sometido con éxito." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "Documento %(count)d movido a la papelera." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d documentos movidos a la papelera." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "¿Mover el documento seleccionado a la papelera?" msgstr[1] "¿Mover los documentos seleccionados a la papelera?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "¿Vaciar papelera?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Papelera vaciada con éxito" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d documento eliminado del trash." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d documentos eliminados." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "¿Borrar el documento seleccionado?" msgstr[1] "¿Eliminar los documentos desechados seleccionados?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "Para evitar la pérdida de datos, los documentos no se eliminan al instante. Primero, se colocan en el bote de basura. Desde aquí, pueden ser finalmente eliminados o restaurados." +msgstr "" +"Para evitar la pérdida de datos, los documentos no se eliminan al instante. " +"Primero, se colocan en el bote de basura. Desde aquí, pueden ser finalmente " +"eliminados o restaurados." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "No hay documentos en la papelera" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d documento restaurado." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d documentos restaurados." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "¿Restaurar el documento desechado seleccionado?" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 2ccdf3d114..318c557bc7 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "اسناد" @@ -32,7 +32,9 @@ msgstr "نوع سند را ایجاد کنید" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "هر سند آپلود شده باید یک نوع سند اختصاص داده شود، این شیوه اصلی Mayan EDMS اسناد را دسته بندی می کند." +msgstr "" +"هر سند آپلود شده باید یک نوع سند اختصاص داده شود، این شیوه اصلی Mayan EDMS " +"اسناد را دسته بندی می کند." #: apps.py:151 msgid "Versions comment" @@ -74,7 +76,7 @@ msgstr "" msgid "Total documents" msgstr "کل اسناد" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "اسناد در سطل زباله" @@ -133,10 +135,13 @@ msgstr "فشرده سازی" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "سند را در فرمت اصلی یا به صورت فشرده دانلود کنید. این گزینه فقط هنگام دانلود یک سند انتخاب می شود، برای چندین اسناد، بسته نرم افزاری همیشه به عنوان یک فایل فشرده در دسترس خواهد بود." +msgstr "" +"سند را در فرمت اصلی یا به صورت فشرده دانلود کنید. این گزینه فقط هنگام دانلود " +"یک سند انتخاب می شود، برای چندین اسناد، بسته نرم افزاری همیشه به عنوان یک " +"فایل فشرده در دسترس خواهد بود." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -146,7 +151,9 @@ msgstr "نام فایل فشرده شده" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که قراراست که دانلود شوند." +msgstr "" +"اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که " +"قراراست که دانلود شوند." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -224,7 +231,9 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "فرمت فایل را می گیرد و آن را به انتهای نام فایل منتقل می کند تا سیستم عامل هایی را که بر روی پسوندهای فایل تکیه دارند، به درستی باز می کند." +msgstr "" +"فرمت فایل را می گیرد و آن را به انتهای نام فایل منتقل می کند تا سیستم عامل " +"هایی را که بر روی پسوندهای فایل تکیه دارند، به درستی باز می کند." #: links.py:66 msgid "Preview" @@ -328,7 +337,9 @@ msgstr "سطل زباله می تواند" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده قرار میگیرد." +msgstr "" +"پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده " +"قرار میگیرد." #: links.py:274 msgid "Clear document image cache" @@ -478,7 +489,9 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "یک مستند سند یک سند با یک ورودی در پایگاه داده است اما هیچ فایل آپلود نشده است. این می تواند آپلود متوقف شده یا آپلود معلق از طریق API باشد." +msgstr "" +"یک مستند سند یک سند با یک ورودی در پایگاه داده است اما هیچ فایل آپلود نشده " +"است. این می تواند آپلود متوقف شده یا آپلود معلق از طریق API باشد." #: models/document_models.py:84 msgid "Is stub?" @@ -534,8 +547,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "مقدار زمان که پس از آن اسناد این نوع به سطل زباله منتقل می شود." #: models/document_type_models.py:38 @@ -595,8 +607,8 @@ msgstr "فایل" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -775,13 +787,17 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "اولین سطر ذخیره سازی که نسخه های با وضوح بالا و بدون تغییرات صفحات اسناد را ذخیره می کند را غیرفعال می کند." +msgstr "" +"اولین سطر ذخیره سازی که نسخه های با وضوح بالا و بدون تغییرات صفحات اسناد را " +"ذخیره می کند را غیرفعال می کند." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "محدوده دوم حافظه پنهان که محتویات نسخه های با وضوح متوسط ​​و پایین را تغییر داده (چرخش، زوم و ...) صفحات اسناد را غیرفعال می کند." +msgstr "" +"محدوده دوم حافظه پنهان که محتویات نسخه های با وضوح متوسط ​​و پایین را تغییر " +"داده (چرخش، زوم و ...) صفحات اسناد را غیرفعال می کند." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -790,15 +806,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -845,13 +861,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" +msgstr "" +"حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت " +"تعاملی" #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" +msgstr "" +"حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت " +"تعاملی" #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -948,10 +968,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +1003,8 @@ msgstr "اسناد نوع: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,8 +1044,10 @@ msgstr "برچسب سریع: %(label)s را از نوع سند \"%(document_type #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "برچسب سریع \"%(filename)s\" را از نوع سند \"%(document_type)s\" ویرایش کنید" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"برچسب سریع \"%(filename)s\" را از نوع سند \"%(document_type)s\" ویرایش کنید" #: views/document_type_views.py:253 msgid "" @@ -1230,8 +1251,8 @@ msgstr "چاپ : %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1240,8 +1261,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1328,68 +1349,68 @@ msgstr "برای اسناد تکراری اسکن کنید؟" msgid "Duplicated document scan queued successfully." msgstr "اسکن کپی اسکن شده با موفقیت انجام شد." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "سطل زباله خالی" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "سطل زباله با موفقیت حذف شد" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po index 18f2f21713..41fd5b6553 100644 --- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2016-2018 @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documents" @@ -36,7 +36,9 @@ msgstr "Créer un type de document" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Chaque document transféré doit être associé à un type de document, cela permet à Mayan EDMS de catégoriser les documents." +msgstr "" +"Chaque document transféré doit être associé à un type de document, cela " +"permet à Mayan EDMS de catégoriser les documents." #: apps.py:151 msgid "Versions comment" @@ -78,7 +80,7 @@ msgstr "Nombre de pages" msgid "Total documents" msgstr "Nombre total de documents" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documents dans la corbeille" @@ -137,10 +139,14 @@ msgstr "Compresser" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Télécharger le document dans son format original ou sous forme d'archive compressée. Cette option est uniquement disponible lors du téléchargement d'un document. Lors du téléchargement d'un groupe de documents, ce dernier sera toujours téléchargé en tant qu'archive compressée." +msgstr "" +"Télécharger le document dans son format original ou sous forme d'archive " +"compressée. Cette option est uniquement disponible lors du téléchargement " +"d'un document. Lors du téléchargement d'un groupe de documents, ce dernier " +"sera toujours téléchargé en tant qu'archive compressée." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -150,7 +156,9 @@ msgstr "Nom du fichier compressé" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Le nom de fichier du fichier compressé qui contiendra les documents à télécharger, si l'option précédente est sélectionnée." +msgstr "" +"Le nom de fichier du fichier compressé qui contiendra les documents à " +"télécharger, si l'option précédente est sélectionnée." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -164,7 +172,10 @@ msgstr "Conserver l'extension" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "Prend l'extension de fichier et la déplace à la fin du nom de fichier, ce qui permet aux systèmes d'exploitation qui s'appuient sur des extensions de fichier d'ouvrir le document correctement." +msgstr "" +"Prend l'extension de fichier et la déplace à la fin du nom de fichier, ce " +"qui permet aux systèmes d'exploitation qui s'appuient sur des extensions de " +"fichier d'ouvrir le document correctement." #: forms/document_forms.py:147 msgid "Date added" @@ -228,7 +239,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Reprend l'extension de fichier et la place à la fin du nom de fichier afin de permettre aux systèmes d'exploitation qui se basent sur les extensions d'ouvrir correctement la version téléchargée du document." +msgstr "" +"Reprend l'extension de fichier et la place à la fin du nom de fichier afin " +"de permettre aux systèmes d'exploitation qui se basent sur les extensions " +"d'ouvrir correctement la version téléchargée du document." #: links.py:66 msgid "Preview" @@ -332,7 +346,9 @@ msgstr "Corbeille" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Effacer les représentations graphiques utilisées pour accélérer l'affichage des documents et les résultats des transformations interactives." +msgstr "" +"Effacer les représentations graphiques utilisées pour accélérer l'affichage " +"des documents et les résultats des transformations interactives." #: links.py:274 msgid "Clear document image cache" @@ -451,7 +467,9 @@ msgstr "Description" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "La date et l'heure du serveur lorsque le document a finalement été traité et ajouté au système." +msgstr "" +"La date et l'heure du serveur lorsque le document a finalement été traité et " +"ajouté au système." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -471,7 +489,9 @@ msgstr "Présent dans la corbeille ?" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "La date et l'heure du serveur lorsque le document a été placé dans la corbeille." +msgstr "" +"La date et l'heure du serveur lorsque le document a été placé dans la " +"corbeille." #: models/document_models.py:77 msgid "Date and time trashed" @@ -482,7 +502,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un document parcellaire est un document avec une entrée en base de données mais aucun fichier transféré. Cela peut correspondre à un transfert interrompu ou à un transfert différé via l'API." +msgstr "" +"Un document parcellaire est un document avec une entrée en base de données " +"mais aucun fichier transféré. Cela peut correspondre à un transfert " +"interrompu ou à un transfert différé via l'API." #: models/document_models.py:84 msgid "Is stub?" @@ -538,9 +561,10 @@ msgstr "Le nom du type de document." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Temps après lequel les documents de ce type seront déplacés vers la corbeille." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Temps après lequel les documents de ce type seront déplacés vers la " +"corbeille." #: models/document_type_models.py:38 msgid "Trash time period" @@ -554,7 +578,9 @@ msgstr "Unité de temps avant déplacement vers la corbeille" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Temps après lequel les documents de ce type présents dans la corbeille seront supprimés." +msgstr "" +"Temps après lequel les documents de ce type présents dans la corbeille " +"seront supprimés." #: models/document_type_models.py:48 msgid "Delete time period" @@ -578,7 +604,8 @@ msgstr "Étiquetage rapide" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "La date et l'heure du serveur lorsque la version du document a été traitée." +msgstr "" +"La date et l'heure du serveur lorsque la version du document a été traitée." #: models/document_version_models.py:79 msgid "Timestamp" @@ -599,9 +626,12 @@ msgstr "Fichier" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "Le type MIME du fichier de la version du document. Les types MIME sont un moyen standard de décrire le format d'un fichier, dans ce cas le format de fichier du document. Quelques exemples: \"text/plain\" or \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"Le type MIME du fichier de la version du document. Les types MIME sont un " +"moyen standard de décrire le format d'un fichier, dans ce cas le format de " +"fichier du document. Quelques exemples: \"text/plain\" or \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -611,7 +641,9 @@ msgstr "Type MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "L'encodage du fichier de version du document. Binaire 7 bits, binaire 8 bits, texte, base64, etc." +msgstr "" +"L'encodage du fichier de version du document. Binaire 7 bits, binaire 8 " +"bits, texte, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -769,7 +801,9 @@ msgstr "" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "Chemin de la sous-classe de stockage à utiliser lors du stockage des fichiers d’image de document mis en cache." +msgstr "" +"Chemin de la sous-classe de stockage à utiliser lors du stockage des " +"fichiers d’image de document mis en cache." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -779,13 +813,18 @@ msgstr "Arguments à transmettre à DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Désactive le premier niveau de cache qui stocke les pages de documents de haute résolution et non transformées." +msgstr "" +"Désactive le premier niveau de cache qui stocke les pages de documents de " +"haute résolution et non transformées." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Désactive le deuxième niveau de cache qui stocke des versions de moyenne à faible résolution, transformées (tournées, agrandies, etc.) des pages des documents." +msgstr "" +"Désactive le deuxième niveau de cache qui stocke des versions de moyenne à " +"faible résolution, transformées (tournées, agrandies, etc.) des pages des " +"documents." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -794,16 +833,23 @@ msgstr "Nombre maximum de documents favoris à mémoriser par utilisateur." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "Détecte l'orientation de chacune des pages du document et crée une transformation de rotation correspondante pour l'afficher dans la bonne orientation. Il s'agit d'une fonctionnalité expérimentale désactivée par défaut." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"Détecte l'orientation de chacune des pages du document et crée une " +"transformation de rotation correspondante pour l'afficher dans la bonne " +"orientation. Il s'agit d'une fonctionnalité expérimentale désactivée par " +"défaut." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." -msgstr "Taille des blocs à utiliser lors du calcul de la somme de contrôle d'un fichier d'un document. Une valeur de 0 désactive le calcul du bloc et le fichier entier sera chargé en mémoire." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." +msgstr "" +"Taille des blocs à utiliser lors du calcul de la somme de contrôle d'un " +"fichier d'un document. Une valeur de 0 désactive le calcul du bloc et le " +"fichier entier sera chargé en mémoire." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -817,13 +863,18 @@ msgstr "Liste des langues de document supportées. Dans le format ISO639-3." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "Durée en secondes pendant laquelle le navigateur doit mettre en cache les images fournies pour un document. La valeur par défaut de 31559626 secondes correspond à 1 an." +msgstr "" +"Durée en secondes pendant laquelle le navigateur doit mettre en cache les " +"images fournies pour un document. La valeur par défaut de 31559626 secondes " +"correspond à 1 an." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "Nombre maximum de documents récemment consultés (créés, modifiés ou consultés) à mémoriser par utilisateur." +msgstr "" +"Nombre maximum de documents récemment consultés (créés, modifiés ou " +"consultés) à mémoriser par utilisateur." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -831,11 +882,15 @@ msgstr "Nombre maximum de documents récemment créés à afficher." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Valeur en degrés de la rotation d'une page de document par interaction de l'utilisateur." +msgstr "" +"Valeur en degrés de la rotation d'une page de document par interaction de " +"l'utilisateur." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "Chemin de la sous-classe de stockage à utiliser lors du stockage des fichiers de document." +msgstr "" +"Chemin de la sous-classe de stockage à utiliser lors du stockage des " +"fichiers de document." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -849,17 +904,23 @@ msgstr "Hauteur en pixels de l'aperçu du document." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour l'utilisateur." +msgstr "" +"Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour " +"l'utilisateur." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé pour l'utilisateur." +msgstr "" +"Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé " +"pour l'utilisateur." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Valeur en pourcentage du zoom avant ou arrière d'une page de document par interaction de l'utilisateur." +msgstr "" +"Valeur en pourcentage du zoom avant ou arrière d'une page de document par " +"interaction de l'utilisateur." #: statistics.py:18 msgid "January" @@ -939,7 +1000,10 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "\n Page %(page_number)s de %(total_pages)s\n " +msgstr "" +"\n" +" Page %(page_number)s de %(total_pages)s\n" +" " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -952,10 +1016,9 @@ msgstr "Langue inconnue \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -988,10 +1051,15 @@ msgstr "Documents du type : %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "Les types de document sont les unités de configuration les plus élémentaires. Tout dans le système dépendra d'eux. Définissez un type de document pour chaque type de document physique que vous souhaitez télécharger. Exemples de types de documents: facture, reçu, manuel, ordonnance, bilan, etc." +msgstr "" +"Les types de document sont les unités de configuration les plus " +"élémentaires. Tout dans le système dépendra d'eux. Définissez un type de " +"document pour chaque type de document physique que vous souhaitez " +"télécharger. Exemples de types de documents: facture, reçu, manuel, " +"ordonnance, bilan, etc." #: views/document_type_views.py:77 msgid "No document types available" @@ -1025,19 +1093,28 @@ msgstr "Créer un libellé rapide pour le type de document : %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Êtes-vous sûr de vouloir supprimer le libellé rapide %(label)s du type de document \"%(document_type)s\" ?" +msgstr "" +"Êtes-vous sûr de vouloir supprimer le libellé rapide %(label)s du type de " +"document \"%(document_type)s\" ?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Modifier le libellé rapide \"%(filename)s\" du type de document \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Modifier le libellé rapide \"%(filename)s\" du type de document " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "Les étiquettes rapides sont des noms de fichiers prédéterminés qui permettent de renommer rapidement des documents au fur et à mesure de leur téléchargement en les sélectionnant dans une liste. Les étiquettes rapides peuvent également être utilisées une fois les documents téléversés." +msgstr "" +"Les étiquettes rapides sont des noms de fichiers prédéterminés qui " +"permettent de renommer rapidement des documents au fur et à mesure de leur " +"téléchargement en les sélectionnant dans une liste. Les étiquettes rapides " +"peuvent également être utilisées une fois les documents téléversés." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1059,7 +1136,8 @@ msgstr "Versions du document : %s" #: views/document_version_views.py:121 msgid "All later version after this one will be deleted too." -msgstr "Toutes les versions postérieures à celle-ci seront également supprimées." +msgstr "" +"Toutes les versions postérieures à celle-ci seront également supprimées." #: views/document_version_views.py:124 msgid "Revert to this version?" @@ -1089,7 +1167,10 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "Cela peut signifier qu'aucun document n'a été chargé ou que votre compte d'utilisateur ne dispose pas d'autorisation d'affichage pour aucun document ou type de document." +msgstr "" +"Cela peut signifier qu'aucun document n'a été chargé ou que votre compte " +"d'utilisateur ne dispose pas d'autorisation d'affichage pour aucun document " +"ou type de document." #: views/document_views.py:94 msgid "No documents available" @@ -1098,12 +1179,14 @@ msgstr "Aucun document disponible" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "Demande de modification du type de document effectuée sur %(count)d document" +msgstr "" +"Demande de modification du type de document effectuée sur %(count)d document" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "Demande de modification du type de document effectuée sur %(count)d documents" +msgstr "" +"Demande de modification du type de document effectuée sur %(count)d documents" #: views/document_views.py:117 msgid "Change" @@ -1131,7 +1214,8 @@ msgstr "Télécharger" #: views/document_views.py:343 msgid "Only exact copies of this document will be shown in the this list." -msgstr "Seules les copies exactes de ce document seront affichées dans cette liste." +msgstr "" +"Seules les copies exactes de ce document seront affichées dans cette liste." #: views/document_views.py:347 msgid "There are no duplicates for this document" @@ -1160,18 +1244,24 @@ msgstr "Propriétés du document : %s" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "%(count)d document dans la file d'attente pour le recalcul du nombre de page" +msgstr "" +"%(count)d document dans la file d'attente pour le recalcul du nombre de page" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "%(count)d documents dans la file d'attente pour le recalcul du nombre de page" +msgstr "" +"%(count)d documents dans la file d'attente pour le recalcul du nombre de page" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "Êtes vous sûr de vouloir recalculer le nombre de pages du document sélectionné ?" -msgstr[1] "Êtes-vous sûr de vouloir recalculer le nombre de pages des documents sélectionnés ?" +msgstr[0] "" +"Êtes vous sûr de vouloir recalculer le nombre de pages du document " +"sélectionné ?" +msgstr[1] "" +"Êtes-vous sûr de vouloir recalculer le nombre de pages des documents " +"sélectionnés ?" #: views/document_views.py:463 #, python-format @@ -1183,7 +1273,9 @@ msgstr "Recalculer le nombre de page pour le document : %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "Le document \"%(document)s\" est vide. Téléchargez au moins une version du document avant de tenter de détecter le nombre de pages." +msgstr "" +"Le document \"%(document)s\" est vide. Téléchargez au moins une version du " +"document avant de tenter de détecter le nombre de pages." #: views/document_views.py:492 #, python-format @@ -1193,13 +1285,16 @@ msgstr "Demande d'effacement de transformation traitée pour %(count)d document" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "Demande d'effacement de transformation traitée pour %(count)d documents" +msgstr "" +"Demande d'effacement de transformation traitée pour %(count)d documents" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "Effacer toutes les transformations de page pour le document sélectionné?" -msgstr[1] "Effacer toutes les transformations de page pour le document sélectionné?" +msgstr[0] "" +"Effacer toutes les transformations de page pour le document sélectionné?" +msgstr[1] "" +"Effacer toutes les transformations de page pour le document sélectionné?" #: views/document_views.py:514 #, python-format @@ -1211,7 +1306,9 @@ msgstr "Effacer toutes les transformations de page pour le document : %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erreur lors de la suppression des transformations de page pour le document : %(document)s; %(error)s." +msgstr "" +"Erreur lors de la suppression des transformations de page pour le document : " +"%(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1234,9 +1331,13 @@ msgstr "Imprimer : %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." -msgstr "Les doublons sont des documents composés exactement du même fichier jusqu'au dernier octet. Les fichiers qui ont le même texte ou la même OCR mais qui ne sont pas identiques ou qui ont été enregistrés dans un format de fichier différent ne seront pas affichés comme doublons." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." +msgstr "" +"Les doublons sont des documents composés exactement du même fichier jusqu'au " +"dernier octet. Les fichiers qui ont le même texte ou la même OCR mais qui ne " +"sont pas identiques ou qui ont été enregistrés dans un format de fichier " +"différent ne seront pas affichés comme doublons." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1244,9 +1345,11 @@ msgstr "Il n'y a pas de documents en double" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." -msgstr "Cette page affiche la liste des derniers documents consultés ou manipulés de quelque manière que ce soit par ce compte d'utilisateur." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." +msgstr "" +"Cette page affiche la liste des derniers documents consultés ou manipulés de " +"quelque manière que ce soit par ce compte d'utilisateur." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1254,7 +1357,9 @@ msgstr "Il n'y a pas de document récemment consulté" #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "Cette page afficher la liste des derniers documents téléchargés dans le système." +msgstr "" +"Cette page afficher la liste des derniers documents téléchargés dans le " +"système." #: views/document_views.py:736 msgid "There are no recently added document" @@ -1265,7 +1370,9 @@ msgstr "Il n'y a pas de document ajouté récemment" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "Les documents favoris seront listés dans cette page. Jusqu'à %(count)d documents peuvent être ajoutés par utilisateur." +msgstr "" +"Les documents favoris seront listés dans cette page. Jusqu'à %(count)d " +"documents peuvent être ajoutés par utilisateur." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1322,7 +1429,9 @@ msgstr "Vider l'image en cache du document ?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "Demande de nettoyage du cache de documents mise en file d'attente avec succès." +msgstr "" +"Demande de nettoyage du cache de documents mise en file d'attente avec " +"succès." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" @@ -1332,68 +1441,71 @@ msgstr "Recherche de documents dupliqués ?" msgid "Duplicated document scan queued successfully." msgstr "Recherche de documents dupliqués effectuée avec succès." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d document déplacé dans la corbeille." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d documents déplacés dans la corbeille." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Déplacez le document sélectionné dans la corbeille?" msgstr[1] "Déplacez les documents sélectionnés vers la corbeille?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Vider la corbeille ?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Corbeille vidée avec succès" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d document supprimé de la corbeille." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d documents supprimés de la corbeille." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Supprimer le document sélectionné dans la corbeille?" msgstr[1] "Supprimer les documents de la corbeille sélectionnés?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "Pour éviter toute perte de données, les documents ne sont pas supprimés instantanément. Tout d'abord, ils sont placés à la corbeille. De là, ils peuvent être supprimés ou restaurés." +msgstr "" +"Pour éviter toute perte de données, les documents ne sont pas supprimés " +"instantanément. Tout d'abord, ils sont placés à la corbeille. De là, ils " +"peuvent être supprimés ou restaurés." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Il n'y a pas de documents dans la corbeille" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d document restauré de la corbeille." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d documents restaurés de la corbeille." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Restaurer le document sélectionné dans la corbeille?" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index c9c0ff976e..1a29442181 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "dokumentumok" @@ -32,7 +32,9 @@ msgstr "Dokumentum típus létrehozása" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Minden betöltött dokumentumhoz hozzá kell rendelni egy típust, ez az alapvető kategorizálási elv a Mayan EDMS-ben." +msgstr "" +"Minden betöltött dokumentumhoz hozzá kell rendelni egy típust, ez az " +"alapvető kategorizálási elv a Mayan EDMS-ben." #: apps.py:151 msgid "Versions comment" @@ -74,7 +76,7 @@ msgstr "" msgid "Total documents" msgstr "Dokumentumok száma" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumentumok a kukában" @@ -133,8 +135,8 @@ msgstr "Tömörítés" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -146,7 +148,9 @@ msgstr "Tömörített fájlnév" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, ha az előző opció van kiválasztva." +msgstr "" +"A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, " +"ha az előző opció van kiválasztva." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -328,7 +332,9 @@ msgstr "Kuka" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum megjelenítését és az interaktív átalakításokat." +msgstr "" +"Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum " +"megjelenítését és az interaktív átalakításokat." #: links.py:274 msgid "Clear document image cache" @@ -510,7 +516,9 @@ msgstr "Dokumentum oldalak" #: models/document_page_models.py:253 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak száma: %(total_pages)d " +msgstr "" +"Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak " +"száma: %(total_pages)d " #: models/document_page_models.py:286 msgid "Date time" @@ -534,8 +542,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -595,8 +602,8 @@ msgstr "Állomány" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -790,15 +797,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -827,7 +834,9 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy lépésben." +msgstr "" +"A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy " +"lépésben." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -851,11 +860,14 @@ msgstr "Egy dokumentum oldal százalékos (%) nagyításának aránya egy lépé msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." +msgstr "" +"Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy lépésben." +msgstr "" +"Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy " +"lépésben." #: statistics.py:18 msgid "January" @@ -948,10 +960,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +995,8 @@ msgstr "%s típusú dokumentumok" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,8 +1036,11 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "\"%(document_type)s\" dokumentum típushoz tartozó \"%(filename)s\" gyorscímke szerkesztése" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"\"%(document_type)s\" dokumentum típushoz tartozó \"%(filename)s\" " +"gyorscímke szerkesztése" #: views/document_type_views.py:253 msgid "" @@ -1207,7 +1221,8 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." +msgstr "" +"Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1230,8 +1245,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1240,8 +1255,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1328,68 +1343,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index b8e20bf54a..d188badbd9 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Adek Lanin, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumen" @@ -74,7 +74,7 @@ msgstr "Total halaman" msgid "Total documents" msgstr "Total dokumen" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumen dalam tong sampah" @@ -133,8 +133,8 @@ msgstr "Kompresi" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -146,7 +146,9 @@ msgstr "Nama berkas terkompresi" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang akan diunduh, bila pilihan sebelumnya terpilih." +msgstr "" +"Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang " +"akan diunduh, bila pilihan sebelumnya terpilih." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -328,7 +330,9 @@ msgstr "Tong sampah" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat menampilkan dokumen dan hasil transformasi interaktif." +msgstr "" +"Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat " +"menampilkan dokumen dan hasil transformasi interaktif." #: links.py:274 msgid "Clear document image cache" @@ -447,7 +451,9 @@ msgstr "Deskripsi" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "Tanggal dan waktu pada peladen saat dokumen selesai diproses dan ditambahkan ke sistem." +msgstr "" +"Tanggal dan waktu pada peladen saat dokumen selesai diproses dan ditambahkan " +"ke sistem." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -534,9 +540,10 @@ msgstr "Nama tipe dokumen." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Waktu yang dibutuhkan saat dokumen dari tipe ini akan dipindahkan ke tong sampah." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Waktu yang dibutuhkan saat dokumen dari tipe ini akan dipindahkan ke tong " +"sampah." #: models/document_type_models.py:38 msgid "Trash time period" @@ -550,7 +557,9 @@ msgstr "" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Waktu yang dibutuhkan setelah dokumen dari tipe ini pada tong sampah akan dihapus." +msgstr "" +"Waktu yang dibutuhkan setelah dokumen dari tipe ini pada tong sampah akan " +"dihapus." #: models/document_type_models.py:48 msgid "Delete time period" @@ -595,8 +604,8 @@ msgstr "File" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -607,7 +616,8 @@ msgstr "Tipe MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "Pengkodean versi dokumen. binari 7-bit, binari 8-bit, teks, base64, dll." +msgstr "" +"Pengkodean versi dokumen. binari 7-bit, binari 8-bit, teks, base64, dll." #: models/document_version_models.py:104 msgid "Encoding" @@ -790,15 +800,15 @@ msgstr "Jumlah maksimum dokumen favorit per pengguna" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -827,7 +837,8 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." +msgstr "" +"Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -845,17 +856,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperbesar tampilan halaman dokumen secara interaktif" +msgstr "" +"Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk " +"memperbesar tampilan halaman dokumen secara interaktif" #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperkecil tampilan halaman dokumen secara interaktif." +msgstr "" +"Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk " +"memperkecil tampilan halaman dokumen secara interaktif." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman dokumen per interaksi pengguna." +msgstr "" +"Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman " +"dokumen per interaksi pengguna." #: statistics.py:18 msgid "January" @@ -948,10 +965,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +1000,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,7 +1041,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1204,7 +1221,9 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Masalah dalam menghapus transformasi-transformasi untuk halaman: %(document)s; %(error)s." +msgstr "" +"Masalah dalam menghapus transformasi-transformasi untuk halaman: " +"%(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1227,8 +1246,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1237,8 +1256,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1323,66 +1342,66 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index 05c638e20f..37a2f2d57e 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Roberto Rosario, 2016 @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documenti" @@ -33,7 +33,9 @@ msgstr "Creare un tipo di documento" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Ad ogni documento caricato deve essere assegnato un tipo documento, questa è la via più semplice per categorizzare i documenti in Mayan EDMS." +msgstr "" +"Ad ogni documento caricato deve essere assegnato un tipo documento, questa " +"è la via più semplice per categorizzare i documenti in Mayan EDMS." #: apps.py:151 msgid "Versions comment" @@ -75,7 +77,7 @@ msgstr "" msgid "Total documents" msgstr "Totale documenti" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documenti nel cestino" @@ -134,10 +136,13 @@ msgstr "Comprimere" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Scarica il documento nel formato originale oppure compresso. Questa opzione è selezionabile quando scarichi un singolo documento, per documenti multipli, il pacchetto sarà sempre scaricato in formato compresso." +msgstr "" +"Scarica il documento nel formato originale oppure compresso. Questa opzione " +"è selezionabile quando scarichi un singolo documento, per documenti " +"multipli, il pacchetto sarà sempre scaricato in formato compresso." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -147,7 +152,9 @@ msgstr "Nome file compresso " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Il nome file del file compresso che conterrà il documento da scaricare, se l'opzione precedente è selezionata." +msgstr "" +"Il nome file del file compresso che conterrà il documento da scaricare, se " +"l'opzione precedente è selezionata." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -329,7 +336,9 @@ msgstr "Cestino" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Cancella le rappresentazioni grafiche utilizzate per accellerare la visualizzazione dei documenti e dei risultati interattivi trasformazioni." +msgstr "" +"Cancella le rappresentazioni grafiche utilizzate per accellerare la " +"visualizzazione dei documenti e dei risultati interattivi trasformazioni." #: links.py:274 msgid "Clear document image cache" @@ -479,7 +488,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un documento troncato è un documento presente sul database che non ha un file scaricato. Potrebbe essere dovuto ad un upload interrotto oppure rimandato per caricarlo via API." +msgstr "" +"Un documento troncato è un documento presente sul database che non ha un " +"file scaricato. Potrebbe essere dovuto ad un upload interrotto oppure " +"rimandato per caricarlo via API." #: models/document_models.py:84 msgid "Is stub?" @@ -535,9 +547,10 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Quantità di tempo dopo il quale i documenti di questo tipo saranno spostati nel cestino." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Quantità di tempo dopo il quale i documenti di questo tipo saranno spostati " +"nel cestino." #: models/document_type_models.py:38 msgid "Trash time period" @@ -551,7 +564,9 @@ msgstr "Unità di tempo per cestinare" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Quantità di tempo dopo il quale i documenti di questo tipo nel cestino saranno cancellati." +msgstr "" +"Quantità di tempo dopo il quale i documenti di questo tipo nel cestino " +"saranno cancellati." #: models/document_type_models.py:48 msgid "Delete time period" @@ -596,8 +611,8 @@ msgstr "File" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -791,15 +806,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -846,17 +861,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Ingrandimento massimo in percentuale (%) da consentire all'utente per una pagina del documento in modo interattivo." +msgstr "" +"Ingrandimento massimo in percentuale (%) da consentire all'utente per una " +"pagina del documento in modo interattivo." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Quantità minima in percentuale (%) per consentire all'utente di ingrandire una pagina di documento in modo interattivo." +msgstr "" +"Quantità minima in percentuale (%) per consentire all'utente di ingrandire " +"una pagina di documento in modo interattivo." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Percentuale dello zoom di una pagina del documento per l'interazione dell'utente." +msgstr "" +"Percentuale dello zoom di una pagina del documento per l'interazione " +"dell'utente." #: statistics.py:18 msgid "January" @@ -949,10 +970,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -985,8 +1005,8 @@ msgstr "Documento di tipo: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1022,12 +1042,16 @@ msgstr "Crea etichetta rapida per il tipo documento: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Cancellare l'etichetta: %(label)s, dal tipo documento \"%(document_type)s\"?" +msgstr "" +"Cancellare l'etichetta: %(label)s, dal tipo documento \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Modifica etichetta rapida \"%(filename)s\" dal tipo documento \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Modifica etichetta rapida \"%(filename)s\" dal tipo documento " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1208,7 +1232,9 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Errore nella cancellazione della trasformazione della pagina per il documento:%(document)s; %(error)s." +msgstr "" +"Errore nella cancellazione della trasformazione della pagina per il " +"documento:%(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1231,8 +1257,8 @@ msgstr "Stampa: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1241,8 +1267,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1329,68 +1355,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Cancellare il cestino?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Svuotamento cestino completato" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po index a013fcef7d..104981322d 100644 --- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po @@ -1,26 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumenti" @@ -32,7 +33,9 @@ msgstr "Izveidojiet dokumenta veidu" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Katram augšupielādētajam dokumentam ir jāpiešķir dokumenta veids, tas ir galvenais veids, kā Mayan EDMS kategorizē dokumentus." +msgstr "" +"Katram augšupielādētajam dokumentam ir jāpiešķir dokumenta veids, tas ir " +"galvenais veids, kā Mayan EDMS kategorizē dokumentus." #: apps.py:151 msgid "Versions comment" @@ -74,7 +77,7 @@ msgstr "Kopā lapas" msgid "Total documents" msgstr "Kopā dokumenti" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenti miskastē" @@ -133,10 +136,13 @@ msgstr "Saspiest" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Lejupielādējiet dokumentu oriģinālā formātā vai saspiestā veidā. Šī opcija ir pieejama tikai tad, ja lejupielādējat vienu dokumentu, vairākiem dokumentiem pakete vienmēr būs lejupielādēta kā saspiests fails." +msgstr "" +"Lejupielādējiet dokumentu oriģinālā formātā vai saspiestā veidā. Šī opcija " +"ir pieejama tikai tad, ja lejupielādējat vienu dokumentu, vairākiem " +"dokumentiem pakete vienmēr būs lejupielādēta kā saspiests fails." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -146,7 +152,9 @@ msgstr "Saspiests faila nosaukums" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Saspiestā faila nosaukums, kurā būs lejupielādējami dokumenti, ja ir izvēlēta iepriekšējā opcija." +msgstr "" +"Saspiestā faila nosaukums, kurā būs lejupielādējami dokumenti, ja ir " +"izvēlēta iepriekšējā opcija." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -160,7 +168,10 @@ msgstr "Saglabāt paplašinājumu" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "Veic faila paplašinājumu un pārvieto to līdz faila nosaukuma beigām, ļaujot operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi atvērt dokumentu." +msgstr "" +"Veic faila paplašinājumu un pārvieto to līdz faila nosaukuma beigām, ļaujot " +"operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi atvērt " +"dokumentu." #: forms/document_forms.py:147 msgid "Date added" @@ -224,7 +235,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Veic faila paplašinājumu un pārvieto to faila nosaukuma beigās, ļaujot operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi lejupielādēt lejupielādēto dokumentu versiju." +msgstr "" +"Veic faila paplašinājumu un pārvieto to faila nosaukuma beigās, ļaujot " +"operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi lejupielādēt " +"lejupielādēto dokumentu versiju." #: links.py:66 msgid "Preview" @@ -328,7 +342,9 @@ msgstr "Miskaste" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Notīriet grafikas attēlus, kas izmantoti, lai paātrinātu dokumentu displeju un interaktīvās transformācijas rezultātus." +msgstr "" +"Notīriet grafikas attēlus, kas izmantoti, lai paātrinātu dokumentu displeju " +"un interaktīvās transformācijas rezultātus." #: links.py:274 msgid "Clear document image cache" @@ -447,7 +463,9 @@ msgstr "Apraksts" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "Servera datums un laiks, kad dokuments beidzot tika apstrādāts un pievienots sistēmai." +msgstr "" +"Servera datums un laiks, kad dokuments beidzot tika apstrādāts un pievienots " +"sistēmai." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -478,7 +496,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Dokumenta gabals ir dokuments ar ierakstu datubāzē, bet neviens fails nav augšupielādēts. Tas varētu būt pārtraukta augšupielāde vai atlikta augšupielāde, izmantojot API." +msgstr "" +"Dokumenta gabals ir dokuments ar ierakstu datubāzē, bet neviens fails nav " +"augšupielādēts. Tas varētu būt pārtraukta augšupielāde vai atlikta " +"augšupielāde, izmantojot API." #: models/document_models.py:84 msgid "Is stub?" @@ -534,8 +555,7 @@ msgstr "Dokumenta veida nosaukums." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "Laiks, pēc kura šāda veida dokumenti tiks pārvietoti uz miskasti." #: models/document_type_models.py:38 @@ -595,9 +615,12 @@ msgstr "Fails" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "Dokumenta versijas fails ir mimetype. MIME veidi ir standarta veids, kā aprakstīt faila formātu, šajā gadījumā dokumenta faila formātu. Daži piemēri: "text / plain" vai "image / jpeg"." +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"Dokumenta versijas fails ir mimetype. MIME veidi ir standarta veids, kā " +"aprakstīt faila formātu, šajā gadījumā dokumenta faila formātu. Daži " +"piemēri: "text / plain" vai "image / jpeg"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -607,7 +630,9 @@ msgstr "MIME tips" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "Dokumenta versijas faila kodējums. binārā 7 bitu, binārā 8 bitu, teksta, bāzes64 utt." +msgstr "" +"Dokumenta versijas faila kodējums. binārā 7 bitu, binārā 8 bitu, teksta, " +"bāzes64 utt." #: models/document_version_models.py:104 msgid "Encoding" @@ -765,7 +790,9 @@ msgstr "Skenēt dokumentu dublikātus" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "Ceļš uz glabāšanas apakšklasi, ko izmanto, saglabājot kešatmiņā saglabāto dokumentu attēlu failus." +msgstr "" +"Ceļš uz glabāšanas apakšklasi, ko izmanto, saglabājot kešatmiņā saglabāto " +"dokumentu attēlu failus." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -775,31 +802,42 @@ msgstr "Argumenti, kas jānodod DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Atspējo pirmo kešatmiņas pakāpi, kurā tiek glabātas augstas izšķirtspējas, pārveidotu dokumentu lapu versijas." +msgstr "" +"Atspējo pirmo kešatmiņas pakāpi, kurā tiek glabātas augstas izšķirtspējas, " +"pārveidotu dokumentu lapu versijas." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Atspējo otro kešatmiņas pakāpi, kurā tiek saglabātas vidēja līdz zema izšķirtspēja, pārveidotas (pagrieztas, tālinātas utt.) Dokumentu lapu versijas." +msgstr "" +"Atspējo otro kešatmiņas pakāpi, kurā tiek saglabātas vidēja līdz zema " +"izšķirtspēja, pārveidotas (pagrieztas, tālinātas utt.) Dokumentu lapu " +"versijas." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." -msgstr "Maksimālais iecienīto dokumentu skaits, kas jāatceras katram lietotājam." +msgstr "" +"Maksimālais iecienīto dokumentu skaits, kas jāatceras katram lietotājam." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "Atklājiet katra dokumenta lapas orientāciju un izveidojiet atbilstošu rotācijas transformāciju, lai parādītu to tiesības uz augšu. Šī ir eksperimentāla funkcija un pēc noklusējuma tā ir atspējota." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"Atklājiet katra dokumenta lapas orientāciju un izveidojiet atbilstošu " +"rotācijas transformāciju, lai parādītu to tiesības uz augšu. Šī ir " +"eksperimentāla funkcija un pēc noklusējuma tā ir atspējota." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." -msgstr "Datu faila kontrolsummas aprēķināšanai izmantojamo bloku lielums. Vērtība 0 atspējo bloku aprēķinu un viss fails tiks ielādēts atmiņā." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." +msgstr "" +"Datu faila kontrolsummas aprēķināšanai izmantojamo bloku lielums. Vērtība 0 " +"atspējo bloku aprēķinu un viss fails tiks ielādēts atmiņā." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -813,13 +851,17 @@ msgstr "Atbalstīto dokumentu valodu saraksts. ISO639-3 formātā." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "Laiks sekundēs, kad pārlūkam ir jāsniedz piegādāto dokumentu attēlu kešatmiņa. Noklusējuma vērtība 31559626 sekundes atbilst 1 gadam." +msgstr "" +"Laiks sekundēs, kad pārlūkam ir jāsniedz piegādāto dokumentu attēlu " +"kešatmiņa. Noklusējuma vērtība 31559626 sekundes atbilst 1 gadam." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "Maksimālais skaits nesen piekļūto (izveidoto, rediģēto, skatīto) dokumentu, kas jāatceras katram lietotājam." +msgstr "" +"Maksimālais skaits nesen piekļūto (izveidoto, rediģēto, skatīto) dokumentu, " +"kas jāatceras katram lietotājam." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -827,11 +869,13 @@ msgstr "Maksimālais nesen izveidoto dokumentu skaits." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Summa grādos, lai pagrieztu dokumenta lapu katrai lietotāja mijiedarbībai." +msgstr "" +"Summa grādos, lai pagrieztu dokumenta lapu katrai lietotāja mijiedarbībai." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "Ceļš uz glabāšanas apakšklasi, ko var izmantot, glabājot dokumentu failus." +msgstr "" +"Ceļš uz glabāšanas apakšklasi, ko var izmantot, glabājot dokumentu failus." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -845,17 +889,23 @@ msgstr "Dokumenta sīktēla attēla pikseļu augstums." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maksimālā summa procentos (%), lai ļautu lietotājam interaktīvi tuvināt dokumenta lapu." +msgstr "" +"Maksimālā summa procentos (%), lai ļautu lietotājam interaktīvi tuvināt " +"dokumenta lapu." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimālā summa procentos (%), lai ļautu lietotājam interaktīvi attālināt dokumentu lapu." +msgstr "" +"Minimālā summa procentos (%), lai ļautu lietotājam interaktīvi attālināt " +"dokumentu lapu." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Summa, kas procentos palielināta vai samazināta dokumenta lappusē katrai lietotāja mijiedarbībai." +msgstr "" +"Summa, kas procentos palielināta vai samazināta dokumenta lappusē katrai " +"lietotāja mijiedarbībai." #: statistics.py:18 msgid "January" @@ -948,11 +998,14 @@ msgstr "Nezināma valoda "%s"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." -msgstr "Tas varētu nozīmēt, ka dokuments ir tādā formātā, kas netiek atbalstīts, vai tas ir bojāts vai augšupielādes process tika pārtraukts. Izmantojiet dokumenta lapas pārrēķināšanas darbību, lai mēģinātu atkārtoti apskatīt lapu skaitu." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." +msgstr "" +"Tas varētu nozīmēt, ka dokuments ir tādā formātā, kas netiek atbalstīts, vai " +"tas ir bojāts vai augšupielādes process tika pārtraukts. Izmantojiet " +"dokumenta lapas pārrēķināšanas darbību, lai mēģinātu atkārtoti apskatīt lapu " +"skaitu." #: views/document_page_views.py:59 msgid "No document pages available" @@ -984,10 +1037,14 @@ msgstr "Dokumenta dokumenti: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "Dokumentu veidi ir visvienkāršākās konfigurācijas vienības. Viss sistēmā būs atkarīgs no tiem. Definējiet dokumenta veidu katram fiziskā dokumenta tipam, kuru plānojat augšupielādēt. Dokumentu tipu piemērs: rēķins, kvīts, rokasgrāmata, recepte, bilance." +msgstr "" +"Dokumentu veidi ir visvienkāršākās konfigurācijas vienības. Viss sistēmā būs " +"atkarīgs no tiem. Definējiet dokumenta veidu katram fiziskā dokumenta tipam, " +"kuru plānojat augšupielādēt. Dokumentu tipu piemērs: rēķins, kvīts, " +"rokasgrāmata, recepte, bilance." #: views/document_type_views.py:77 msgid "No document types available" @@ -1021,19 +1078,27 @@ msgstr "Izveidojiet ātru uzlīmi dokumenta tipam: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Izdzēsiet ātrās iezīmes: %(label)s, no dokumenta tipa "%(document_type)s"?" +msgstr "" +"Izdzēsiet ātrās iezīmes: %(label)s, no dokumenta tipa "" +"%(document_type)s"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Ātra uzlīmes "%(filename)s" rediģēšana no dokumenta tipa "%(document_type)s"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Ātra uzlīmes "%(filename)s" rediģēšana no dokumenta tipa "" +"%(document_type)s"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "Ātrās uzlīmes ir iepriekš noteikti failu nosaukumi, kas ļauj ātri pārdēvēt dokumentus, tos augšupielādējot, atlasot tos no saraksta. Ātrās uzlīmes var izmantot arī pēc tam, kad dokumenti ir augšupielādēti." +msgstr "" +"Ātrās uzlīmes ir iepriekš noteikti failu nosaukumi, kas ļauj ātri pārdēvēt " +"dokumentus, tos augšupielādējot, atlasot tos no saraksta. Ātrās uzlīmes var " +"izmantot arī pēc tam, kad dokumenti ir augšupielādēti." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1085,7 +1150,10 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "Tas varētu nozīmēt, ka neviens dokuments nav augšupielādēts vai ka jūsu lietotāja kontam nav piešķirta neviena dokumenta vai dokumenta veida skatījuma atļauja." +msgstr "" +"Tas varētu nozīmēt, ka neviens dokuments nav augšupielādēts vai ka jūsu " +"lietotāja kontam nav piešķirta neviena dokumenta vai dokumenta veida " +"skatījuma atļauja." #: views/document_views.py:94 msgid "No documents available" @@ -1181,17 +1249,21 @@ msgstr "Pārrēķināt dokumenta lapu skaitu: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "Dokuments "%(document)s" ir tukšs. Pirms mēģināt atklāt lapas skaitu, augšupielādējiet vismaz vienu dokumentu versiju." +msgstr "" +"Dokuments "%(document)s" ir tukšs. Pirms mēģināt atklāt lapas " +"skaitu, augšupielādējiet vismaz vienu dokumentu versiju." #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "Transformācijas skaidrs pieprasījums, kas apstrādāts dokumentā %(count)d" +msgstr "" +"Transformācijas skaidrs pieprasījums, kas apstrādāts dokumentā %(count)d" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "Transformācijas skaidrais pieprasījums, kas apstrādāts dokumentiem %(count)d" +msgstr "" +"Transformācijas skaidrais pieprasījums, kas apstrādāts dokumentiem %(count)d" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" @@ -1210,7 +1282,8 @@ msgstr "Notīriet visas dokumenta lapas transformācijas: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Kļūda, izdzēšot lapas pārveidojumus dokumentam: %(document)s; %(error)s." +msgstr "" +"Kļūda, izdzēšot lapas pārveidojumus dokumentam: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1233,9 +1306,12 @@ msgstr "Drukāt: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." -msgstr "Dublikāti ir dokumenti, kas sastāv no tā paša faila līdz pēdējam baitam. Faili, kuriem ir tāds pats teksts vai OCR, bet nav identiski vai tika saglabāti, izmantojot citu failu formātu, netiks parādīti kā dublikāti." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." +msgstr "" +"Dublikāti ir dokumenti, kas sastāv no tā paša faila līdz pēdējam baitam. " +"Faili, kuriem ir tāds pats teksts vai OCR, bet nav identiski vai tika " +"saglabāti, izmantojot citu failu formātu, netiks parādīti kā dublikāti." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1243,9 +1319,11 @@ msgstr "Nav dublētu dokumentu" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." -msgstr "Šajā skatā tiks uzskaitīti jaunākie dokumenti, kurus šī lietotāja konts jebkādā veidā skatījis vai manipulē." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." +msgstr "" +"Šajā skatā tiks uzskaitīti jaunākie dokumenti, kurus šī lietotāja konts " +"jebkādā veidā skatījis vai manipulē." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1264,7 +1342,9 @@ msgstr "Nav nesen pievienota dokumenta" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "Šajā skatā tiks iekļauti iecienītie dokumenti. Katram lietotājam var būt iecienīts līdz %(count)d dokumentiem." +msgstr "" +"Šajā skatā tiks iekļauti iecienītie dokumenti. Katram lietotājam var būt " +"iecienīts līdz %(count)d dokumentiem." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1333,70 +1413,73 @@ msgstr "Meklējiet dublētus dokumentus?" msgid "Duplicated document scan queued successfully." msgstr "Dublētais dokumenta skenēšana veiksmīgi tika rindā." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d dokuments pārvietots uz miskasti." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d dokumenti pārvietoti uz miskasti." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Pārvietojiet atlasītos dokumentus uz miskasti?" msgstr[1] "Vai pārvietot atlasīto dokumentu uz miskasti?" msgstr[2] "Pārvietojiet atlasītos dokumentus uz miskasti?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Vai iztukšot miskasti?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Miskaste iztukšota veiksmīgi" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d izdzēsts dokuments." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d izdzēstie dokumenti izdzēsti." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Vai izdzēst atlasītos atkritumus?" msgstr[1] "Vai izdzēst izvēlēto izgāztos dokumentus?" msgstr[2] "Vai izdzēst atlasītos atkritumus?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "Lai izvairītos no datu zuduma, dokumenti netiek nekavējoties dzēsti. Pirmkārt, tie tiek ievietoti miskastē. No šejienes tos pēc tam var beidzot dzēst vai atjaunot." +msgstr "" +"Lai izvairītos no datu zuduma, dokumenti netiek nekavējoties dzēsti. " +"Pirmkārt, tie tiek ievietoti miskastē. No šejienes tos pēc tam var beidzot " +"dzēst vai atjaunot." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Atkritumu kastē nav dokumentu" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d atjaunotais atkritnes dokuments." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "atjaunoti %(count)d izgāztie dokumenti." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Vai atjaunot atlasītos atkritumus?" diff --git a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po index 07ef126149..728e6bdea5 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documenten" @@ -75,7 +75,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -134,8 +134,8 @@ msgstr "Comprimeren" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -147,7 +147,10 @@ msgstr "Bestandsnaam gecomprimeerde archiefbestand" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten bevat die dienen te worden gedownload, als de voorgaande optie is geselecteerd." +msgstr "" +"De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten " +"bevat die dienen te worden gedownload, als de voorgaande optie is " +"geselecteerd." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -329,7 +332,9 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Opschonen van de grafische afbeeldingen, die gebuikt worden bij het versnellen van de documentweergave en interactive transformatie resultaten." +msgstr "" +"Opschonen van de grafische afbeeldingen, die gebuikt worden bij het " +"versnellen van de documentweergave en interactive transformatie resultaten." #: links.py:274 msgid "Clear document image cache" @@ -535,8 +540,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -596,8 +600,8 @@ msgstr "Bestand" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -791,15 +795,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -846,13 +850,15 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." +msgstr "" +"Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " +msgstr "" +"Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -949,10 +955,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -985,8 +990,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1026,7 +1031,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1208,7 +1214,9 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Fout bij verwijderen van de pagina transformaties voor document: %(document)s ; %(error)s ." +msgstr "" +"Fout bij verwijderen van de pagina transformaties voor document: " +"%(document)s ; %(error)s ." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1231,8 +1239,8 @@ msgstr "Afdrukken: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1241,8 +1249,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1329,68 +1337,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Prullenbak legen?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Prullenbak succesvol geleegd" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index f3a0bdb979..8b2384f056 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2016-2018 @@ -9,19 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumenty" @@ -33,7 +35,9 @@ msgstr "Utwórz typ dokumentu" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." +msgstr "" +"Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest " +"to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." #: apps.py:151 msgid "Versions comment" @@ -75,7 +79,7 @@ msgstr "" msgid "Total documents" msgstr "Razem dokumenty" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenty w koszu" @@ -134,10 +138,14 @@ msgstr "Kompresuj" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Pobiera dokument w formacie oryginalnym lub w formie skompresowanej. Powyższa opcja ma zastosowanie jedynie w przypadku pobierania pojedynczego pliku. W przypadku wielu dokumentów zostaną one pobrane w formie skompresowanego archiwum." +msgstr "" +"Pobiera dokument w formacie oryginalnym lub w formie skompresowanej. " +"Powyższa opcja ma zastosowanie jedynie w przypadku pobierania pojedynczego " +"pliku. W przypadku wielu dokumentów zostaną one pobrane w formie " +"skompresowanego archiwum." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -147,7 +155,9 @@ msgstr "Nazwa pliku skompresowanego" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie skompresowanej, jeśli poprzednio wybrano opcję kompresji." +msgstr "" +"Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie " +"skompresowanej, jeśli poprzednio wybrano opcję kompresji." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -225,7 +235,9 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Pobiera rozszerzenie pliku i łączy je z nazwą pliku umożliwiając systemom operacyjnym poprawnie otworzyć pobraną wersję dokumentu." +msgstr "" +"Pobiera rozszerzenie pliku i łączy je z nazwą pliku umożliwiając systemom " +"operacyjnym poprawnie otworzyć pobraną wersję dokumentu." #: links.py:66 msgid "Preview" @@ -329,7 +341,9 @@ msgstr "Kosz" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Wyczyść reprezentacje grafiki przyspieszające wyświetlanie dokumentów i wyniki interaktywnych przekształceń." +msgstr "" +"Wyczyść reprezentacje grafiki przyspieszające wyświetlanie dokumentów i " +"wyniki interaktywnych przekształceń." #: links.py:274 msgid "Clear document image cache" @@ -479,7 +493,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Niepełny dokument jest dokumentem z wpisem w bazie danych bez przesłanego pliku. Może się to zdarzyć podczas przerwania przesyłania pliku do systemu lub zawieszenia przesyłania poprzez API." +msgstr "" +"Niepełny dokument jest dokumentem z wpisem w bazie danych bez przesłanego " +"pliku. Może się to zdarzyć podczas przerwania przesyłania pliku do systemu " +"lub zawieszenia przesyłania poprzez API." #: models/document_models.py:84 msgid "Is stub?" @@ -535,8 +552,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "Czas, po jakim dokumenty tego typu zostaną przeniesione do kosza." #: models/document_type_models.py:38 @@ -596,8 +612,8 @@ msgstr "Plik" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -776,13 +792,18 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Wyłącza pierwszy poziom pamięci podręcznej, która przechowuje strony dokumentu w wersjach o wysokiej rozdzielczości, nieprzekształcone." +msgstr "" +"Wyłącza pierwszy poziom pamięci podręcznej, która przechowuje strony " +"dokumentu w wersjach o wysokiej rozdzielczości, nieprzekształcone." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Wyłącza drugi poziom pamięci podręcznej, która przechowuje strony dokumentu w wersjach od średniej do niskiej rozdzielczości, przekształcone (obrócone, powiększone, itp.)." +msgstr "" +"Wyłącza drugi poziom pamięci podręcznej, która przechowuje strony dokumentu " +"w wersjach od średniej do niskiej rozdzielczości, przekształcone (obrócone, " +"powiększone, itp.)." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -791,15 +812,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -846,17 +867,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maksymalna, procentowa (%) skala powiększenia strony dokumentu przez użytkownika." +msgstr "" +"Maksymalna, procentowa (%) skala powiększenia strony dokumentu przez " +"użytkownika." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimalna, procentowa (%) skala pomniejszenia strony dokumentu przez użytkownika." +msgstr "" +"Minimalna, procentowa (%) skala pomniejszenia strony dokumentu przez " +"użytkownika." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Liczba punktów procentowych powiększenia lub pomniejszenia strony dokumentu przez użytkownika." +msgstr "" +"Liczba punktów procentowych powiększenia lub pomniejszenia strony dokumentu " +"przez użytkownika." #: statistics.py:18 msgid "January" @@ -949,10 +976,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -985,8 +1011,8 @@ msgstr "Dokumenty typu: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1022,12 +1048,15 @@ msgstr "Utwórz szybką etykietę dla typu dokumentu: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Usunąć szybką etykietę: %(label)s z typu dokumentu \"%(document_type)s\"?" +msgstr "" +"Usunąć szybką etykietę: %(label)s z typu dokumentu \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Edytuj szybką etykietę \"%(filename)s\" typu dokumentu \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Edytuj szybką etykietę \"%(filename)s\" typu dokumentu \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1214,7 +1243,9 @@ msgstr "Usunąć wszystkie przekształcenia strony dla dokumentu: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Błąd podczas usuwania przekształceń strony dla dokumentu: %(document)s; %(error)s." +msgstr "" +"Błąd podczas usuwania przekształceń strony dla dokumentu: %(document)s; " +"%(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1237,8 +1268,8 @@ msgstr "Wydruk: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1247,8 +1278,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1329,7 +1360,9 @@ msgstr "Wyczyścić pamięć podręczną obrazów dokumentów?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "Czyszczenie pamięci podręcznej dokumentów dodano pomyślnie do kolejki wykonania." +msgstr "" +"Czyszczenie pamięci podręcznej dokumentów dodano pomyślnie do kolejki " +"wykonania." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" @@ -1337,19 +1370,20 @@ msgstr "Wyszukać zdublowane dokumenty?" #: views/misc_views.py:39 msgid "Duplicated document scan queued successfully." -msgstr "Skanowanie zduplikowanych dokumentów dodano pomyślnie do kolejki wykonania." +msgstr "" +"Skanowanie zduplikowanych dokumentów dodano pomyślnie do kolejki wykonania." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1357,25 +1391,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Pusty kosz?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Opróżnienie kosza wykonano pomyślnie" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1383,28 +1417,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index c45c6b854d..e42821cc44 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documentos" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -132,8 +132,8 @@ msgstr "Comprimir" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -327,7 +327,9 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Limpar as representações gráficas usadas para acelerar a exibição e transformações interativas de documentos." +msgstr "" +"Limpar as representações gráficas usadas para acelerar a exibição e " +"transformações interativas de documentos." #: links.py:274 msgid "Clear document image cache" @@ -533,8 +535,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +595,8 @@ msgstr "Ficheiro" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -826,7 +827,9 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Valor em graus para rodar uma página de documento por interação do utilizador." +msgstr "" +"Valor em graus para rodar uma página de documento por interação do " +"utilizador." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -844,13 +847,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de documento de forma interativa." +msgstr "" +"Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de " +"documento de forma interativa." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de documento de forma interativa." +msgstr "" +"Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de " +"documento de forma interativa." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -947,10 +954,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -983,8 +989,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1024,7 +1030,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1206,7 +1213,9 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." +msgstr "" +"Erro ao excluir as transformações de página para o documento: %(document)s; " +"%(error)s ." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1229,8 +1238,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1239,8 +1248,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1327,68 +1336,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po index 3242391bb7..815eec3949 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,19 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documento" @@ -34,7 +34,9 @@ msgstr "Criar tipo de documento" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "A cada documento carregado deve ser atribuído um tipo de documento, é a forma básica pela qual o Mayan EDMS categoriza os documentos." +msgstr "" +"A cada documento carregado deve ser atribuído um tipo de documento, é a " +"forma básica pela qual o Mayan EDMS categoriza os documentos." #: apps.py:151 msgid "Versions comment" @@ -76,7 +78,7 @@ msgstr "Total de páginas" msgid "Total documents" msgstr "Total de documentos" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documentos na lixeira" @@ -135,10 +137,13 @@ msgstr "Comprimir" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Faça o download do documento no formato original ou de forma comprimida. Esta opção só pode ser selecionada quando o download de um documento, para vários documentos. O pacote sempre será baixado como um arquivo compactado." +msgstr "" +"Faça o download do documento no formato original ou de forma comprimida. " +"Esta opção só pode ser selecionada quando o download de um documento, para " +"vários documentos. O pacote sempre será baixado como um arquivo compactado." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -148,7 +153,9 @@ msgstr "Comprimido o filename " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "O nome do arquivo do arquivo compactado que vai conter os documentos a serem baixados, se a opção anterior é selecionado." +msgstr "" +"O nome do arquivo do arquivo compactado que vai conter os documentos a serem " +"baixados, se a opção anterior é selecionado." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -162,7 +169,10 @@ msgstr "Preservar a extensão" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "Toma e move a extensão do arquivo para o final do seu nome, permitindo aos sistemas operacionais que utilizam extensões de arquivo abrir o documento corretamente." +msgstr "" +"Toma e move a extensão do arquivo para o final do seu nome, permitindo aos " +"sistemas operacionais que utilizam extensões de arquivo abrir o documento " +"corretamente." #: forms/document_forms.py:147 msgid "Date added" @@ -226,7 +236,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Toma e move a extensão do arquivo para o final do seu nome, permitindo aos sistemas operacionais que utilizam extensões de arquivo abrir a versão baixada do documento corretamente." +msgstr "" +"Toma e move a extensão do arquivo para o final do seu nome, permitindo aos " +"sistemas operacionais que utilizam extensões de arquivo abrir a versão " +"baixada do documento corretamente." #: links.py:66 msgid "Preview" @@ -330,7 +343,9 @@ msgstr "Lixeira" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos." +msgstr "" +"Desmarque as representações gráficas utilizadas para acelerar a exibição e " +"transformações interativas resultados dos documentos." #: links.py:274 msgid "Clear document image cache" @@ -449,7 +464,9 @@ msgstr "Descrição" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "Data e hora do servidor quando o documento finalmente foi processado e adicionado ao sistema." +msgstr "" +"Data e hora do servidor quando o documento finalmente foi processado e " +"adicionado ao sistema." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -480,7 +497,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Um rascunho de documento é um documento com uma entrada no banco de dados, mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um envio diferido por meio da API." +msgstr "" +"Um rascunho de documento é um documento com uma entrada no banco de dados, " +"mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um " +"envio diferido por meio da API." #: models/document_models.py:84 msgid "Is stub?" @@ -536,9 +556,10 @@ msgstr "O nome do tipo de documento." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Quantidade de tempo após a qual se enviará documentos deste tipo para a lixeira." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Quantidade de tempo após a qual se enviará documentos deste tipo para a " +"lixeira." #: models/document_type_models.py:38 msgid "Trash time period" @@ -552,7 +573,8 @@ msgstr "Unidade de tempo de envio para a lixeira" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Quantidade de tempo após a qual documentos deste tipo serão eliminados." +msgstr "" +"Quantidade de tempo após a qual documentos deste tipo serão eliminados." #: models/document_type_models.py:48 msgid "Delete time period" @@ -597,9 +619,12 @@ msgstr "Arquivo" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "O arquivo MIME type da versão do documento. MIME types são uma forma de descrever o formato de um arquivo, neste caso o formato do documento. Alguns exemplos: \"text/plain\" ou \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"O arquivo MIME type da versão do documento. MIME types são uma forma de " +"descrever o formato de um arquivo, neste caso o formato do documento. Alguns " +"exemplos: \"text/plain\" ou \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -792,15 +817,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -829,7 +854,8 @@ msgstr "Número máximo de documentos recém-criados a serem mostrados." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Valor em graus para girar uma página do documento por interação do usuário." +msgstr "" +"Valor em graus para girar uma página do documento por interação do usuário." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -847,17 +873,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em uma página do documento de forma interativa." +msgstr "" +"Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em " +"uma página do documento de forma interativa." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em uma página do documento de forma interativa." +msgstr "" +"Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em " +"uma página do documento de forma interativa." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Quantidade em porcentagem de zoom em uma página ou documento por interação do usuário." +msgstr "" +"Quantidade em porcentagem de zoom em uma página ou documento por interação " +"do usuário." #: statistics.py:18 msgid "January" @@ -950,10 +982,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -986,8 +1017,8 @@ msgstr "Documentos do tipo: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1023,12 +1054,16 @@ msgstr "Criar uma etiqueta rápida para o documento tipo: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" +msgstr "" +"Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Editar etiqueta rápida \"%(filename)s\" para documento do tipo \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Editar etiqueta rápida \"%(filename)s\" para documento do tipo " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1096,12 +1131,14 @@ msgstr "" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "Pedido de alteração de tipo de documento executado em %(count)d documento" +msgstr "" +"Pedido de alteração de tipo de documento executado em %(count)d documento" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "Pedido de alteração de tipo de documento executado em %(count)d documentos" +msgstr "" +"Pedido de alteração de tipo de documento executado em %(count)d documentos" #: views/document_views.py:117 msgid "Change" @@ -1186,18 +1223,24 @@ msgstr "" #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "Solicitação de transparência de transformação processada para %(count)d documento" +msgstr "" +"Solicitação de transparência de transformação processada para %(count)d " +"documento" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "Solicitação de transparência de transformação processada para %(count)d documentos" +msgstr "" +"Solicitação de transparência de transformação processada para %(count)d " +"documentos" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "Limpar todas as transformações de página para o documento selecionado?" -msgstr[1] "Limpar todas as transformações de página para o documento selecionado?" +msgstr[0] "" +"Limpar todas as transformações de página para o documento selecionado?" +msgstr[1] "" +"Limpar todas as transformações de página para o documento selecionado?" #: views/document_views.py:514 #, python-format @@ -1209,7 +1252,9 @@ msgstr "Limpar todas as transformações de página para o documento: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." +msgstr "" +"Erro ao excluir as transformações de página para o documento: %(document)s; " +"%(error)s ." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1232,8 +1277,8 @@ msgstr "Imprimir: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1242,8 +1287,8 @@ msgstr "Não há documentos duplicados" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1330,68 +1375,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Esvaziar a lixeira?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Lixeira esvaziada com sucesso" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po index 6526fb0d25..886cd1ec69 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 # Stefaniu Criste , 2016 @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Documente" @@ -33,7 +34,9 @@ msgstr "Creați un tip de document" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Fiecare document încărcat trebuie să fie atribuit unui tip de document, acesta este modul de bază în care Mayan EDMS categorizează documente." +msgstr "" +"Fiecare document încărcat trebuie să fie atribuit unui tip de document, " +"acesta este modul de bază în care Mayan EDMS categorizează documente." #: apps.py:151 msgid "Versions comment" @@ -75,7 +78,7 @@ msgstr "Total pagini" msgid "Total documents" msgstr "Total documente" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documentele din coșul de gunoi" @@ -134,10 +137,14 @@ msgstr "Comprimă" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Descărcați documentul în format original sau într-un mod comprimat. Această opțiune este selectabilă numai atunci când descărcați un document, pentru mai multe documente, pachetul va fi întotdeauna descărcări ca fișier comprimat." +msgstr "" +"Descărcați documentul în format original sau într-un mod comprimat. Această " +"opțiune este selectabilă numai atunci când descărcați un document, pentru " +"mai multe documente, pachetul va fi întotdeauna descărcări ca fișier " +"comprimat." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -147,7 +154,9 @@ msgstr "Nume fişier comprimat" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Nume fișier comprimat, care va conține documentele ce urmează să fie descărcate, în cazul în care această opțiunea a fost selectată anterior." +msgstr "" +"Nume fișier comprimat, care va conține documentele ce urmează să fie " +"descărcate, în cazul în care această opțiunea a fost selectată anterior." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -161,7 +170,10 @@ msgstr "Păstrați extensia" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "Ia extensia de fișier și o mută până la capătul fișierului, permițând sistemelor de operare care se bazează pe extensii de fișiere să deschidă documentul corect." +msgstr "" +"Ia extensia de fișier și o mută până la capătul fișierului, permițând " +"sistemelor de operare care se bazează pe extensii de fișiere să deschidă " +"documentul corect." #: forms/document_forms.py:147 msgid "Date added" @@ -212,7 +224,9 @@ msgstr "Gamă de pagini" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "Numărul paginii din care vor fi clonate toate transformările. Transformările existente vor fi pierdute." +msgstr "" +"Numărul paginii din care vor fi clonate toate transformările. Transformările " +"existente vor fi pierdute." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -225,7 +239,10 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "Ia extensia de fișier și o mută până la capătul fișierului, permițând sistemelor de operare care se bazează pe extensii de fișiere să deschidă corect versiunea documentului descărcat." +msgstr "" +"Ia extensia de fișier și o mută până la capătul fișierului, permițând " +"sistemelor de operare care se bazează pe extensii de fișiere să deschidă " +"corect versiunea documentului descărcat." #: links.py:66 msgid "Preview" @@ -329,7 +346,9 @@ msgstr "Coș de gunoi" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Goliți reprezentările grafice folosite pentru a accelera afișarea documentelor și rezultatele interactive de transformari." +msgstr "" +"Goliți reprezentările grafice folosite pentru a accelera afișarea " +"documentelor și rezultatele interactive de transformari." #: links.py:274 msgid "Clear document image cache" @@ -448,7 +467,8 @@ msgstr "Descriere" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "Data și ora serverului când documentul a fost procesat și adăugat în sistem." +msgstr "" +"Data și ora serverului când documentul a fost procesat și adăugat în sistem." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -479,7 +499,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un stub document este un document cu o intrare în baza de date, dar nu se încarcat niciun fișier. Aceasta ar putea fi o încărcare întreruptă sau o încărcare amânată prin API." +msgstr "" +"Un stub document este un document cu o intrare în baza de date, dar nu se " +"încarcat niciun fișier. Aceasta ar putea fi o încărcare întreruptă sau o " +"încărcare amânată prin API." #: models/document_models.py:84 msgid "Is stub?" @@ -535,9 +558,10 @@ msgstr "Numele tipului de document." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Cantitatea de timp după care documentele de acest tip vor fi mutate în coșul de gunoi." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Cantitatea de timp după care documentele de acest tip vor fi mutate în coșul " +"de gunoi." #: models/document_type_models.py:38 msgid "Trash time period" @@ -551,7 +575,9 @@ msgstr "Unitatea timpului păstrare în gunoi" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Cantitatea de timp după care documentele de acest tip din coșul de gunoi vor fi șterse." +msgstr "" +"Cantitatea de timp după care documentele de acest tip din coșul de gunoi vor " +"fi șterse." #: models/document_type_models.py:48 msgid "Delete time period" @@ -575,7 +601,8 @@ msgstr "Etichetă rapidă" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "Data și ora serverului la care a fost procesată versiunea documentului." +msgstr "" +"Data și ora serverului la care a fost procesată versiunea documentului." #: models/document_version_models.py:79 msgid "Timestamp" @@ -596,9 +623,12 @@ msgstr "Fișier" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "Mimetype pentru versiunea documentuli. Tipurile MIME sunt o modalitate standard de a descrie formatul unui fișier, în acest caz formatul de fișier al documentului. Câteva exemple: \"text / plain\" sau \"image / jpeg\"." +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"Mimetype pentru versiunea documentuli. Tipurile MIME sunt o modalitate " +"standard de a descrie formatul unui fișier, în acest caz formatul de fișier " +"al documentului. Câteva exemple: \"text / plain\" sau \"image / jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -608,7 +638,9 @@ msgstr "Tip MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "Codarea fișierului de versiune a documentului. binar 7-bit, binar 8-bit, text, base64, etc." +msgstr "" +"Codarea fișierului de versiune a documentului. binar 7-bit, binar 8-bit, " +"text, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -766,7 +798,9 @@ msgstr "Scanați după documente duplicate" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "Calea către subclasa de stocare pe care să o utilizați la stocarea fișierelor de imagini memorate în memoria cache." +msgstr "" +"Calea către subclasa de stocare pe care să o utilizați la stocarea " +"fișierelor de imagini memorate în memoria cache." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -776,31 +810,42 @@ msgstr "Argumentele care trec la DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Dezactivează primul nivel de memorie cache care stochează versiuni de rezoluție și versiuni non-transformate ale paginilor documentelor." +msgstr "" +"Dezactivează primul nivel de memorie cache care stochează versiuni de " +"rezoluție și versiuni non-transformate ale paginilor documentelor." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Dezactivează cel de-al doilea nivel de memorie cache care stochează paginile documentelor cu rezoluție medie, mică, transformată (rotită, mărite, etc.)." +msgstr "" +"Dezactivează cel de-al doilea nivel de memorie cache care stochează paginile " +"documentelor cu rezoluție medie, mică, transformată (rotită, mărite, etc.)." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." -msgstr "Numărul maxim de documente preferate de reținut pentru fiecare utilizator." +msgstr "" +"Numărul maxim de documente preferate de reținut pentru fiecare utilizator." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "Detectează orientarea fiecărei pagini a documentului și creează o transformare de rotație corespunzătoare pentru a o afișa vertical. Aceasta este o caracteristică experimentală și este dezactivată în mod implicit." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"Detectează orientarea fiecărei pagini a documentului și creează o " +"transformare de rotație corespunzătoare pentru a o afișa vertical. Aceasta " +"este o caracteristică experimentală și este dezactivată în mod implicit." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." -msgstr "Dimensiunea blocurilor de utilizat la calcularea sumelor de control ale fișierului documentului. O valoare de 0 dezactivează calculul blocului și întregul fișier va fi încărcat în memorie." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." +msgstr "" +"Dimensiunea blocurilor de utilizat la calcularea sumelor de control ale " +"fișierului documentului. O valoare de 0 dezactivează calculul blocului și " +"întregul fișier va fi încărcat în memorie." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -814,13 +859,18 @@ msgstr "Lista limbilor de documente acceptate. În format ISO639-3." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "Timp în secunde în care browserul ar trebui să cacheze imaginile documentului furnizat. Valoarea implicită de 31559626 secunde corespunde unui an." +msgstr "" +"Timp în secunde în care browserul ar trebui să cacheze imaginile " +"documentului furnizat. Valoarea implicită de 31559626 secunde corespunde " +"unui an." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "Numărul maxim de documente recent accesate (create, editate, vizualizate) pe care să le rețineți pentru fiecare utilizator." +msgstr "" +"Numărul maxim de documente recent accesate (create, editate, vizualizate) pe " +"care să le rețineți pentru fiecare utilizator." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -828,11 +878,15 @@ msgstr "Numărul maxim de documente create recent pentru a fi afișate." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu utilizatorul." +msgstr "" +"Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu " +"utilizatorul." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "Calea către subclasa de stocare care trebuie utilizată la stocarea fișierelor de documente." +msgstr "" +"Calea către subclasa de stocare care trebuie utilizată la stocarea " +"fișierelor de documente." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -846,17 +900,23 @@ msgstr "Înălțimea în pixeli a imaginii miniatură a documentelor." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Suma maximă în procente (%), permisă utilizatorilor pentru mărirea interactiv a unei pagini ." +msgstr "" +"Suma maximă în procente (%), permisă utilizatorilor pentru mărirea " +"interactiv a unei pagini ." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Suma minimă în procente (%), permisă utilizatorului pentru micșorarea interactivă a unei pagini ." +msgstr "" +"Suma minimă în procente (%), permisă utilizatorului pentru micșorarea " +"interactivă a unei pagini ." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Suma în procente folosită pentru a mării sau micşora un document interactiv cu utilizatorul." +msgstr "" +"Suma în procente folosită pentru a mării sau micşora un document interactiv " +"cu utilizatorul." #: statistics.py:18 msgid "January" @@ -936,7 +996,10 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "\n Pag %(page_number)s din %(total_pages)s\n " +msgstr "" +"\n" +" Pag %(page_number)s din %(total_pages)s\n" +" " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -949,11 +1012,14 @@ msgstr "Limbă necunoscută \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." -msgstr "Acest lucru ar putea însemna că documentul are un format care nu este acceptat, că este corupt sau că procesul de încărcare a fost întrerupt. Utilizați acțiunea de recalculare a paginii de document pentru a încerca să introduceți din nou numărul paginilor." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." +msgstr "" +"Acest lucru ar putea însemna că documentul are un format care nu este " +"acceptat, că este corupt sau că procesul de încărcare a fost întrerupt. " +"Utilizați acțiunea de recalculare a paginii de document pentru a încerca să " +"introduceți din nou numărul paginilor." #: views/document_page_views.py:59 msgid "No document pages available" @@ -985,10 +1051,15 @@ msgstr "Documente de tipul: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "Tipurile de documente sunt cele mai elementare unități de configurare. Totul în sistem va depinde de ele. Definiți un tip de document pentru fiecare tip de document fizic pe care intenționați să îl încărcați. Exemple de tipuri de documente: factură, chitanță, procedură, manual de utilizare, prescripție, bilanț." +msgstr "" +"Tipurile de documente sunt cele mai elementare unități de configurare. Totul " +"în sistem va depinde de ele. Definiți un tip de document pentru fiecare tip " +"de document fizic pe care intenționați să îl încărcați. Exemple de tipuri de " +"documente: factură, chitanță, procedură, manual de utilizare, prescripție, " +"bilanț." #: views/document_type_views.py:77 msgid "No document types available" @@ -1022,19 +1093,28 @@ msgstr "Creați o etichetă rapidă pentru tipul de document: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Ștergeți eticheta rapidă: %(label)s, de la tipul de document \"%(document_type)s\"?" +msgstr "" +"Ștergeți eticheta rapidă: %(label)s, de la tipul de document " +"\"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Editați eticheta rapidă \"%(filename)s\" din tipul de document \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Editați eticheta rapidă \"%(filename)s\" din tipul de document " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "Etichetele rapide sunt nume de fișier predeterminate care permit redenumirea rapidă a documentelor în momentul în care sunt încărcate selectându-le dintr-o listă. Etichetele rapide pot fi de asemenea folosite după ce documentele au fost încărcate." +msgstr "" +"Etichetele rapide sunt nume de fișier predeterminate care permit redenumirea " +"rapidă a documentelor în momentul în care sunt încărcate selectându-le dintr-" +"o listă. Etichetele rapide pot fi de asemenea folosite după ce documentele " +"au fost încărcate." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1086,7 +1166,10 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "Acest lucru ar putea însemna că nu au fost încărcate documente sau că nu vi s-a acordat permisiunea de vizualizare pentru niciun document sau tip de document." +msgstr "" +"Acest lucru ar putea însemna că nu au fost încărcate documente sau că nu vi " +"s-a acordat permisiunea de vizualizare pentru niciun document sau tip de " +"document." #: views/document_views.py:94 msgid "No documents available" @@ -1095,12 +1178,16 @@ msgstr "Nu există documente disponibile" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "Solicitarea de modificare a tipului de document efectuată pe %(count)d documente" +msgstr "" +"Solicitarea de modificare a tipului de document efectuată pe %(count)d " +"documente" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "Solicitarea de modificare a tipului de document efectuată pe %(count)d documente" +msgstr "" +"Solicitarea de modificare a tipului de document efectuată pe %(count)d " +"documente" #: views/document_views.py:117 msgid "Change" @@ -1129,7 +1216,9 @@ msgstr "Descărcare" #: views/document_views.py:343 msgid "Only exact copies of this document will be shown in the this list." -msgstr "Numai exemplarele exacte ale acestui document vor fi afișate în această listă." +msgstr "" +"Numai exemplarele exacte ale acestui document vor fi afișate în această " +"listă." #: views/document_views.py:347 msgid "There are no duplicates for this document" @@ -1158,12 +1247,15 @@ msgstr "Proprietățile documentului: %s" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "%(count)d documente sunt în coada pentru recalcularea numărului de pagini" +msgstr "" +"%(count)d documente sunt în coada pentru recalcularea numărului de pagini" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "Documentele %(count)d s-au plasat în așteptare pentru recalcularea numărului de pagini" +msgstr "" +"Documentele %(count)d s-au plasat în așteptare pentru recalcularea numărului " +"de pagini" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" @@ -1182,7 +1274,9 @@ msgstr "Recalculați numărul de pagini al documentului: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "Documentul \"%(document)s\" este gol. Încărcați cel puțin o versiune de document înainte de a încerca să detectați numărul de pagini." +msgstr "" +"Documentul \"%(document)s\" este gol. Încărcați cel puțin o versiune de " +"document înainte de a încerca să detectați numărul de pagini." #: views/document_views.py:492 #, python-format @@ -1234,9 +1328,13 @@ msgstr "Tipărește: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." -msgstr "Duplicatele sunt documente care sunt compuse din exact același fișier, până la ultimul octet. Fișierele care au același text sau OCR dar nu sunt identice sau au fost salvate utilizând un alt format de fișier nu vor apărea ca duplicate." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." +msgstr "" +"Duplicatele sunt documente care sunt compuse din exact același fișier, până " +"la ultimul octet. Fișierele care au același text sau OCR dar nu sunt " +"identice sau au fost salvate utilizând un alt format de fișier nu vor apărea " +"ca duplicate." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1244,9 +1342,11 @@ msgstr "Nu există documente duplicate" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." -msgstr "Această vizualizare va afișa cele mai recente documente vizualizate sau manipulate în vreun fel de acest cont de utilizator." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." +msgstr "" +"Această vizualizare va afișa cele mai recente documente vizualizate sau " +"manipulate în vreun fel de acest cont de utilizator." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1254,7 +1354,8 @@ msgstr "Nu există niciun document accesat recent " #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "Această vizualizare va afișa cele mai recente documente încărcate în sistem." +msgstr "" +"Această vizualizare va afișa cele mai recente documente încărcate în sistem." #: views/document_views.py:736 msgid "There are no recently added document" @@ -1265,7 +1366,9 @@ msgstr "Nu există niciun document adăugat recent " msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "Documentele preferate vor fi listate în această vizualizare. Până la %(count)d documente pot fi preferate de către fiecare utilizator." +msgstr "" +"Documentele preferate vor fi listate în această vizualizare. Până la " +"%(count)d documente pot fi preferate de către fiecare utilizator." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1324,7 +1427,9 @@ msgstr "Eliminați memoria cache a imaginilor?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "Ștergerea cache-ului de documente a fost pusă în coada de așteptare cu succes." +msgstr "" +"Ștergerea cache-ului de documente a fost pusă în coada de așteptare cu " +"succes." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" @@ -1334,70 +1439,73 @@ msgstr "Căutați documente duplicate?" msgid "Duplicated document scan queued successfully." msgstr "Căutarea documentelor duplicat a fost trimisă în coada de așteptare." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d document transferat în coșul de gunoi." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d documente transferate în coșul de gunoi." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Mutați documentul selectat în coșul de gunoi?" msgstr[1] "Mutați documentele selectate în coșul de gunoi?" msgstr[2] "Mutați documentele selectate în coșul de gunoi?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Goliți Coșul de gunoi?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Coșul de gunoi a fost golit cu succes" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d document din coșul de gunoi șters." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d documentele din coșul de gunoi au fost șterse." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Ștergeți documentul de traseu selectat?" msgstr[1] "Ștergeți documentele trasate selectate?" msgstr[2] "Ștergeți documentele din gunoi selectate?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "Pentru a evita pierderea datelor, documentele nu sunt șterse instantaneu. Mai întâi, ele sunt plasate în coșul de gunoi. De aici, ele pot fi ulterior șterse sau restaurate." +msgstr "" +"Pentru a evita pierderea datelor, documentele nu sunt șterse instantaneu. " +"Mai întâi, ele sunt plasate în coșul de gunoi. De aici, ele pot fi ulterior " +"șterse sau restaurate." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Nu există documente în coșul de gunoi" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d document din coșul de gunoi restabilit." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d documente din coșul de gunoi restaurate." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Restaurați documentul trashed selectat?" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index fafd4e2e94..a34688f418 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -1,26 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Документы" @@ -32,7 +34,9 @@ msgstr "Создать тип документа" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Каждому загруженому документу должен быть присвоен тип документа, - это основной способ, которым Mayan EDMS распределяет документы по категориям." +msgstr "" +"Каждому загруженому документу должен быть присвоен тип документа, - это " +"основной способ, которым Mayan EDMS распределяет документы по категориям." #: apps.py:151 msgid "Versions comment" @@ -74,7 +78,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Документы в корзине" @@ -133,10 +137,13 @@ msgstr "Сжать" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Скачать документ в исходном, или в сжатом формате. Этот вариант доступен только при загрузке одного документа, для нескольких документов будет использован сжатый файл." +msgstr "" +"Скачать документ в исходном, или в сжатом формате. Этот вариант доступен " +"только при загрузке одного документа, для нескольких документов будет " +"использован сжатый файл." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -146,7 +153,9 @@ msgstr "Имя сжатого файла" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Имя файла сжатого файла, который будет содержать загружаемые документы, если выбран предыдущий параметр." +msgstr "" +"Имя файла сжатого файла, который будет содержать загружаемые документы, если " +"выбран предыдущий параметр." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -328,7 +337,9 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Очистить графику для ускорения отображения документов и интерактивных преобразований." +msgstr "" +"Очистить графику для ускорения отображения документов и интерактивных " +"преобразований." #: links.py:274 msgid "Clear document image cache" @@ -478,7 +489,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Заглушка документа - это запись в базе данных без самого документа. Документ может оказатсья заглушкой, если его загрузка оборвалась, или выполняется его отложенная загрузка через API." +msgstr "" +"Заглушка документа - это запись в базе данных без самого документа. Документ " +"может оказатсья заглушкой, если его загрузка оборвалась, или выполняется его " +"отложенная загрузка через API." #: models/document_models.py:84 msgid "Is stub?" @@ -534,9 +548,10 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Сколько должно пройти времени, прежде чем документы этого типа будут перемещены в корзину." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Сколько должно пройти времени, прежде чем документы этого типа будут " +"перемещены в корзину." #: models/document_type_models.py:38 msgid "Trash time period" @@ -550,7 +565,9 @@ msgstr "Единица измерения периода жизни" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Сколько должно пройти времени, прежде чем документы этого типа будут удалены из корзины." +msgstr "" +"Сколько должно пройти времени, прежде чем документы этого типа будут удалены " +"из корзины." #: models/document_type_models.py:48 msgid "Delete time period" @@ -595,8 +612,8 @@ msgstr "Файл" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -790,15 +807,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -948,10 +965,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +1000,8 @@ msgstr "Документы с типом: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,8 +1041,11 @@ msgstr "Снять быструю метку %(label)s с типа докуме #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Редактировать быструю метку %(filename)s\" с типа документов \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Редактировать быструю метку %(filename)s\" с типа документов " +"\"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1213,7 +1232,9 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Ошибка при удалении страницы для преобразования документов: %(document)s; %(error)s." +msgstr "" +"Ошибка при удалении страницы для преобразования документов: %(document)s; " +"%(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1236,8 +1257,8 @@ msgstr "Печать: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1246,8 +1267,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1338,17 +1359,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1356,25 +1377,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Очистить корзину?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Корзина успешно очищена" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1382,28 +1403,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po index 22fbbc5eae..0c533b4afd 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,25 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Dokumenti" @@ -73,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -132,8 +133,8 @@ msgstr "Stisni" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -145,7 +146,9 @@ msgstr "Ime stisnjene datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila prejšnja opcija izbrana." +msgstr "" +"Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila " +"prejšnja opcija izbrana." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -327,7 +330,9 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza dokumentov in rezultatov interaktivnih transformacij." +msgstr "" +"Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza " +"dokumentov in rezultatov interaktivnih transformacij." #: links.py:274 msgid "Clear document image cache" @@ -533,8 +538,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +598,8 @@ msgstr "" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +793,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -826,7 +830,8 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." +msgstr "" +"Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -844,17 +849,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." +msgstr "" +"Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje " +"strani v dokumentu." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." +msgstr "" +"Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje " +"strani v dokumentu." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Znesek v procentih za približane oziroma oddaljene strani na dokument v uporabniškem vmesniku." +msgstr "" +"Znesek v procentih za približane oziroma oddaljene strani na dokument v " +"uporabniškem vmesniku." #: statistics.py:18 msgid "January" @@ -947,10 +958,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -983,8 +993,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1024,7 +1034,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1212,7 +1223,8 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." +msgstr "" +"Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1235,8 +1247,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1245,8 +1257,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1337,17 +1349,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1355,25 +1367,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1381,28 +1393,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po index cd916d6e4c..34db6ce4d2 100644 --- a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Belgeler" @@ -33,7 +33,9 @@ msgstr "Belge türü oluşturma" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Yüklenen her belgeye bir belge türü atanmalıdır; bu, Mayan EDMS'in belgeleri sınıflandırmasının temel şeklidir." +msgstr "" +"Yüklenen her belgeye bir belge türü atanmalıdır; bu, Mayan EDMS'in belgeleri " +"sınıflandırmasının temel şeklidir." #: apps.py:151 msgid "Versions comment" @@ -75,7 +77,7 @@ msgstr "" msgid "Total documents" msgstr "Toplam belge" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Çöp kutusu içindeki belgeler" @@ -134,10 +136,13 @@ msgstr "Şıkıştırma" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Dokümanı orijinal formatında veya sıkıştırılmış bir şekilde indirin. Bu seçenek yalnızca bir belgeyi indirirken seçilebilir, birden fazla belge için paket sıklıkla sıkıştırılmış bir dosya olarak indirilir." +msgstr "" +"Dokümanı orijinal formatında veya sıkıştırılmış bir şekilde indirin. Bu " +"seçenek yalnızca bir belgeyi indirirken seçilebilir, birden fazla belge için " +"paket sıklıkla sıkıştırılmış bir dosya olarak indirilir." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -147,7 +152,9 @@ msgstr "Sıkıştırılmış dosya adı" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Önceki seçenek seçiliyse, indirilecek belgeleri içeren sıkıştırılmış dosyanın dosya adı." +msgstr "" +"Önceki seçenek seçiliyse, indirilecek belgeleri içeren sıkıştırılmış " +"dosyanın dosya adı." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -329,7 +336,9 @@ msgstr "Çöp Kutusu" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Belgelerin ekranını ve etkileşimli dönüşüm sonuçlarını hızlandırmak için kullanılan grafik gösterimlerini temizleyin." +msgstr "" +"Belgelerin ekranını ve etkileşimli dönüşüm sonuçlarını hızlandırmak için " +"kullanılan grafik gösterimlerini temizleyin." #: links.py:274 msgid "Clear document image cache" @@ -479,7 +488,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Bir doküman koçanı, veritabanında bir girişi bulunan, ancak hiçbir dosya yüklenmemiş bir dokümandır. Bu, API aracılığıyla kesilen bir yükleme veya ertelenmiş bir yükleme olabilir." +msgstr "" +"Bir doküman koçanı, veritabanında bir girişi bulunan, ancak hiçbir dosya " +"yüklenmemiş bir dokümandır. Bu, API aracılığıyla kesilen bir yükleme veya " +"ertelenmiş bir yükleme olabilir." #: models/document_models.py:84 msgid "Is stub?" @@ -535,8 +547,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "Bu türün belgelerinin çöp kutusuna taşınmasından sonraki süre." #: models/document_type_models.py:38 @@ -596,8 +607,8 @@ msgstr "Dosya" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -776,13 +787,18 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Belgelerin sayfalarının dönüştürülmemiş, yüksek çözünürlüklü sürümlerini depolayan ilk önbellek katmanını devre dışı bırakır." +msgstr "" +"Belgelerin sayfalarının dönüştürülmemiş, yüksek çözünürlüklü sürümlerini " +"depolayan ilk önbellek katmanını devre dışı bırakır." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "Orta sayfadan düşük çözünürlüğe, belgenin sayfalarının dönüştürülmüş (döndürülmüş, yakınlaştırılmış vb.) Sürümlerini depolayan ikinci önbellek katmanını devre dışı bırakır." +msgstr "" +"Orta sayfadan düşük çözünürlüğe, belgenin sayfalarının dönüştürülmüş " +"(döndürülmüş, yakınlaştırılmış vb.) Sürümlerini depolayan ikinci önbellek " +"katmanını devre dışı bırakır." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -791,15 +807,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -828,7 +844,9 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Kullanıcı etkileşimi başına bir doküman sayfasını döndürmek için gereken derece miktarı." +msgstr "" +"Kullanıcı etkileşimi başına bir doküman sayfasını döndürmek için gereken " +"derece miktarı." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -846,17 +864,23 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Kullanıcının bir belge sayfasını etkileşimli olarak yakınlaştırmasını sağlamak için yüzde olarak maksimum miktarı (%)." +msgstr "" +"Kullanıcının bir belge sayfasını etkileşimli olarak yakınlaştırmasını " +"sağlamak için yüzde olarak maksimum miktarı (%)." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Kullanıcıya bir belge sayfasını etkileşimli olarak uzaklaştırmak için yüzde olarak minimum tutar (%)." +msgstr "" +"Kullanıcıya bir belge sayfasını etkileşimli olarak uzaklaştırmak için yüzde " +"olarak minimum tutar (%)." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Kullanıcı etkileşimi başına belge sayfasında yakınlaştırma veya uzaklaştırma yüzdesi." +msgstr "" +"Kullanıcı etkileşimi başına belge sayfasında yakınlaştırma veya uzaklaştırma " +"yüzdesi." #: statistics.py:18 msgid "January" @@ -949,10 +973,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -985,8 +1008,8 @@ msgstr "Belgelerin türü: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1026,8 +1049,10 @@ msgstr "Hızlı etiketi silin: %(label)s, Belge türünün \"%(document_type)s\" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "\"%(filename)s\" hızlı etiketini %(document_type)sBelge türünden düzenleyin" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"\"%(filename)s\" hızlı etiketini %(document_type)sBelge türünden düzenleyin" #: views/document_type_views.py:253 msgid "" @@ -1095,7 +1120,8 @@ msgstr "" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "%(count)d belge üzerinde gerçekleştirilen Belge türü değişikliği isteği" +msgstr "" +"%(count)d belge üzerinde gerçekleştirilen Belge türü değişikliği isteği" #: views/document_views.py:110 #, python-format @@ -1157,18 +1183,21 @@ msgstr "Belge için özellikler: %s" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "%(count)d Belgesi, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" +msgstr "" +"%(count)d Belgesi, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "%(count)d Belgeler, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" +msgstr "" +"%(count)d Belgeler, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Seçilen belgenin sayfa sayısını yeniden hesapla mı?" -msgstr[1] "Seçilen belgelerin sayfa sayısını tekrar hesaplamak istiyor musunuz?" +msgstr[1] "" +"Seçilen belgelerin sayfa sayısını tekrar hesaplamak istiyor musunuz?" #: views/document_views.py:463 #, python-format @@ -1208,7 +1237,8 @@ msgstr "Belgenin tüm sayfa dönüşümlerini temizle: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Belge için sayfa dönüşümleri silinirken hata oluştu: %(document)s; %(error)s." +msgstr "" +"Belge için sayfa dönüşümleri silinirken hata oluştu: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1231,8 +1261,8 @@ msgstr "Yazdırma: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1241,8 +1271,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1329,68 +1359,68 @@ msgstr "Yinelenen belgeleri tara?" msgid "Duplicated document scan queued successfully." msgstr "Çoğaltılan doküman taraması başarıyla sıraya girdi." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Çöp kutusunu boşalt?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Çöp kutusu başarıyla boşaldı" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po index 2f4af6a0c9..9e36e468b4 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "Tài liệu" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -132,8 +132,8 @@ msgstr "Nén" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -533,8 +533,7 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +593,8 @@ msgstr "File" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +788,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -844,7 +843,8 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Số phần trăm lớn nhất (%) cho phép người dùng phóng to một trang tài liệu." +msgstr "" +"Số phần trăm lớn nhất (%) cho phép người dùng phóng to một trang tài liệu." #: settings.py:154 msgid "" @@ -854,7 +854,9 @@ msgstr "Số phần trăm nhỏ nhất (%) cho phép người dùng thu nhỏ tr #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người dùng." +msgstr "" +"Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người " +"dùng." #: statistics.py:18 msgid "January" @@ -947,10 +949,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -983,8 +984,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1024,7 +1025,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1226,8 +1228,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1236,8 +1238,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "" #: views/document_views.py:710 @@ -1322,66 +1324,66 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po index 70932099c0..3db9912fd1 100644 --- a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 -#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 msgid "Documents" msgstr "文档" @@ -32,7 +32,8 @@ msgstr "创建文档类型" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "必须为每个上传的文档分配文档类型,这是Mayan EDMS对文档进行分类的基本方式。" +msgstr "" +"必须为每个上传的文档分配文档类型,这是Mayan EDMS对文档进行分类的基本方式。" #: apps.py:151 msgid "Versions comment" @@ -74,7 +75,7 @@ msgstr "总页数" msgid "Total documents" msgstr "文档总数" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "垃圾箱中的文档" @@ -133,10 +134,12 @@ msgstr "压缩" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "以原始格式或压缩方式下载文档。此选项仅在下载一个文档时可选,对于多个文档,该包将始终作为压缩文件下载。" +msgstr "" +"以原始格式或压缩方式下载文档。此选项仅在下载一个文档时可选,对于多个文档,该" +"包将始终作为压缩文件下载。" #: forms/document_forms.py:35 msgid "Compressed filename" @@ -160,7 +163,9 @@ msgstr "保留扩展名" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开文档。" +msgstr "" +"获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开" +"文档。" #: forms/document_forms.py:147 msgid "Date added" @@ -224,7 +229,9 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开下载的文档版本。" +msgstr "" +"获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开" +"下载的文档版本。" #: links.py:66 msgid "Preview" @@ -478,7 +485,9 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "文档存根是一个在数据库上有条目但没有上传文件的文档。这可能是因为通过API中断上传或延迟上传。" +msgstr "" +"文档存根是一个在数据库上有条目但没有上传文件的文档。这可能是因为通过API中断上" +"传或延迟上传。" #: models/document_models.py:84 msgid "Is stub?" @@ -534,8 +543,7 @@ msgstr "文档类型的名称。" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "将此类文档移至垃圾箱的时间。" #: models/document_type_models.py:38 @@ -595,9 +603,11 @@ msgstr "文件" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document." -" Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "文档版本的文件mime类型。 MIME类型是描述文件格式的标准方式,在本例中是文档的文件格式。例如:“text / plain”或“image / jpeg”。" +"describe the format of a file, in this case the file format of the document. " +"Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "" +"文档版本的文件mime类型。 MIME类型是描述文件格式的标准方式,在本例中是文档的文" +"件格式。例如:“text / plain”或“image / jpeg”。" #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -790,15 +800,17 @@ msgstr "每个用户要记住的收藏文档最大数量。" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an" -" experimental feature and it is disabled by default." -msgstr "检测每个文档页面的方向并创建相应的旋转变换以将其正面显示。这是一项实验性功能,默认情况下处于禁用状态。" +"corresponding rotation transformation to display it rightside up. This is an " +"experimental feature and it is disabled by default." +msgstr "" +"检测每个文档页面的方向并创建相应的旋转变换以将其正面显示。这是一项实验性功" +"能,默认情况下处于禁用状态。" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value" -" of 0 disables the block calculation and the entire file will be loaded into" -" memory." +"Size of blocks to use when calculating the document file's checksum. A value " +"of 0 disables the block calculation and the entire file will be loaded into " +"memory." msgstr "" #: settings.py:77 @@ -813,7 +825,8 @@ msgstr "支持的文档语言列表。采用ISO639-3格式。" msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "浏览器应缓存提供的文档图像的时间,以秒为单位。默认值31559626秒对应1年。" +msgstr "" +"浏览器应缓存提供的文档图像的时间,以秒为单位。默认值31559626秒对应1年。" #: settings.py:105 msgid "" @@ -935,7 +948,10 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "\n                    第%(page_number)s页,总%(total_pages)s页\n                " +msgstr "" +"\n" +"                    第%(page_number)s页,总%(total_pages)s页\n" +"                " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -948,10 +964,9 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that" -" it is corrupted or that the upload process was interrupted. Use the " -"document page recalculation action to attempt to introspect the page count " -"again." +"This could mean that the document is of a format that is not supported, that " +"it is corrupted or that the upload process was interrupted. Use the document " +"page recalculation action to attempt to introspect the page count again." msgstr "" #: views/document_page_views.py:59 @@ -984,10 +999,12 @@ msgstr "文档类型:%s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical" -" document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical " +"document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "文档类型是最基本的配置单元。系统中的所有东西都将取决于它们。为要上传的每种物理文档定义文档类型。示例文档类型:发票,收据,手册,处方,资产负债表。" +msgstr "" +"文档类型是最基本的配置单元。系统中的所有东西都将取决于它们。为要上传的每种物" +"理文档定义文档类型。示例文档类型:发票,收据,手册,处方,资产负债表。" #: views/document_type_views.py:77 msgid "No document types available" @@ -1025,7 +1042,8 @@ msgstr "从文档类型“%(document_type)s”删除快速标签:%(label)s?" #: views/document_type_views.py:215 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "从文档类型“%(document_type)s”编辑快速标签“%(filename)s”" #: views/document_type_views.py:253 @@ -1033,7 +1051,9 @@ msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "快速标签是预定的文件名,允许通过从列表中选择文档来快速重命名文档。上传文档后也可以使用快速标签。" +msgstr "" +"快速标签是预定的文件名,允许通过从列表中选择文档来快速重命名文档。上传文档后" +"也可以使用快速标签。" #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1085,7 +1105,9 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "这可能意味着没有上传任何文档,或者您的用户帐户未被授予任何文档或文档类型的查看权限。" +msgstr "" +"这可能意味着没有上传任何文档,或者您的用户帐户未被授予任何文档或文档类型的查" +"看权限。" #: views/document_views.py:94 msgid "No documents available" @@ -1227,9 +1249,11 @@ msgstr "打印:%s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or" -" were saved using a different file format will not appear as duplicates." -msgstr "重复项是由完全相同的文件组成的文档,直到最后一个字节。具有相同文本或OCR但不一致或使用不同文件格式保存的文件不会显示为重复项。" +"the last byte. Files that have the same text or OCR but are not identical or " +"were saved using a different file format will not appear as duplicates." +msgstr "" +"重复项是由完全相同的文件组成的文档,直到最后一个字节。具有相同文本或OCR但不一" +"致或使用不同文件格式保存的文件不会显示为重复项。" #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1237,8 +1261,8 @@ msgstr "没有重复的文档" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by" -" this user account." +"This view will list the latest documents viewed or manipulated in any way by " +"this user account." msgstr "此视图将列出此用户帐户以任何方式查看或操作的最新文档。" #: views/document_views.py:710 @@ -1323,66 +1347,68 @@ msgstr "扫描重复的文件?" msgid "Duplicated document scan queued successfully." msgstr "重复文档扫描成功排队。" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "清空垃圾箱?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "垃圾箱成功清空" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "为避免数据丢失,不会立即删除文档。首先,它们放在垃圾桶里。从这里可以最终删除或恢复它们。" +msgstr "" +"为避免数据丢失,不会立即删除文档。首先,它们放在垃圾桶里。从这里可以最终删除" +"或恢复它们。" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "垃圾桶里没有文件" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po index be22d13551..59b68f6aa3 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po index e5cded9a3e..f87e6eb18b 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po index e8fcc4a504..1515b24531 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:17 msgid "Dynamic search" @@ -35,7 +37,10 @@ msgstr "Složi sve" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Kada se proveri, biće vraćeni samo rezultati koji odgovaraju svim poljima. Kada se neprovereni rezultati koji se podudaraju sa najmanje jednim poljem će biti vraćeni." +msgstr "" +"Kada se proveri, biće vraćeni samo rezultati koji odgovaraju svim poljima. " +"Kada se neprovereni rezultati koji se podudaraju sa najmanje jednim poljem " +"će biti vraćeni." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po index ab8d820230..c7d7c25900 100644 --- a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po index 1ebb078481..1940da8d84 100644 --- a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po index def88f8cf6..36eb889fdb 100644 --- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 @@ -40,7 +41,10 @@ msgstr "Alle Felder" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Wenn aktiviert, werden nur Ergebnisse angezeigt bei denen alle Felder zutreffen. Ohne diese Option werden Ergebnisse mit mindestens einem Feld angezeigt." +msgstr "" +"Wenn aktiviert, werden nur Ergebnisse angezeigt bei denen alle Felder " +"zutreffen. Ohne diese Option werden Ergebnisse mit mindestens einem Feld " +"angezeigt." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po index 3993b0908d..8b758dcca5 100644 --- a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 @@ -33,7 +34,10 @@ msgstr "Ταίριαξε με όλα" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Αν επιλεχθεί, θα επιστραφούν μόνο αποτελέσματα που ταιριάζουν με όλα τα πεδία. Αν δεν επιλεχθεί, θα επιστραφούν αποτελέσματα που ταιριάζουν σε τουλάχιστον ένα πεδίο." +msgstr "" +"Αν επιλεχθεί, θα επιστραφούν μόνο αποτελέσματα που ταιριάζουν με όλα τα " +"πεδία. Αν δεν επιλεχθεί, θα επιστραφούν αποτελέσματα που ταιριάζουν σε " +"τουλάχιστον ένα πεδίο." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po index 12f282140a..2fea2d1d6b 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po index 1045f3e90d..e6dd11ad5a 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 @@ -37,7 +38,10 @@ msgstr "Parear todos" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Cuando se selecciona, sólo se devolverán los resultados que coincidan con todos los campos. Si no se selecciona los resultados que coincidan con al menos un campo se devolverá." +msgstr "" +"Cuando se selecciona, sólo se devolverán los resultados que coincidan con " +"todos los campos. Si no se selecciona los resultados que coincidan con al " +"menos un campo se devolverá." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po index 3213f2a616..18a62b9164 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -35,7 +36,10 @@ msgstr "انطباق با همه" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "با انتخاب این گزینه، فقط نتایجی که با همه‌ی فیلدها منطبق باشند برگردانده می‌شوند. وقتی این گزینه انتخاب نشده باشد، نتایجی که دست کم با یک فیلد منطبق باشند برگردانده می‌شوند." +msgstr "" +"با انتخاب این گزینه، فقط نتایجی که با همه‌ی فیلدها منطبق باشند برگردانده " +"می‌شوند. وقتی این گزینه انتخاب نشده باشد، نتایجی که دست کم با یک فیلد منطبق " +"باشند برگردانده می‌شوند." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po index 990d955794..249c5149ab 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2014-2015 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -39,7 +40,10 @@ msgstr "Correspond à tous" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Lorsqu'il est coché, seuls les résultats correspondant à tous les champs seront renvoyés. Lorsqu'il ne l'est pas, les résultats correspondant à au moins un champ seront retournés." +msgstr "" +"Lorsqu'il est coché, seuls les résultats correspondant à tous les champs " +"seront renvoyés. Lorsqu'il ne l'est pas, les résultats correspondant à au " +"moins un champ seront retournés." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po index 02a83bec3f..d7803345bb 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 # molnars , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po index f5b4a90ba0..eb845ae8eb 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po index 18efe4ade2..82598c44fe 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Giovanni Tricarico , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po index a7a9e9811e..952afafe85 100644 --- a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:17 msgid "Dynamic search" @@ -34,7 +36,10 @@ msgstr "Saskaņot visus" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Pēc izvēles tiek atgriezti tikai rezultāti, kas atbilst visiem laukiem. Kad tiks atdoti nekontrolēti rezultāti, kas atbilst vismaz vienam laukam, tiks atgriezti." +msgstr "" +"Pēc izvēles tiek atgriezti tikai rezultāti, kas atbilst visiem laukiem. Kad " +"tiks atdoti nekontrolēti rezultāti, kas atbilst vismaz vienam laukam, tiks " +"atgriezti." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po index 0d493819ac..452b35504a 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po index 7fe37396d2..e60f61398f 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012 @@ -12,15 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:17 msgid "Dynamic search" @@ -38,7 +41,10 @@ msgstr "Dopasuj wszystko" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Zaznaczone oznacza, że zostaną zwrócone wyniki jedynie w przypadku dopasowania wszystkich pól. Niezaznaczone oznacza, że zostaną zwrócone wyniki jeśli wartość z przynajmniej jednego pola zostanie dopasowane." +msgstr "" +"Zaznaczone oznacza, że zostaną zwrócone wyniki jedynie w przypadku " +"dopasowania wszystkich pól. Niezaznaczone oznacza, że zostaną zwrócone " +"wyniki jeśli wartość z przynajmniej jednego pola zostanie dopasowane." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index 51d2eaa6c1..aa72697b29 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Vítor Figueiró , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po index 4557613319..c459b9f20d 100644 --- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -37,7 +38,10 @@ msgstr "Corresponder a todos" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Quando marcado, somente os resultados que correspondem a todos os campos serão retornados. Quando os resultados não verificados correspondentes a pelo menos um campo serão retornados." +msgstr "" +"Quando marcado, somente os resultados que correspondem a todos os campos " +"serão retornados. Quando os resultados não verificados correspondentes a " +"pelo menos um campo serão retornados." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po index f8e77f3cac..7d23a8dd11 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:17 msgid "Dynamic search" @@ -35,7 +37,10 @@ msgstr "Se potrivește cu toate" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Atunci când este bifată, vor fi returnate numai rezultatele care corespund tuturor câmpurilor. Atunci când rezultatele neconfirmate care corespund cel puțin un câmp vor fi returnate." +msgstr "" +"Atunci când este bifată, vor fi returnate numai rezultatele care corespund " +"tuturor câmpurilor. Atunci când rezultatele neconfirmate care corespund cel " +"puțin un câmp vor fi returnate." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po index e96730799d..d7c2eefa85 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po index 85e52f3ad8..6c731a0168 100644 --- a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po index 5ac18a86e9..6c84bed69e 100644 --- a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -35,7 +36,10 @@ msgstr "Hepsini eşleştir" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "İşaretlendiğinde, yalnızca tüm alanlarla eşleşen sonuçlar döndürülür. İşaretlenmemiş sonuçlar en az bir alanla eşleşen olduğunda geri döndürülecektir." +msgstr "" +"İşaretlendiğinde, yalnızca tüm alanlarla eşleşen sonuçlar döndürülür. " +"İşaretlenmemiş sonuçlar en az bir alanla eşleşen olduğunda geri " +"döndürülecektir." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po index 0296c7c01d..3dbb1f899e 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po index 69db078a96..89c825fc6c 100644 --- a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 @@ -34,7 +35,9 @@ msgstr "匹配所有" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "选中后,将仅返回与所有字段匹配的结果。未选中时,将返回与至少一个字段匹配的结果。" +msgstr "" +"选中后,将仅返回与所有字段匹配的结果。未选中时,将返回与至少一个字段匹配的结" +"果。" #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 2c4eba53c9..7b2d1017f0 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index 40ce186931..a661e9c45e 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po index 48dc8027e7..813463885a 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po index 1d87dee805..ec23021595 100644 --- a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po index edea865611..f295aa45ff 100644 --- a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po index 7f8098da82..25d1dd62d1 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mathias Behrle , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-28 21:18+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 @@ -158,7 +159,9 @@ msgstr "Ereignissubskriptionen erfolgreich aktualisiert" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "Subskription für globale oder Objektereignisse um Benachrichtigungen zu erhalten." +msgstr "" +"Subskription für globale oder Objektereignisse um Benachrichtigungen zu " +"erhalten." #: views.py:117 msgid "There are no notifications" @@ -168,7 +171,9 @@ msgstr "Keine Benachrichtigungen vorhanden" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "Ereignisse sind Aktionen, die an diesem Objekt vorgenommen wurden oder durch die Benutzung des Objekts hervorgerufen werden." +msgstr "" +"Ereignisse sind Aktionen, die an diesem Objekt vorgenommen wurden oder durch " +"die Benutzung des Objekts hervorgerufen werden." #: views.py:167 msgid "There are no events for this object" diff --git a/mayan/apps/events/locale/el/LC_MESSAGES/django.po b/mayan/apps/events/locale/el/LC_MESSAGES/django.po index a0cd3c8c18..457422e12b 100644 --- a/mayan/apps/events/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index 5b1e815afe..baa3176469 100644 --- a/mayan/apps/events/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index 3b92d4e050..c031d980a3 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2017-2019 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-30 16:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 @@ -159,7 +160,8 @@ msgstr "Las suscripciones de eventos se actualizaron con éxito" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "Suscríbase a eventos globales o de objetos para recibir notificaciones." +msgstr "" +"Suscríbase a eventos globales o de objetos para recibir notificaciones." #: views.py:117 msgid "There are no notifications" @@ -169,7 +171,9 @@ msgstr "No hay notificaciones" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "Los eventos son acciones que se han realizado a este objeto o utilizando este objeto." +msgstr "" +"Los eventos son acciones que se han realizado a este objeto o utilizando " +"este objeto." #: views.py:167 msgid "There are no events for this object" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index 75b0fa9665..f22a073641 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015,2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 8bd61af183..044c8f88de 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 # Frédéric Sheedy , 2019 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-17 13:22+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 @@ -161,7 +162,9 @@ msgstr "Souscriptions aux événements mises à jour avec succès" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "Abonnez-vous à des événements globaux ou à des objets pour recevoir des notifications." +msgstr "" +"Abonnez-vous à des événements globaux ou à des objets pour recevoir des " +"notifications." #: views.py:117 msgid "There are no notifications" @@ -171,7 +174,9 @@ msgstr "Il n'y a pas de notification" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "Les événements sont des actions qui ont été effectuées sur cet objet ou utilisant cet objet." +msgstr "" +"Les événements sont des actions qui ont été effectuées sur cet objet ou " +"utilisant cet objet." #: views.py:167 msgid "There are no events for this object" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index c918ff0f40..55e6c894e5 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index 9423613d1b..2c56c3cc40 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index 29c61608c7..644568ce11 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-13 17:25+0000\n" "Last-Translator: Daniele Bortoluzzi \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po index 77dae44aae..5504cd34cb 100644 --- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-31 12:26+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po index 5880951a68..b6d41c5448 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index bf0825dc98..0a34a2fc48 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index d129c00af4..255ab6446f 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po index fd52e3c4c2..13139365f6 100644 --- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Rogerio Falcone , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po index e46fa37673..73c12ebecd 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-02 05:19+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" @@ -168,7 +170,9 @@ msgstr "Nu există nicio notificare" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "Evenimentele sunt acțiuni care au fost realizate pe acest obiect sau utilizând acest obiect." +msgstr "" +"Evenimentele sunt acțiuni care au fost realizate pe acest obiect sau " +"utilizând acest obiect." #: views.py:167 msgid "There are no events for this object" @@ -186,7 +190,8 @@ msgstr "Eroare la actualizarea abonamentului eveniment obiect; %s" #: views.py:215 msgid "Object event subscriptions updated successfully" -msgstr "Obținerea abonamentelor evenimentului obiect a fost actualizată cu succes" +msgstr "" +"Obținerea abonamentelor evenimentului obiect a fost actualizată cu succes" #: views.py:248 #, python-format diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 8de6be7efb..2dfed3aa4f 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po index f5c2b52228..de34730165 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po index 4f7d93fd1b..6040c96c4a 100644 --- a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po index ddf262c12d..cdb591f68d 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po index 23095f7353..cc92b6d099 100644 --- a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po index 63474ee062..bb1ea75150 100644 --- a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Mohammed ALDOUB , 2019 # Yaman Sanobar , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:15 msgid "Label" @@ -189,8 +190,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po index 46581fcfe2..51a3cb6f27 100644 --- a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Iliya Georgiev , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Iliya Georgiev , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -188,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po index 8bbc3c5e44..ed38632e2b 100644 --- a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -2,27 +2,29 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # www.ping.ba , 2019 # Atdhe Tabaku , 2019 # Ilvana Dollaroviq , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Ilvana Dollaroviq , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:15 msgid "Label" @@ -190,8 +192,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po index c3e1e2dba4..c41ce4674e 100644 --- a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin.py:15 msgid "Label" @@ -187,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po index 6264f1c080..5f6cd4588f 100644 --- a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -187,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po index 54cfc6e08a..1262a791df 100644 --- a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po @@ -2,26 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Tobias Paepke , 2019 # Berny , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -194,8 +195,8 @@ msgstr "Argumente die an den Treiber übergeben werden." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." @@ -237,8 +238,7 @@ msgstr "Dateimetadatenverarbeitung für Dokumententyp %s bearbeiten" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." msgstr "" -"Alle Dokumente eines Typs für die Verarbeitung von Dateimetadaten " -"einstellen." +"Alle Dokumente eines Typs für die Verarbeitung von Dateimetadaten einstellen." #: views.py:147 #, python-format diff --git a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po index 39e60d9d7a..33c667b0ef 100644 --- a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -187,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po index 97e417916a..b49fb54e5d 100644 --- a/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po index 36895c17e4..3b08b1e345 100644 --- a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -56,8 +56,7 @@ msgstr "Herramienta EXIF" #: events.py:12 msgid "Document version submitted for file metadata processing" msgstr "" -"Versión del documento enviado para el procesamiento de metadatos del " -"archivo." +"Versión del documento enviado para el procesamiento de metadatos del archivo." #: events.py:16 msgid "Document version file metadata processing finished" @@ -173,8 +172,7 @@ msgstr "Entradas de metadato de archivos" #: permissions.py:10 msgid "Change document type file metadata settings" -msgstr "" -"Cambiar la configuración de metadatos del archivo de tipo de documento" +msgstr "Cambiar la configuración de metadatos del archivo de tipo de documento" #: permissions.py:15 msgid "Submit document for file metadata processing" @@ -202,8 +200,8 @@ msgstr "Argumentos para pasar a los controladores." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." @@ -250,8 +248,8 @@ msgstr "" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." msgstr "" -"Enviar todos los documentos de un tipo para el procesamiento de metadatos de" -" archivos." +"Enviar todos los documentos de un tipo para el procesamiento de metadatos de " +"archivos." #: views.py:147 #, python-format diff --git a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po index fde35f13d1..340cfa97ee 100644 --- a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po @@ -2,25 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Mehdi Amani , 2019 # Nima Towhidi , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Nima Towhidi , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -189,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po index deab652820..8ee1ef61e1 100644 --- a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Christophe CHAUVET , 2019 @@ -10,20 +10,20 @@ # Baptiste GAILLET , 2019 # Yves Dubois , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -195,8 +195,8 @@ msgstr "Arguments à transmettre au pilote." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." @@ -238,8 +238,8 @@ msgstr "" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." msgstr "" -"Soumettez tous les documents d'un type pour le traitement des métadonnées de" -" fichier." +"Soumettez tous les documents d'un type pour le traitement des métadonnées de " +"fichier." #: views.py:147 #, python-format diff --git a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po index 499664f47d..e7fe08dbd1 100644 --- a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2019 # molnars , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: molnars , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -188,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po index 7ec7901624..b2e6f0e7e2 100644 --- a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sehat , 2019 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:15 @@ -188,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po index 4330276fd0..a2df6d01d8 100644 --- a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po @@ -2,25 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Marco Camplese , 2019 # Giovanni Tricarico , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -189,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po index 34b3adb4fe..eac2a2ff62 100644 --- a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: admin.py:15 msgid "Label" @@ -182,8 +183,8 @@ msgid "" "Set new document types to perform file metadata processing automatically by " "default." msgstr "" -"Iestatiet jaunus dokumentu veidus, lai pēc noklusējuma veiktu failu metadatu" -" apstrādi." +"Iestatiet jaunus dokumentu veidus, lai pēc noklusējuma veiktu failu metadatu " +"apstrādi." #: settings.py:25 msgid "Arguments to pass to the drivers." @@ -191,8 +192,8 @@ msgstr "Argumenti, kas jānodod vadītājiem." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po index 1b1ccbffbd..54203e22ad 100644 --- a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Lucas Weel , 2019 # Evelijn Saaltink , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -188,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po index e062e5c3a6..e6fb0d130c 100644 --- a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin.py:15 msgid "Label" @@ -188,8 +190,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po index 869a8d7091..36ddf7e531 100644 --- a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Emerson Soares , 2019 # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" -"Last-Translator: Manuela Silva , 2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Last-Translator: Manuela Silva , " +"2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -188,8 +190,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po index 5743636105..bac2ece594 100644 --- a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" -"Last-Translator: José Samuel Facundo da Silva , 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Last-Translator: José Samuel Facundo da Silva , " +"2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -189,8 +191,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po index 0ba1c1934a..ae742a29c6 100644 --- a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Stefaniu Criste , 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: admin.py:15 msgid "Label" @@ -58,8 +60,7 @@ msgstr "Instrument EXIF" #: events.py:12 msgid "Document version submitted for file metadata processing" msgstr "" -"Versiunea de document a fost trimisă pentru procesarea metadatelor de " -"fișiere" +"Versiunea de document a fost trimisă pentru procesarea metadatelor de fișiere" #: events.py:16 msgid "Document version file metadata processing finished" @@ -198,19 +199,19 @@ msgstr "Argumente de transmis driverului" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." msgstr "" -"Metadatele fișierelor sunt atributele fișierului documentului. Ele pot varia" -" de la informațiile despre cameră folosite pentru a face o fotografie până " -"la autorul care a creat un fișier. Metadatele fișierelor sunt setate când " -"fișierul documentului a fost creat pentru prima dată. Atributele de metadate" -" ale fișierelor se află în fișierul propriu-zis. Ele nu sunt aceleași ca și " -"metadatele documentului, care sunt definite de utilizator și se află în baza" -" de date." +"Metadatele fișierelor sunt atributele fișierului documentului. Ele pot varia " +"de la informațiile despre cameră folosite pentru a face o fotografie până la " +"autorul care a creat un fișier. Metadatele fișierelor sunt setate când " +"fișierul documentului a fost creat pentru prima dată. Atributele de metadate " +"ale fișierelor se află în fișierul propriu-zis. Ele nu sunt aceleași ca și " +"metadatele documentului, care sunt definite de utilizator și se află în baza " +"de date." #: views.py:43 views.py:62 msgid "No file metadata available." diff --git a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po index 38dbe65196..617305e3d1 100644 --- a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po @@ -2,27 +2,29 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Sergey Glita , 2019 # lilo.panic, 2019 # D Muzzle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: D Muzzle , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:15 msgid "Label" @@ -190,8 +192,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po index ef605e1b40..3ca3cb1d7c 100644 --- a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: kontrabant , 2019\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: admin.py:15 msgid "Label" @@ -187,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po index 263fe86fea..5c7cf1135f 100644 --- a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: serhatcan77 , 2019\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -187,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po index 35013d44ee..674066d073 100644 --- a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Trung Phan Minh , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:15 @@ -188,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po index 927989e0d9..6c0cfc9fd6 100644 --- a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:15 @@ -187,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from" -" camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from " +"camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index 84b0e19f84..1e0c22733e 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:42 msgid "Linking" @@ -142,8 +144,8 @@ msgstr "is in regular expression (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -259,7 +261,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 007a7419f5..f2ff9afea1 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -142,8 +143,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -259,7 +260,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po index 4409bc78f1..a43d2fe1a3 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:42 msgid "Linking" @@ -143,8 +145,8 @@ msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -228,7 +230,9 @@ msgstr "Pogledati postojeće smart linkove" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista odvojenih primarnih ključeva tipova dokumenata na koje se povezuje ova pametna veza." +msgstr "" +"Lista odvojenih primarnih ključeva tipova dokumenata na koje se povezuje ova " +"pametna veza." #: serializers.py:141 #, python-format @@ -260,8 +264,11 @@ msgstr "Dokumenti u pametnom linku:%s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Dokumenti u pametnom linku \"%(smart_link)s\" koji se odnose na \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Dokumenti u pametnom linku \"%(smart_link)s\" koji se odnose na " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po index 0d460b57b8..f951cba0cd 100644 --- a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:42 msgid "Linking" @@ -141,8 +143,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -258,7 +260,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po index 52cd2f9b13..0024ed8f25 100644 --- a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -141,8 +142,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -258,7 +259,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po index 3f0fcee373..09a373db05 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 22:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -147,9 +148,12 @@ msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die {{ document }} Kontextvariable ist verfügbar." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die " +"{{ document }} Kontextvariable ist verfügbar." #: models.py:35 msgid "Dynamic label" @@ -232,7 +236,9 @@ msgstr "Existierende Smart Links anzeigen" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen dieser Smart Link verknüpft wird." +msgstr "" +"Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen " +"dieser Smart Link verknüpft wird." #: serializers.py:141 #, python-format @@ -264,8 +270,10 @@ msgstr "Ähnliche Dokumente für %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -285,7 +293,11 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "Indices gruppieren Dokumente in Einheiten, üblicherweise mit ähnlichen Eigenschaften und gleichen oder ähnlichen Typen. Smart links ermöglichen die Definition von Beziehungen zwischen Dokumenten, auch wenn sie in verschiedenen Indices sind oder einen unterschiedlichen Typ aufweisen." +msgstr "" +"Indices gruppieren Dokumente in Einheiten, üblicherweise mit ähnlichen " +"Eigenschaften und gleichen oder ähnlichen Typen. Smart links ermöglichen die " +"Definition von Beziehungen zwischen Dokumenten, auch wenn sie in " +"verschiedenen Indices sind oder einen unterschiedlichen Typ aufweisen." #: views.py:195 msgid "There are no smart links" @@ -295,7 +307,10 @@ msgstr "Keine ähnlichen Dokumente vorhanden" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "Smart links ermöglichen die Definition von Beziehungen zwischen Dokumenten, auch wenn sie in verschiedenen Indices sind oder einen unterschiedlichen Typ aufweisen." +msgstr "" +"Smart links ermöglichen die Definition von Beziehungen zwischen Dokumenten, " +"auch wenn sie in verschiedenen Indices sind oder einen unterschiedlichen Typ " +"aufweisen." #: views.py:232 msgid "There are no smart links for this document" @@ -320,7 +335,9 @@ msgstr "Smart Link %s bearbeiten" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "Bedingungen sind kleine logische Einheiten, die in der Kombination definieren, wie der Smart Link funktionieren wird." +msgstr "" +"Bedingungen sind kleine logische Einheiten, die in der Kombination " +"definieren, wie der Smart Link funktionieren wird." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po index 9c8abb0e00..9a3f55f903 100644 --- a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -141,8 +142,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -164,7 +165,8 @@ msgstr "Σφάλμα κατά την δημιουργία δυναμικής ε #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Αυτός ο έξυπνος συνδεσμός δεν επιτρέπεται για τον επιλεγμένο τύπο εγγράφου." +msgstr "" +"Αυτός ο έξυπνος συνδεσμός δεν επιτρέπεται για τον επιλεγμένο τύπο εγγράφου." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -258,8 +260,11 @@ msgstr "Έγγραφα στον έξυπνο σύνδεσμο: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Έγγραφα στον έξυπνο σύνδεσμο \"%(smart_link)s\" που σχετίζονται με το \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Έγγραφα στον έξυπνο σύνδεσμο \"%(smart_link)s\" που σχετίζονται με το " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -272,7 +277,8 @@ msgstr "Ενεργοποίηση τύπων εγγράφου" #: views.py:171 #, python-format msgid "Document type for which to enable smart link: %s" -msgstr "Τύποι εγγράφων για τους οποίους θα ενεργοποιηθούν οι έξυπνοι σύνδεσμοι: %s" +msgstr "" +"Τύποι εγγράφων για τους οποίους θα ενεργοποιηθούν οι έξυπνοι σύνδεσμοι: %s" #: views.py:188 msgid "" diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po index ff28e7d0fe..94ceb043a3 100644 --- a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index bdd43e94a7..9878c06269 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -144,9 +145,12 @@ msgstr "está en la expresión regular (no sensible a mayúsculas)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). La variable de contexto {{document}} está disponible." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas " +"predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/" +"templates/builtins/). La variable de contexto {{document}} está disponible." #: models.py:35 msgid "Dynamic label" @@ -167,7 +171,9 @@ msgstr "Error generando etiqueta dinámica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Este enlace inteligente no está permitido para el tipo de documento seleccionado." +msgstr "" +"Este enlace inteligente no está permitido para el tipo de documento " +"seleccionado." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -229,7 +235,9 @@ msgstr "Ver enlaces inteligentes existentes" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista separada por comas de las llaves principales de tipos de documentos a las que se vinculará este enlace inteligente." +msgstr "" +"Lista separada por comas de las llaves principales de tipos de documentos a " +"las que se vinculará este enlace inteligente." #: serializers.py:141 #, python-format @@ -261,8 +269,11 @@ msgstr "Documentos en enlace inteligente: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Los documentos en enlace inteligente \"%(smart_link)s\" en relación con \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Los documentos en enlace inteligente \"%(smart_link)s\" en relación con " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -282,7 +293,11 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "Los índices agrupan los documentos en unidades, generalmente con propiedades similares y de tipos iguales o similares. Los enlaces inteligentes permiten definir las relaciones entre los documentos, incluso si están en diferentes índices y son de diferentes tipos." +msgstr "" +"Los índices agrupan los documentos en unidades, generalmente con propiedades " +"similares y de tipos iguales o similares. Los enlaces inteligentes permiten " +"definir las relaciones entre los documentos, incluso si están en diferentes " +"índices y son de diferentes tipos." #: views.py:195 msgid "There are no smart links" @@ -292,7 +307,9 @@ msgstr "No hay enlaces inteligentes" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "Los enlaces inteligentes permiten definir las relaciones entre los documentos, incluso si están en diferentes índices y son de diferentes tipos." +msgstr "" +"Los enlaces inteligentes permiten definir las relaciones entre los " +"documentos, incluso si están en diferentes índices y son de diferentes tipos." #: views.py:232 msgid "There are no smart links for this document" @@ -317,7 +334,9 @@ msgstr "Editar enlace inteligente: %s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "Las condiciones son pequeñas unidades lógicas que cuando se combinan definen cómo se comportará el enlace inteligente." +msgstr "" +"Las condiciones son pequeñas unidades lógicas que cuando se combinan definen " +"cómo se comportará el enlace inteligente." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index 2c2eb20ab2..c13802c0d9 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -143,8 +144,8 @@ msgstr "موجود در عبارات منظم (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -228,7 +229,9 @@ msgstr "دیدن پیوندهای هوشمند موجود" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "لیست کاملی از نوع اسناد کلید های اصلی که این پیوند هوشمند متصل است جدا شده است." +msgstr "" +"لیست کاملی از نوع اسناد کلید های اصلی که این پیوند هوشمند متصل است جدا شده " +"است." #: serializers.py:141 #, python-format @@ -260,8 +263,10 @@ msgstr "اسناد در لینک هوشمند: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "اسناد پیوند هوشمند \"%(smart_link)s\" به عنوان \"%(document)s\" مربوط به" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"اسناد پیوند هوشمند \"%(smart_link)s\" به عنوان \"%(document)s\" مربوط به" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index 67ed657049..f92e6124c3 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-09 17:25+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -146,8 +147,8 @@ msgstr "est une expression régulière (insensible à la casse)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -169,7 +170,8 @@ msgstr "Erreur de génération du libellé dynamique ; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Un lien intelligent n'est pas autorisé pour le type de document sélectionné." +msgstr "" +"Un lien intelligent n'est pas autorisé pour le type de document sélectionné." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -231,7 +233,9 @@ msgstr "Afficher les liens intelligents existants" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Liste séparée par des virgules des clés primaires de type de document auxquelles ce lien intelligent sera attaché." +msgstr "" +"Liste séparée par des virgules des clés primaires de type de document " +"auxquelles ce lien intelligent sera attaché." #: serializers.py:141 #, python-format @@ -263,8 +267,11 @@ msgstr "Lien inetlligent du document : %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Documents du lien intelligent \"%(smart_link)s\" en relation avec \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Documents du lien intelligent \"%(smart_link)s\" en relation avec " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index 50dfa96c77..fd4a0cafb2 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -142,8 +143,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -259,7 +260,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index 7609a68871..c36c8daa25 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -141,8 +142,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -258,7 +259,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index 7a59456966..611c2dc764 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011-2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -143,8 +144,8 @@ msgstr "è un'espressione regolare (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -166,7 +167,8 @@ msgstr "Errore generando l'etichetta dinamica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Questo link intelligente non è consentito per questo tipo di documento." +msgstr "" +"Questo link intelligente non è consentito per questo tipo di documento." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -228,7 +230,9 @@ msgstr "Vista intelligente dei link esistenti" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista separata da virgole di chiavi primarie di tipi documento da allegare a questo smart link." +msgstr "" +"Lista separata da virgole di chiavi primarie di tipi documento da allegare a " +"questo smart link." #: serializers.py:141 #, python-format @@ -260,8 +264,11 @@ msgstr "Documenti nel link intelligente: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Documenti nel link intelligente: \"%(smart_link)s\" è correlato con \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Documenti nel link intelligente: \"%(smart_link)s\" è correlato con " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po index ad2816c67d..2f3cd98933 100644 --- a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:28+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:42 msgid "Linking" @@ -142,9 +144,12 @@ msgstr "ir regulāra izteiksme (gadījuma nejutīgums)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Ir pieejams {{document}} konteksta mainīgais." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes " +"valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Ir " +"pieejams {{document}} konteksta mainīgais." #: models.py:35 msgid "Dynamic label" @@ -227,7 +232,9 @@ msgstr "Skatiet esošās viedās saites" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Komatu atdalīts dokumentu tipu primāro atslēgu saraksts, kurām tiks pievienota šī viedā saite." +msgstr "" +"Komatu atdalīts dokumentu tipu primāro atslēgu saraksts, kurām tiks " +"pievienota šī viedā saite." #: serializers.py:141 #, python-format @@ -259,8 +266,11 @@ msgstr "Dokumenti viedā saitē: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Dokumenti viedā saite "%(smart_link)s", kas saistīti ar "%(document)s"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Dokumenti viedā saite "%(smart_link)s", kas saistīti ar "" +"%(document)s"" #: views.py:160 msgid "Available document types" @@ -280,7 +290,10 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "Indeksē grupas dokumentus vienībās, parasti ar līdzīgām īpašībām un vienādiem vai līdzīgiem veidiem. Viedās saites ļauj noteikt attiecības starp dokumentiem pat tad, ja tās atrodas dažādos indeksos un ir dažāda veida." +msgstr "" +"Indeksē grupas dokumentus vienībās, parasti ar līdzīgām īpašībām un " +"vienādiem vai līdzīgiem veidiem. Viedās saites ļauj noteikt attiecības starp " +"dokumentiem pat tad, ja tās atrodas dažādos indeksos un ir dažāda veida." #: views.py:195 msgid "There are no smart links" @@ -290,7 +303,9 @@ msgstr "Viedās saites nav" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "Viedās saites ļauj noteikt attiecības starp dokumentiem pat tad, ja tās atrodas dažādos indeksos un ir dažāda veida." +msgstr "" +"Viedās saites ļauj noteikt attiecības starp dokumentiem pat tad, ja tās " +"atrodas dažādos indeksos un ir dažāda veida." #: views.py:232 msgid "There are no smart links for this document" @@ -315,7 +330,9 @@ msgstr "Rediģēt viedo saiti: %s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "Nosacījumi ir nelielas loģikas vienības, kas, kombinējot, definē, kā viedā saite darbosies." +msgstr "" +"Nosacījumi ir nelielas loģikas vienības, kas, kombinējot, definē, kā viedā " +"saite darbosies." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po index 87c081b891..84e13fa422 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -143,8 +144,8 @@ msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -260,7 +261,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index 03b6af9068..a906ff6908 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:42 msgid "Linking" @@ -144,8 +147,8 @@ msgstr "jest w wyrażeniu regularnym (wielkość liter ma znaczenie)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -229,7 +232,9 @@ msgstr "Przeglądaj istniejące łącza" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista rozdzielonych przecinkami kluczy głównych dotyczących typów dokumentów, do których łącze będzie się odnosić." +msgstr "" +"Lista rozdzielonych przecinkami kluczy głównych dotyczących typów " +"dokumentów, do których łącze będzie się odnosić." #: serializers.py:141 #, python-format @@ -261,7 +266,8 @@ msgstr "Dokumenty w łączu: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "Dokumenty w łączu \"%(smart_link)s\" powiązane z \"%(document)s\"" #: views.py:160 diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index 27dc791416..ea5533eb20 100644 --- a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Roberto Rosario, 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -144,8 +145,8 @@ msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -261,7 +262,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po index 37c5eef61d..e16072132d 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -146,8 +147,8 @@ msgstr "está em expressão regular (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -169,7 +170,8 @@ msgstr "Erro gerando etiqueta dinâmica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Este link inteligente não é permitido para o tipo de documento selecionado. " +msgstr "" +"Este link inteligente não é permitido para o tipo de documento selecionado. " #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -231,7 +233,9 @@ msgstr "Ver os ligações inteligentes" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista separada por vírgulas do tipo de documento chaves primárias às quais este link inteligente será anexado." +msgstr "" +"Lista separada por vírgulas do tipo de documento chaves primárias às quais " +"este link inteligente será anexado." #: serializers.py:141 #, python-format @@ -263,8 +267,11 @@ msgstr "Os documentos em referência inteligente: %s " #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Os documentos em link inteligente \"%(smart_link)s\" em relação com \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Os documentos em link inteligente \"%(smart_link)s\" em relação com " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po index 4f899578ef..fbf3377809 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-08 07:58+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:42 msgid "Linking" @@ -143,9 +145,12 @@ msgstr "este în expresie regulată (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Variabila context {{document}} este disponibilă." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating " +"implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/" +"builtins/). Variabila context {{document}} este disponibilă." #: models.py:35 msgid "Dynamic label" @@ -166,7 +171,9 @@ msgstr "Eroare la generarea etichetei dinamice; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Această legătură inteligentă nu este permisă pentru tipul de document selectat." +msgstr "" +"Această legătură inteligentă nu este permisă pentru tipul de document " +"selectat." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -228,7 +235,9 @@ msgstr "Vedeți legăturile inteligente existente" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Listă separată prin virgule de chei primare de documente la care va fi atașată această legătură inteligentă." +msgstr "" +"Listă separată prin virgule de chei primare de documente la care va fi " +"atașată această legătură inteligentă." #: serializers.py:141 #, python-format @@ -260,8 +269,11 @@ msgstr "Documente în legătura inteligentă: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Documentele din legătura inteligentă \"%(smart_link)s\" în legătură cu \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Documentele din legătura inteligentă \"%(smart_link)s\" în legătură cu " +"\"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -281,7 +293,11 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "Inexurile grupează documente în unități, de obicei cu proprietăți similare și de tipuri egale sau similare. Legăturile inteligente permit definirea relațiilor dintre documente chiar dacă sunt în indecți diferiți și sunt de diferite tipuri." +msgstr "" +"Inexurile grupează documente în unități, de obicei cu proprietăți similare " +"și de tipuri egale sau similare. Legăturile inteligente permit definirea " +"relațiilor dintre documente chiar dacă sunt în indecți diferiți și sunt de " +"diferite tipuri." #: views.py:195 msgid "There are no smart links" @@ -291,7 +307,9 @@ msgstr "Nu există legături inteligente" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "Legăturile inteligente permit definirea relațiilor dintre documente chiar dacă sunt în indecși diferiți și sunt de diferite tipuri." +msgstr "" +"Legăturile inteligente permit definirea relațiilor dintre documente chiar " +"dacă sunt în indecși diferiți și sunt de diferite tipuri." #: views.py:232 msgid "There are no smart links for this document" @@ -316,7 +334,9 @@ msgstr "Editare legătură inteligentă:% s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "Condițiile sunt unități logice mici care, atunci când sunt combinate, definesc modul în care se va comporta legătura inteligentă." +msgstr "" +"Condițiile sunt unități logice mici care, atunci când sunt combinate, " +"definesc modul în care se va comporta legătura inteligentă." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index d022e87e86..7672f79ad8 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:42 msgid "Linking" @@ -141,8 +144,8 @@ msgstr "В регулярном выражении (без учета регис #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -258,7 +261,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po index 4908959b79..6b41682109 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:42 msgid "Linking" @@ -141,8 +143,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -258,7 +260,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po index 6c7b1b9c38..0973284f26 100644 --- a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -143,8 +144,8 @@ msgstr "Düzenli ifadede (harf büyüklüğüne duyarsız)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -228,7 +229,9 @@ msgstr "Mevcut akıllı bağlantıları görüntüle" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Bu akıllı bağlantının ekleneceği belge türü birincil anahtarların virgülle ayrılmış listesi." +msgstr "" +"Bu akıllı bağlantının ekleneceği belge türü birincil anahtarların virgülle " +"ayrılmış listesi." #: serializers.py:141 #, python-format @@ -260,8 +263,10 @@ msgstr "Akıllı dokümanlar: %s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "\"%(document)s\" ile ilişkili \"%(smart_link)s\" akıllı bağlantıdaki belgeler" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"\"%(document)s\" ile ilişkili \"%(smart_link)s\" akıllı bağlantıdaki belgeler" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po index 270bfb00ff..4d39a9060c 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -142,8 +143,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:35 @@ -259,7 +260,8 @@ msgstr "" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po index 0cb089796c..560e10e3a8 100644 --- a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -142,9 +143,11 @@ msgstr "在正则表达式中(不区分大小写)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)。 {{document}}情景变量可用。" +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/" +"en/1.11/ref/templates/builtins/)。 {{document}}情景变量可用。" #: models.py:35 msgid "Dynamic label" @@ -259,7 +262,8 @@ msgstr "智能链接中的文档:%s" #: views.py:135 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "与“%(document)s”相关的智能链接“%(smart_link)s”中的文档" #: views.py:160 @@ -280,7 +284,9 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "索引将文档分组为单元,通常具有相似的属性和相同或相似的类型。智能链接允许定义文档之间的关系,即使它们位于不同的索引中且属于不同类型。" +msgstr "" +"索引将文档分组为单元,通常具有相似的属性和相同或相似的类型。智能链接允许定义" +"文档之间的关系,即使它们位于不同的索引中且属于不同类型。" #: views.py:195 msgid "There are no smart links" @@ -290,7 +296,8 @@ msgstr "没有智能链接" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "智能链接允许定义文档之间的关系,即使它们位于不同的索引中且属于不同类型。" +msgstr "" +"智能链接允许定义文档之间的关系,即使它们位于不同的索引中且属于不同类型。" #: views.py:232 msgid "There are no smart links for this document" diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po index ca66e9e760..e80c7adcd3 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po index c27ff4d654..2b6400510c 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po index 53df0dc1f0..f7acfebd5b 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po index 8849bc10c1..3481f14e9a 100644 --- a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po index a213129fb4..41a09c538c 100644 --- a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po index 5b56ef08ee..6ccd8f2977 100644 --- a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bjoern Kowarsch , 2018 # Mathias Behrle , 2018 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-11-23 10:12+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 @@ -47,10 +48,14 @@ msgstr "Sperren" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "Der Pfad zu der zu nutzenden Klasse für die Aktivierung und Aufhebung der Ressourcensperre." +msgstr "" +"Der Pfad zu der zu nutzenden Klasse für die Aktivierung und Aufhebung der " +"Ressourcensperre." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "Standardzeit in Sekunden nach der eine Ressourcensperre wieder automatisch freigegeben wird. " +msgstr "" +"Standardzeit in Sekunden nach der eine Ressourcensperre wieder automatisch " +"freigegeben wird. " diff --git a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po index 5efd079800..5e23865701 100644 --- a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po index 36d9e1a220..93b351678f 100644 --- a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po index 63063b58c0..38fdf1c73b 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2018-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 @@ -44,10 +45,13 @@ msgstr "Bloqueos" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "Ruta a la clase para usar cuándo solicitar y liberar bloqueos de recursos." +msgstr "" +"Ruta a la clase para usar cuándo solicitar y liberar bloqueos de recursos." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "Cantidad predeterminada de tiempo en segundos después de la cual se liberará automáticamente un bloqueo de recursos." +msgstr "" +"Cantidad predeterminada de tiempo en segundos después de la cual se liberará " +"automáticamente un bloqueo de recursos." diff --git a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po index 45391ff6a1..7d44ade55a 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po index 3699d8a7c1..142c08de3d 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 # Frédéric Sheedy , 2019 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-05 03:51+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 @@ -46,10 +47,14 @@ msgstr "Verrous" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "Chemin vers la classe à utiliser lors d'une requête ou d'un retrait de verrou." +msgstr "" +"Chemin vers la classe à utiliser lors d'une requête ou d'un retrait de " +"verrou." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "Temps par défaut en secondes après quoi le verrou sera automatiquement retiré." +msgstr "" +"Temps par défaut en secondes après quoi le verrou sera automatiquement " +"retiré." diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po index 091d58a92a..3bf12da3ef 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po index 22dc7f3a03..4da52013e0 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po index c776a1b307..4eac20d3f3 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po index b84800c90b..8a812608f5 100644 --- a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:36+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" @@ -44,10 +46,13 @@ msgstr "Slēdzenes" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "Ceļš uz klasi, ko izmantot, kad pieprasīt un atbrīvot resursu slēdzenes." +msgstr "" +"Ceļš uz klasi, ko izmantot, kad pieprasīt un atbrīvot resursu slēdzenes." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "Noklusējuma laiks sekundēs, pēc kura automātiski tiks atbrīvota resursu bloķēšana." +msgstr "" +"Noklusējuma laiks sekundēs, pēc kura automātiski tiks atbrīvota resursu " +"bloķēšana." diff --git a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po index 85ef17e40e..0a53d5bcba 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po index 547edebb6c..33cd59dc59 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po index ee3e333b26..9e0073dad6 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po index 8636858791..4b84243c16 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po index 1bc720c2bd..7a7ae1be4b 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-03-15 11:16+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:10 settings.py:9 msgid "Lock manager" @@ -44,10 +46,14 @@ msgstr "Blocări" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "Calea spre clasă de folosit când să solicite și să elibereze blocarea resurselor." +msgstr "" +"Calea spre clasă de folosit când să solicite și să elibereze blocarea " +"resurselor." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "Valoarea implicită a timpului în secunde, după care se va elibera automat o blocare a resurselor." +msgstr "" +"Valoarea implicită a timpului în secunde, după care se va elibera automat o " +"blocare a resurselor." diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po index c4a40ebee0..5642ee31f8 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po index 1cf2d8bc0b..a58ec76808 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po index ee6486829a..e3b14a5c64 100644 --- a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po index 451fbc65a6..26d32698e3 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po index 6e691691b5..b38e2e3342 100644 --- a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-01-24 02:59+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index 48204d9ec6..3e727a2318 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +198,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -392,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index 03de43a847..2b7575057a 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -44,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -136,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -176,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -197,8 +198,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -393,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po index 32edd83d28..4d24fe9e7a 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -1,32 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:42 msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Poruke" @@ -44,9 +46,11 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "E-mail adresa primaoca. Mogu biti višestruke adrese razdvojene zarezom ili tačka-točka." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"E-mail adresa primaoca. Mogu biti višestruke adrese razdvojene zarezom ili " +"tačka-točka." #: forms.py:62 forms.py:124 msgid "Email address" @@ -119,7 +123,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Priloženo ovoj poruci je dokument: {{document}}\n\n --------\n Ovaj email je poslat iz %(project_title)s (%(project_website)s)" +msgstr "" +"Priloženo ovoj poruci je dokument: {{document}}\n" +"\n" +" --------\n" +" Ovaj email je poslat iz %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -128,7 +136,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Da biste pristupili ovom dokumentu, kliknite na sledeći link: {{link}}\n\n--------\n Ovaj email je poslat iz %(project_title)s (%(project_website)s)" +msgstr "" +"Da biste pristupili ovom dokumentu, kliknite na sledeći link: {{link}}\n" +"\n" +"--------\n" +" Ovaj email je poslat iz %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -136,8 +148,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -164,7 +176,9 @@ msgstr "Koristite TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Da li da koristite TLS (sigurno) vezu prilikom razgovora s SMTP serverom. Ovo se koristi za eksplicitne TLS veze, uglavnom na portu 587." +msgstr "" +"Da li da koristite TLS (sigurno) vezu prilikom razgovora s SMTP serverom. " +"Ovo se koristi za eksplicitne TLS veze, uglavnom na portu 587." #: mailers.py:52 msgid "Use SSL" @@ -176,9 +190,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Da li da koristite implicitnu TLS (sigurnu) vezu prilikom razgovora s SMTP serverom. U većini dokumentacija za e-poštu ova vrsta TLS veze se naziva SSL. Obično se koristi na portu 465. Ako imate problema, pogledajte eksplicitnu postavku TLS \"Use TLS\". Imajte na umu da se \"Use TLS\" i \"Use SSL\" međusobno isključuju, tako da samo jedan od tih postavki podesite na True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Da li da koristite implicitnu TLS (sigurnu) vezu prilikom razgovora s SMTP " +"serverom. U većini dokumentacija za e-poštu ova vrsta TLS veze se naziva " +"SSL. Obično se koristi na portu 465. Ako imate problema, pogledajte " +"eksplicitnu postavku TLS \"Use TLS\". Imajte na umu da se \"Use TLS\" i " +"\"Use SSL\" međusobno isključuju, tako da samo jedan od tih postavki " +"podesite na True." #: mailers.py:64 msgid "Username" @@ -188,7 +208,9 @@ msgstr "Korisničko ime" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Korisničko ime koje treba koristiti za SMTP server. Ako je prazna, autentikacija se neće pokušati." +msgstr "" +"Korisničko ime koje treba koristiti za SMTP server. Ako je prazna, " +"autentikacija se neće pokušati." #: mailers.py:73 msgid "Password" @@ -197,9 +219,12 @@ msgstr "Lozinka" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Lozinka za korištenje za SMTP server. Ovo podešavanje se koristi zajedno sa korisničkim imenom prilikom autentikacije na SMTP serveru. Ako je bilo koja od ovih podešavanja prazna, autentikacija neće biti pokušana." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Lozinka za korištenje za SMTP server. Ovo podešavanje se koristi zajedno sa " +"korisničkim imenom prilikom autentikacije na SMTP serveru. Ako je bilo koja " +"od ovih podešavanja prazna, autentikacija neće biti pokušana." #: mailers.py:85 msgid "Django SMTP backend" @@ -233,7 +258,9 @@ msgstr "Labela" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Ako je podrazumevano, ovaj mailing profil će biti unapred izabran na obrazcu za dostavljanje dokumenata." +msgstr "" +"Ako je podrazumevano, ovaj mailing profil će biti unapred izabran na obrazcu " +"za dostavljanje dokumenata." #: models.py:54 msgid "Default" @@ -325,7 +352,8 @@ msgstr "Šablon za liniju naslova linka e-poruke." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "Šablon za link dokumenta e-pošte oblikuje tekst tela. Može uključiti HTML." +msgstr "" +"Šablon za link dokumenta e-pošte oblikuje tekst tela. Može uključiti HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -393,8 +421,8 @@ msgstr "Uredi mailing adresu: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s error tragovi" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" @@ -410,3 +438,6 @@ msgstr "" #, python-format msgid "Test mailing profile: %s" msgstr "Test mailing profila: %s" + +#~ msgid "%s error log" +#~ msgstr "%s error tragovi" diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po index 1ba47fd5d1..2118f32f73 100644 --- a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +198,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -392,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po index 0839a266fa..accd2157b2 100644 --- a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Besked" @@ -43,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +197,8 @@ msgstr "Password" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -392,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po index 973d436495..7e63657cf3 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -9,25 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Zeit" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Nachricht" @@ -45,9 +46,11 @@ msgstr "E-Mail verschickt" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "E-Mailadresse des Empfängers. Es können mehrere Adressen eingetragen werden, getrennt durch Komma oder Semikolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"E-Mailadresse des Empfängers. Es können mehrere Adressen eingetragen werden, " +"getrennt durch Komma oder Semikolon." #: forms.py:62 forms.py:124 msgid "Email address" @@ -120,7 +123,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Anlagen: {{ document }}\n\n --------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "" +"Anlagen: {{ document }}\n" +"\n" +" --------\n" +" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -129,7 +136,12 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: {{ link }}\n\n--------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "" +"Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: " +"{{ link }}\n" +"\n" +"--------\n" +" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -137,9 +149,11 @@ msgstr "Von" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." -msgstr "Die Adresse des Absenders. Einige Systeme verweigern die Verarbeitung von Nachrichten, wenn dieser Wert nicht gesetzt ist." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." +msgstr "" +"Die Adresse des Absenders. Einige Systeme verweigern die Verarbeitung von " +"Nachrichten, wenn dieser Wert nicht gesetzt ist." #: mailers.py:32 msgid "Host" @@ -165,7 +179,9 @@ msgstr "TLS benutzen" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Ob eine TLS-gesicherte Verbindung zum SMTP-Server benutzt werden soll. Es werden explizite TLS-Verbindungen aufgebaut, üblicherweise an Port 587." +msgstr "" +"Ob eine TLS-gesicherte Verbindung zum SMTP-Server benutzt werden soll. Es " +"werden explizite TLS-Verbindungen aufgebaut, üblicherweise an Port 587." #: mailers.py:52 msgid "Use SSL" @@ -177,9 +193,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Ob eine implizite gesicherte TLS-Verbindung zum SMTP-Server benutzt werden soll. In den meisten Dokumentationen wird dieser Typ der TLS-Verbindung als SSL referenziert. Er wird üblicherweise an Port 465 bereitgestellt. Wenn Sie Probleme feststellen, sehen Sie auch die explizite Einstellung \"TLS benutzen\". TLS und SSL schließen sich gegenseitig aus, also setzen Sie nur eine der beiden Einstellungen." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Ob eine implizite gesicherte TLS-Verbindung zum SMTP-Server benutzt werden " +"soll. In den meisten Dokumentationen wird dieser Typ der TLS-Verbindung als " +"SSL referenziert. Er wird üblicherweise an Port 465 bereitgestellt. Wenn Sie " +"Probleme feststellen, sehen Sie auch die explizite Einstellung \"TLS benutzen" +"\". TLS und SSL schließen sich gegenseitig aus, also setzen Sie nur eine der " +"beiden Einstellungen." #: mailers.py:64 msgid "Username" @@ -189,7 +211,9 @@ msgstr "Benutzer" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Benutzername für den SMTP-Server. Bei leerem Feld wird keine Authentifizierung durchgeführt." +msgstr "" +"Benutzername für den SMTP-Server. Bei leerem Feld wird keine " +"Authentifizierung durchgeführt." #: mailers.py:73 msgid "Password" @@ -198,9 +222,12 @@ msgstr "Passwort" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Passwort für den SMTP-Server. Diese Einstellung wird in Verbindung mit dem Benutzernamen für die Authentifizierung am SMTP-Server verwendet. Wenn eine dr beiden Einstellungen leer ist, wird keine Authentifizierung versucht." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Passwort für den SMTP-Server. Diese Einstellung wird in Verbindung mit dem " +"Benutzernamen für die Authentifizierung am SMTP-Server verwendet. Wenn eine " +"dr beiden Einstellungen leer ist, wird keine Authentifizierung versucht." #: mailers.py:85 msgid "Django SMTP backend" @@ -234,7 +261,9 @@ msgstr "Bezeichner" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Wenn als Standard gesetzt, wird dieses Mailprofil auf dem Dokumentenmailformular voreingestellt." +msgstr "" +"Wenn als Standard gesetzt, wird dieses Mailprofil auf dem " +"Dokumentenmailformular voreingestellt." #: models.py:54 msgid "Default" @@ -322,11 +351,13 @@ msgstr "Link für Dokument: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung." +msgstr "" +"Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "Vorlage für den Textkörper einer Dokumentenlink-Mail. Kann HTML enthalten." +msgstr "" +"Vorlage für den Textkörper einer Dokumentenlink-Mail. Kann HTML enthalten." #: settings.py:24 msgid "Document: {{ document }}" @@ -334,7 +365,8 @@ msgstr "Dokument: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung." +msgstr "" +"Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." @@ -394,14 +426,16 @@ msgstr "Mailprofil %s bearbeiten" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s Fehlerprotokoll" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "Mailprofile sind E-Mailkonfigurationen. Mailprofile erlauben das Senden von Dokumenten als Anhänge oder als Links." +msgstr "" +"Mailprofile sind E-Mailkonfigurationen. Mailprofile erlauben das Senden von " +"Dokumenten als Anhänge oder als Links." #: views.py:237 msgid "No mailing profiles available" @@ -411,3 +445,6 @@ msgstr "Keine Mailprofile vorhanden" #, python-format msgid "Test mailing profile: %s" msgstr "Mailprofil %s testen" + +#~ msgid "%s error log" +#~ msgstr "%s Fehlerprotokoll" diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po index ffdaa09c29..317875e73d 100644 --- a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Ηλεκτρονική ταχυδρόμηση" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Μήνυμα" @@ -43,9 +44,11 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "Διεύθυνση του παραλήπτη. Μπορεί να περιέχει πολλαπλές διευθύνσεις χωρισμένες με κόμμα (,) ή ελληνικό ερωτηματικό (;)" +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"Διεύθυνση του παραλήπτη. Μπορεί να περιέχει πολλαπλές διευθύνσεις χωρισμένες " +"με κόμμα (,) ή ελληνικό ερωτηματικό (;)" #: forms.py:62 forms.py:124 msgid "Email address" @@ -118,7 +121,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Το μήνυμα αυτό περιέχει συνημμένο το έγγραφο: {{document}}\\n\n\n--------\nΑυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" +msgstr "" +"Το μήνυμα αυτό περιέχει συνημμένο το έγγραφο: {{document}}\\n\n" +"\n" +"--------\n" +"Αυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -127,7 +134,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Για να δείτε αυτό το έγγραφο πιέστε τον παρακάτω σύνδεσμο: {{ link }}\n\n--------\n Αυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" +msgstr "" +"Για να δείτε αυτό το έγγραφο πιέστε τον παρακάτω σύνδεσμο: {{ link }}\n" +"\n" +"--------\n" +" Αυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -135,8 +146,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -163,7 +174,10 @@ msgstr "Χρήση TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Αν θα γίνει χρήση του TLS (ασφαλής σύνδεση) κατά την σύνδεση με τον διακομιστή αλληλογραφίας SMTP. Χρησιμοποιείται όταν έχει ζητηθεί ρητά η χρήση σύνδεσης TLS, συνήθως στην θύρα 587." +msgstr "" +"Αν θα γίνει χρήση του TLS (ασφαλής σύνδεση) κατά την σύνδεση με τον " +"διακομιστή αλληλογραφίας SMTP. Χρησιμοποιείται όταν έχει ζητηθεί ρητά η " +"χρήση σύνδεσης TLS, συνήθως στην θύρα 587." #: mailers.py:52 msgid "Use SSL" @@ -175,9 +189,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Αν θα γίνει χρήση ασφαλούς σύνδεσης TLS κατά την σύνδεση με τον διακομιστή αλληλογραφίας SMTP. Στα περισσότερα εγχειρίδια χρήσης αυτός ο τύπος σύνδεσης TLS αναφέρεται ως SSL. Ως επι το πλείστον κάνει χρήση της θύρας 465. Αν συναντήσετε προβλήματα κατά την σύνδεση,δοκιμάστε να ρυθμίσετε ρητή χρήση του πρωτοκόλου TLS. Σημειωτέον ότι οι επιλογές \"Χρήση TLS\" και \"Χρήση SSL\" δεν μπορεύν να χρησιμοποιηθούν ταυτόχρονα, οπότε ενεργοποιήστε μόνο μια." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Αν θα γίνει χρήση ασφαλούς σύνδεσης TLS κατά την σύνδεση με τον διακομιστή " +"αλληλογραφίας SMTP. Στα περισσότερα εγχειρίδια χρήσης αυτός ο τύπος σύνδεσης " +"TLS αναφέρεται ως SSL. Ως επι το πλείστον κάνει χρήση της θύρας 465. Αν " +"συναντήσετε προβλήματα κατά την σύνδεση,δοκιμάστε να ρυθμίσετε ρητή χρήση " +"του πρωτοκόλου TLS. Σημειωτέον ότι οι επιλογές \"Χρήση TLS\" και \"Χρήση SSL" +"\" δεν μπορεύν να χρησιμοποιηθούν ταυτόχρονα, οπότε ενεργοποιήστε μόνο μια." #: mailers.py:64 msgid "Username" @@ -187,7 +207,9 @@ msgstr "Όνομα χρήστη" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Όνομα χρήστη που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αν μείνει κενό, δεν θα γίνει προσπάθεια ταυτοποίησης." +msgstr "" +"Όνομα χρήστη που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αν μείνει κενό, " +"δεν θα γίνει προσπάθεια ταυτοποίησης." #: mailers.py:73 msgid "Password" @@ -196,9 +218,13 @@ msgstr "Κωδικός πρόσβασης" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Κωδικός πρόσβασης που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αυτή η επιλογή χρησιμοποιείται σε συνδιασμό με το όνομα χρήστη για την ταυτοποίηση στον διακομιστή SMTP. Αν οποιοδήποτε από τα δύο πεδία είναι κενό, δεν θα πραγματοποιηθεί ταυτοποίηση. " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Κωδικός πρόσβασης που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αυτή η " +"επιλογή χρησιμοποιείται σε συνδιασμό με το όνομα χρήστη για την ταυτοποίηση " +"στον διακομιστή SMTP. Αν οποιοδήποτε από τα δύο πεδία είναι κενό, δεν θα " +"πραγματοποιηθεί ταυτοποίηση. " #: mailers.py:85 msgid "Django SMTP backend" @@ -232,7 +258,9 @@ msgstr "Ετικέτα" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Αν οριστεί σαν προκαθορισμένο, αυτό το προφίλ θα είναι προ-επιλεγμένο στην φόρμα αποστολής εγγράφου. " +msgstr "" +"Αν οριστεί σαν προκαθορισμένο, αυτό το προφίλ θα είναι προ-επιλεγμένο στην " +"φόρμα αποστολής εγγράφου. " #: models.py:54 msgid "Default" @@ -268,7 +296,8 @@ msgstr "" #: models.py:216 msgid "Test email from Mayan EDMS" -msgstr "Δοκιμαστικό μήνυμα από το Σύστημα Διαχείρισης Ηλεκτρονικών Εγγράφων Mayan" +msgstr "" +"Δοκιμαστικό μήνυμα από το Σύστημα Διαχείρισης Ηλεκτρονικών Εγγράφων Mayan" #: models.py:234 msgid "User mailer log entry" @@ -320,7 +349,9 @@ msgstr "Δεσμός για το έγγραφο: {{document}}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Πρότυπο για την γραμμή θέματος φόρμας μηνύματος για την αποστολή συνδέσμου σε έγγραφο." +msgstr "" +"Πρότυπο για την γραμμή θέματος φόρμας μηνύματος για την αποστολή συνδέσμου " +"σε έγγραφο." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." @@ -392,8 +423,8 @@ msgstr "Τροποποίηση προφίλ ηλεκτρονικού ταχυδ #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s ημερολόγιο καταγραφής" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" @@ -409,3 +440,6 @@ msgstr "" #, python-format msgid "Test mailing profile: %s" msgstr "Δοκιμή προφίλ ηλεκτρονικού ταχυδρομείου: %s" + +#~ msgid "%s error log" +#~ msgstr "%s ημερολόγιο καταγραφής" diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 210f753a7b..fb2ffa3136 100644 --- a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 396fd11f40..49440e11f0 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015 @@ -10,25 +10,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Sistema de correo" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mensaje" @@ -46,9 +47,11 @@ msgstr "Email enviado" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "Dirección de correo electrónico del destinatario. Pueden ser varias direcciones separadas por coma o punto y coma." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"Dirección de correo electrónico del destinatario. Pueden ser varias " +"direcciones separadas por coma o punto y coma." #: forms.py:62 forms.py:124 msgid "Email address" @@ -64,7 +67,9 @@ msgstr "Cuerpo" #: forms.py:70 msgid "The email profile that will be used to send this email." -msgstr "El perfil de correo electrónico que se utilizará para enviar este correo electrónico." +msgstr "" +"El perfil de correo electrónico que se utilizará para enviar este correo " +"electrónico." #: forms.py:71 views.py:238 msgid "Mailing profile" @@ -121,7 +126,13 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Se adjunta a este correo electrónico es el documento: {{ document }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" +msgstr "" +"Se adjunta a este correo electrónico es el documento: {{ document }}\n" +"\n" +"\n" +"--------\n" +"Este correo electrónico ha sido enviado desde %(project_title)s " +"(%(project_website)s)" #: literals.py:13 #, python-format @@ -130,7 +141,13 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" +msgstr "" +"Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n" +"\n" +"\n" +"--------\n" +"Este correo electrónico ha sido enviado desde %(project_title)s " +"(%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -138,9 +155,11 @@ msgstr "Desde" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." -msgstr "La dirección del remitente. Algunos sistemas rechazarán enviar mensajes si este valor no está establecido." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." +msgstr "" +"La dirección del remitente. Algunos sistemas rechazarán enviar mensajes si " +"este valor no está establecido." #: mailers.py:32 msgid "Host" @@ -166,7 +185,9 @@ msgstr "Utilizar TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Si desea utilizar una conexión TLS (segura) al hablar con el servidor SMTP. Se utiliza para conexiones TLS explícitas, generalmente en el puerto 587." +msgstr "" +"Si desea utilizar una conexión TLS (segura) al hablar con el servidor SMTP. " +"Se utiliza para conexiones TLS explícitas, generalmente en el puerto 587." #: mailers.py:52 msgid "Use SSL" @@ -178,9 +199,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Si desea utilizar una conexión implícita TLS (segura) al hablar con el servidor SMTP. En la mayoría de la documentación de correo electrónico, este tipo de conexión TLS se denomina SSL. Generalmente se utiliza en el puerto 465. Si experimenta problemas, consulte la configuración TLS explícita \"Usar TLS\". Tenga en cuenta que \"Usar TLS\" y \"Usar SSL\" son mutuamente excluyentes, por lo que solo debe activar una de esas configuraciones." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Si desea utilizar una conexión implícita TLS (segura) al hablar con el " +"servidor SMTP. En la mayoría de la documentación de correo electrónico, este " +"tipo de conexión TLS se denomina SSL. Generalmente se utiliza en el puerto " +"465. Si experimenta problemas, consulte la configuración TLS explícita " +"\"Usar TLS\". Tenga en cuenta que \"Usar TLS\" y \"Usar SSL\" son mutuamente " +"excluyentes, por lo que solo debe activar una de esas configuraciones." #: mailers.py:64 msgid "Username" @@ -190,7 +217,9 @@ msgstr "Usuario" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Nombre de usuario para usar para el servidor SMTP. Si está vacío, no se intentará la autenticación." +msgstr "" +"Nombre de usuario para usar para el servidor SMTP. Si está vacío, no se " +"intentará la autenticación." #: mailers.py:73 msgid "Password" @@ -199,9 +228,12 @@ msgstr "Contraseña" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Contraseña para usar para el servidor SMTP. Esta configuración se utiliza junto con el nombre de usuario al autenticarse en el servidor SMTP. Si cualquiera de estos ajustes está vacío, no se intentará la autenticación." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Contraseña para usar para el servidor SMTP. Esta configuración se utiliza " +"junto con el nombre de usuario al autenticarse en el servidor SMTP. Si " +"cualquiera de estos ajustes está vacío, no se intentará la autenticación." #: mailers.py:85 msgid "Django SMTP backend" @@ -235,7 +267,9 @@ msgstr "Etiqueta" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Si está predeterminado, este perfil de correo será preseleccionado en el formulario de envío del documento." +msgstr "" +"Si está predeterminado, este perfil de correo será preseleccionado en el " +"formulario de envío del documento." #: models.py:54 msgid "Default" @@ -323,11 +357,15 @@ msgstr "Enlace para el documento: {{ documento }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Plantilla para la línea de asunto del correo electrónico para envío de enlace del documento." +msgstr "" +"Plantilla para la línea de asunto del correo electrónico para envío de " +"enlace del documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "Plantilla para el texto del cuerpo del correo electrónico del enlace del documento. Puede incluir HTML." +msgstr "" +"Plantilla para el texto del cuerpo del correo electrónico del enlace del " +"documento. Puede incluir HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -335,11 +373,15 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Plantilla para la línea de sujeto del correo electrónico de envio de documento." +msgstr "" +"Plantilla para la línea de sujeto del correo electrónico de envio de " +"documento." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." -msgstr "Plantilla para el texto del cuerpo del correo electrónico con documento anejado. Puede incluir HTML." +msgstr "" +"Plantilla para el texto del cuerpo del correo electrónico con documento " +"anejado. Puede incluir HTML." #: validators.py:14 #, python-format @@ -367,12 +409,14 @@ msgstr "Enviar" #: views.py:108 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "%(count)d enlace de documento sometido para entrega por correo electrónico" +msgstr "" +"%(count)d enlace de documento sometido para entrega por correo electrónico" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "%(count)d enlaces de documento sometido para entrega por correo electrónico" +msgstr "" +"%(count)d enlaces de documento sometido para entrega por correo electrónico" #: views.py:119 msgid "New mailing profile backend selection" @@ -395,14 +439,17 @@ msgstr "Editar perfil de publicación: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "Registro de errores para %s" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "Los perfiles de correo son configuraciones de correo electrónico. Los perfiles de correo permiten enviar documentos como archivos adjuntos o como enlaces por correo electrónico." +msgstr "" +"Los perfiles de correo son configuraciones de correo electrónico. Los " +"perfiles de correo permiten enviar documentos como archivos adjuntos o como " +"enlaces por correo electrónico." #: views.py:237 msgid "No mailing profiles available" @@ -412,3 +459,6 @@ msgstr "No hay perfiles de correo disponibles" #, python-format msgid "Test mailing profile: %s" msgstr "Probar perfil de correo: %s" + +#~ msgid "%s error log" +#~ msgstr "Registro de errores para %s" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index 31a83c1646..ba8b530cd5 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "پیام" @@ -44,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -136,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -176,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -197,8 +198,8 @@ msgstr "کلمه عبور" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -393,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 1a0ece5d26..0e3f941288 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -11,25 +11,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Gestionnaire d'envoi" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Date et heure" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Message" @@ -47,9 +48,11 @@ msgstr "Courriel envoyé" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "Adresse électronique du destinataire. Il peut s'agir de plusieurs adresses séparées par une virgule ou un point-virgule." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"Adresse électronique du destinataire. Il peut s'agir de plusieurs adresses " +"séparées par une virgule ou un point-virgule." #: forms.py:62 forms.py:124 msgid "Email address" @@ -65,7 +68,9 @@ msgstr "Corps" #: forms.py:70 msgid "The email profile that will be used to send this email." -msgstr "Le profil de messagerie qui sera utilisé pour envoyer ce courrier électronique." +msgstr "" +"Le profil de messagerie qui sera utilisé pour envoyer ce courrier " +"électronique." #: forms.py:71 views.py:238 msgid "Mailing profile" @@ -122,7 +127,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Attaché à ce courriel , voici le - document: {{ document }}\n\n --------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "" +"Attaché à ce courriel , voici le - document: {{ document }}\n" +"\n" +" --------\n" +" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -131,7 +140,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Pour accéder à ce document cliquer sur le lien suivant: {{ link }}\n\n--------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "" +"Pour accéder à ce document cliquer sur le lien suivant: {{ link }}\n" +"\n" +"--------\n" +" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -139,9 +152,11 @@ msgstr "De" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." -msgstr "L'adresse de l'expéditeur. Certains systèmes refuseront d’envoyer des messages si cette valeur n’est pas définie." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." +msgstr "" +"L'adresse de l'expéditeur. Certains systèmes refuseront d’envoyer des " +"messages si cette valeur n’est pas définie." #: mailers.py:32 msgid "Host" @@ -167,7 +182,10 @@ msgstr "Utiliser TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Faut-li utiliser une connexion TLS (sécurisée) pour dialoguer avec le serveur SMTP. Ce paramètre est utilisé pour les connexions TLS explicites, généralement sur le port 587." +msgstr "" +"Faut-li utiliser une connexion TLS (sécurisée) pour dialoguer avec le " +"serveur SMTP. Ce paramètre est utilisé pour les connexions TLS explicites, " +"généralement sur le port 587." #: mailers.py:52 msgid "Use SSL" @@ -179,9 +197,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Faut-il utiliser une connexion implicite TLS (sécurisée) pour dialoguer avec le serveur SMTP. Dans la plupart des documents électroniques, ce type de connexion TLS est appelé SSL. Il est généralement utilisé sur le port 465. Si vous rencontrez des problèmes, consultez le paramètre TLS explicite \"Utiliser TLS\". Notez que \"Utiliser TLS\" et \"Utiliser SSL\" sont mutuellement exclusifs, donc ne cochez que l'un de ces paramètres." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Faut-il utiliser une connexion implicite TLS (sécurisée) pour dialoguer avec " +"le serveur SMTP. Dans la plupart des documents électroniques, ce type de " +"connexion TLS est appelé SSL. Il est généralement utilisé sur le port 465. " +"Si vous rencontrez des problèmes, consultez le paramètre TLS explicite " +"\"Utiliser TLS\". Notez que \"Utiliser TLS\" et \"Utiliser SSL\" sont " +"mutuellement exclusifs, donc ne cochez que l'un de ces paramètres." #: mailers.py:64 msgid "Username" @@ -191,7 +215,9 @@ msgstr "Identifiant" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Nom d'utilisateur à utiliser pour le serveur SMTP. Si vide, l'authentification ne sera pas tentée." +msgstr "" +"Nom d'utilisateur à utiliser pour le serveur SMTP. Si vide, " +"l'authentification ne sera pas tentée." #: mailers.py:73 msgid "Password" @@ -200,9 +226,13 @@ msgstr "Mot de passe" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Mot de passe à utiliser pour le serveur SMTP. Ce paramètre est utilisé conjointement avec le nom d'utilisateur lors de l'authentification sur le serveur SMTP. Si l'un de ces paramètres est vide, l'authentification ne sera pas tentée." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Mot de passe à utiliser pour le serveur SMTP. Ce paramètre est utilisé " +"conjointement avec le nom d'utilisateur lors de l'authentification sur le " +"serveur SMTP. Si l'un de ces paramètres est vide, l'authentification ne sera " +"pas tentée." #: mailers.py:85 msgid "Django SMTP backend" @@ -236,7 +266,9 @@ msgstr "Libellé" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Si \"Défaut\", ce profil de liste de diffusion sera présélectionné sur le formulaire de diffusion du document." +msgstr "" +"Si \"Défaut\", ce profil de liste de diffusion sera présélectionné sur le " +"formulaire de diffusion du document." #: models.py:54 msgid "Default" @@ -328,7 +360,9 @@ msgstr "Modèle pour le lien du document du courriel dans la ligne du sujet." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "Modèle pour le texte du corps du courriel contenant le lien de document. Peut inclure du HTML." +msgstr "" +"Modèle pour le texte du corps du courriel contenant le lien de document. " +"Peut inclure du HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -340,7 +374,9 @@ msgstr "Modèle pour le sujet du courriel du document." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." -msgstr "Modèle pour le texte du corps du courriel à envoyer avec le document en pièce jointe. Peut inclure du HTML." +msgstr "" +"Modèle pour le texte du corps du courriel à envoyer avec le document en " +"pièce jointe. Peut inclure du HTML." #: validators.py:14 #, python-format @@ -373,7 +409,8 @@ msgstr "%(count)d document lié dans la file d'attente pour envoi par courriel" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "%(count)d documents liés dans la file d'attente pour envoi par courriel" +msgstr "" +"%(count)d documents liés dans la file d'attente pour envoi par courriel" #: views.py:119 msgid "New mailing profile backend selection" @@ -396,8 +433,8 @@ msgstr "Modifier un profile de liste de diffusion %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s journal d'erreur" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" @@ -413,3 +450,6 @@ msgstr "Aucun profil d'envoi de courriels disponible" #, python-format msgid "Test mailing profile: %s" msgstr "Tester le profil de diffusion: %s" + +#~ msgid "%s error log" +#~ msgstr "%s journal d'erreur" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 88212aaf65..95423c7d0a 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Levelező" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Dátum és idő" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Üzenet" @@ -44,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -136,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -176,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -197,8 +198,8 @@ msgstr "Jelszó" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -393,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index a8ff72d519..419c922148 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Tanggal dan waktu" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +197,8 @@ msgstr "Password" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -392,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index c65b7216f7..0559363483 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Posta" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data e ora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Messaggio" @@ -44,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -119,7 +120,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Allegato a questa mail è il documento: {{ document }}\n\n --------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" +msgstr "" +"Allegato a questa mail è il documento: {{ document }}\n" +"\n" +" --------\n" +"Questa mail è stata inviata da %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -128,7 +133,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Per accedere al documento fai click sul seguente link: {{ link }}\n\n--------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" +msgstr "" +"Per accedere al documento fai click sul seguente link: {{ link }}\n" +"\n" +"--------\n" +"Questa mail è stata inviata da %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -136,8 +145,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -176,8 +185,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -197,8 +206,8 @@ msgstr "Password" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -321,7 +330,9 @@ msgstr "Link per il documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Template per l'oggetto del modulo e-mail per l'invio del collegamento al documento." +msgstr "" +"Template per l'oggetto del modulo e-mail per l'invio del collegamento al " +"documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." @@ -393,7 +404,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po index 2215b18fd4..8b5e970c4a 100644 --- a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po @@ -1,32 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:38+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:42 msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Datums un laiks" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Ziņojums" @@ -44,9 +46,11 @@ msgstr "Epasts nosūtīts" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "Saņēmēja e-pasta adrese. Var būt vairākas adreses, kas atdalītas ar komatu vai semikolu." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"Saņēmēja e-pasta adrese. Var būt vairākas adreses, kas atdalītas ar komatu " +"vai semikolu." #: forms.py:62 forms.py:124 msgid "Email address" @@ -119,7 +123,9 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Šim e-pastam pievienots dokuments: {{document}} -------- Šis e-pasts ir nosūtīts no %(project_title)s (%(project_website)s)" +msgstr "" +"Šim e-pastam pievienots dokuments: {{document}} -------- Šis e-pasts ir " +"nosūtīts no %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -128,7 +134,9 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Lai piekļūtu šim dokumentam, noklikšķiniet uz šādas saites: {{link}} -------- Šis e-pasts ir nosūtīts no %(project_title)s (%(project_website)s)" +msgstr "" +"Lai piekļūtu šim dokumentam, noklikšķiniet uz šādas saites: {{link}} " +"-------- Šis e-pasts ir nosūtīts no %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -136,9 +144,11 @@ msgstr "No" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." -msgstr "Sūtītāja adrese. Dažas sistēmas atsakās sūtīt ziņojumus, ja šī vērtība nav iestatīta." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." +msgstr "" +"Sūtītāja adrese. Dažas sistēmas atsakās sūtīt ziņojumus, ja šī vērtība nav " +"iestatīta." #: mailers.py:32 msgid "Host" @@ -164,7 +174,9 @@ msgstr "Izmantojiet TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti portā 587." +msgstr "" +"Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek " +"izmantots skaidriem TLS savienojumiem, parasti portā 587." #: mailers.py:52 msgid "Use SSL" @@ -176,9 +188,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu "Lietot TLS". Ņemiet vērā, ka "Lietot TLS" un "Lietot SSL" ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. " +"Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par " +"SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS " +"iestatījumu "Lietot TLS". Ņemiet vērā, ka "Lietot TLS" " +"un "Lietot SSL" ir savstarpēji izslēdzoši, tāpēc tikai vienu no " +"šiem iestatījumiem iestatiet uz True." #: mailers.py:64 msgid "Username" @@ -197,9 +215,12 @@ msgstr "Parole" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "SMTP servera lietojama parole. Šis iestatījums tiek izmantots kopā ar lietotājvārdu, autentificējot to SMTP serverī. Ja kāds no šiem iestatījumiem ir tukšs, autentifikācija netiks mēģināta." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"SMTP servera lietojama parole. Šis iestatījums tiek izmantots kopā ar " +"lietotājvārdu, autentificējot to SMTP serverī. Ja kāds no šiem iestatījumiem " +"ir tukšs, autentifikācija netiks mēģināta." #: mailers.py:85 msgid "Django SMTP backend" @@ -233,7 +254,9 @@ msgstr "Etiķete" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Noklusējuma gadījumā šis pasta profils tiks iepriekš atlasīts dokumentu sūtīšanas veidlapā." +msgstr "" +"Noklusējuma gadījumā šis pasta profils tiks iepriekš atlasīts dokumentu " +"sūtīšanas veidlapā." #: models.py:54 msgid "Default" @@ -393,14 +416,16 @@ msgstr "Rediģēt pasta profilu: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s kļūdu žurnāls" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "Pasta profili ir e-pasta konfigurācijas. Pasta profili ļauj sūtīt dokumentus kā pielikumus vai kā saites pa e-pastu." +msgstr "" +"Pasta profili ir e-pasta konfigurācijas. Pasta profili ļauj sūtīt dokumentus " +"kā pielikumus vai kā saites pa e-pastu." #: views.py:237 msgid "No mailing profiles available" @@ -410,3 +435,6 @@ msgstr "Nav pieejams neviens pasta profils" #, python-format msgid "Test mailing profile: %s" msgstr "Testa pasta profils: %s" + +#~ msgid "%s error log" +#~ msgstr "%s kļūdu žurnāls" diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po index f9dc859f91..e38622f7fa 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Bericht" @@ -44,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -136,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -176,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -197,8 +198,8 @@ msgstr "Wachtwoord" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -393,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index fe57c3b332..fff900e350 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2016 @@ -10,25 +10,28 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Wiadomość" @@ -46,8 +49,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -138,8 +141,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -178,8 +181,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -190,7 +193,9 @@ msgstr "Nazwa użytkownika" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Nazwa użytkownika dla serwera SMTP. Jeśli nie podano, próba uwierzytelnienia nie zostanie podjęta." +msgstr "" +"Nazwa użytkownika dla serwera SMTP. Jeśli nie podano, próba uwierzytelnienia " +"nie zostanie podjęta." #: mailers.py:73 msgid "Password" @@ -199,9 +204,12 @@ msgstr "Hasło" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Hasło dla serwera SMTP. W połączeniu z nazwą użytkownika używane jest podczas uwierzytelnienia do serwera SMTP. Jeśli nie podano hasła lub nazwy użytkownika, próba uwierzytelnienia nie zostanie podjęta." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Hasło dla serwera SMTP. W połączeniu z nazwą użytkownika używane jest " +"podczas uwierzytelnienia do serwera SMTP. Jeśli nie podano hasła lub nazwy " +"użytkownika, próba uwierzytelnienia nie zostanie podjęta." #: mailers.py:85 msgid "Django SMTP backend" @@ -395,7 +403,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 51b3f99e2f..1f05eb9481 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +197,8 @@ msgstr "Senha" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -320,7 +321,9 @@ msgstr "Hiperligação para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Modelo para a linha do assunto do formulário de mensagem da hiperligação de documento." +msgstr "" +"Modelo para a linha do assunto do formulário de mensagem da hiperligação de " +"documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." @@ -392,7 +395,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po index 31db39a1a9..58c53d78df 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,25 +10,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Envio de emails" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data e hora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mensagem" @@ -46,8 +47,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -121,7 +122,10 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Se anexa a este documento de e-mail: {{ document }}\n--------\nEste e-mail foi enviado por %(project_title)s (%(project_website)s)" +msgstr "" +"Se anexa a este documento de e-mail: {{ document }}\n" +"--------\n" +"Este e-mail foi enviado por %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -130,7 +134,10 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Para acessar este documento clique na ligação a seguir: {{ link }}\n--------\nEste email foi enviado por %(project_title)s (%(project_website)s)" +msgstr "" +"Para acessar este documento clique na ligação a seguir: {{ link }}\n" +"--------\n" +"Este email foi enviado por %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -138,8 +145,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -178,8 +185,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -199,8 +206,8 @@ msgstr "Senha" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -323,7 +330,8 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Modelo para a linha de assunto do e-mail para envio do link do documento." +msgstr "" +"Modelo para a linha de assunto do e-mail para envio do link do documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." @@ -395,7 +403,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po index 47aaefa70c..4f5a1b2231 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -1,32 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-29 11:26+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:42 msgid "Mailer" msgstr "Poștă electronică" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data și ora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mesaj" @@ -44,9 +46,11 @@ msgstr "Email trimis" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "Adresa de e-mail a destinatarului. Pot fi mai multe adrese separate prin virgulă sau punct și virgulă." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"Adresa de e-mail a destinatarului. Pot fi mai multe adrese separate prin " +"virgulă sau punct și virgulă." #: forms.py:62 forms.py:124 msgid "Email address" @@ -119,7 +123,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Atașat la acest e-mail este documentul: {{document}}\n\n --------\n Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" +msgstr "" +"Atașat la acest e-mail este documentul: {{document}}\n" +"\n" +" --------\n" +" Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -128,7 +136,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Pentru a accesa acest document, faceți clic pe următorul link: {{link}}\n\n--------\n Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" +msgstr "" +"Pentru a accesa acest document, faceți clic pe următorul link: {{link}}\n" +"\n" +"--------\n" +" Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -136,9 +148,11 @@ msgstr "De la" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." -msgstr "Adresa expeditorului. Unele sisteme vor refuza să trimită mesaje dacă această valoare nu este setată." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." +msgstr "" +"Adresa expeditorului. Unele sisteme vor refuza să trimită mesaje dacă " +"această valoare nu este setată." #: mailers.py:32 msgid "Host" @@ -164,7 +178,10 @@ msgstr "Utilizați TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în general pe portul 587." +msgstr "" +"Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu " +"serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în " +"general pe portul 587." #: mailers.py:52 msgid "Use SSL" @@ -176,9 +193,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de conexiune TLS este denumit SSL. Este utilizat în general la portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS \"Utilizați TLS\". Rețineți că \"Utilizați TLS\" și \"Utilizați SSL\" se exclud reciproc, deci setați numai una dintre aceste setări la True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți " +"cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de " +"conexiune TLS este denumit SSL. Este utilizat în general la portul 465. Dacă " +"întâmpinați probleme, consultați setarea explicită TLS \"Utilizați TLS\". " +"Rețineți că \"Utilizați TLS\" și \"Utilizați SSL\" se exclud reciproc, deci " +"setați numai una dintre aceste setări la True." #: mailers.py:64 msgid "Username" @@ -188,7 +211,9 @@ msgstr "Nume de utilizator" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Nume de utilizator de folosit pentru serverul SMTP. Dacă este gol, nu se va încerca autentificarea." +msgstr "" +"Nume de utilizator de folosit pentru serverul SMTP. Dacă este gol, nu se va " +"încerca autentificarea." #: mailers.py:73 msgid "Password" @@ -197,9 +222,12 @@ msgstr "Parola" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "Parolă de utilizat pentru serverul SMTP. Această setare este utilizată împreună cu numele de utilizator când se autentifică pe serverul SMTP. Dacă una dintre aceste setări este goală, autentificarea nu va fi încercată." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"Parolă de utilizat pentru serverul SMTP. Această setare este utilizată " +"împreună cu numele de utilizator când se autentifică pe serverul SMTP. Dacă " +"una dintre aceste setări este goală, autentificarea nu va fi încercată." #: mailers.py:85 msgid "Django SMTP backend" @@ -233,7 +261,9 @@ msgstr "Etichetă" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Dacă este implicit, acest profil de poștă electronică va fi pre-selectat pe formularul de trimitere a documentelor." +msgstr "" +"Dacă este implicit, acest profil de poștă electronică va fi pre-selectat pe " +"formularul de trimitere a documentelor." #: models.py:54 msgid "Default" @@ -325,7 +355,9 @@ msgstr "Șablon pentru subiectul liniei de e-mail a documentului." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "Șablon pentru corpul formularul de e-mail pentru link-ul documentului. Poate include HTML." +msgstr "" +"Șablon pentru corpul formularul de e-mail pentru link-ul documentului. Poate " +"include HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -351,12 +383,16 @@ msgstr "Jurnal de eroare de trimitere a documentelor" #: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" -msgstr "%(count)d document a fost pus în coada de așteptare pentru livrarea prin e-mail" +msgstr "" +"%(count)d document a fost pus în coada de așteptare pentru livrarea prin e-" +"mail" #: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" -msgstr "%(count)d documente au fost puse în coada de așteptare pentru livrarea prin e-mail" +msgstr "" +"%(count)d documente au fost puse în coada de așteptare pentru livrarea prin " +"e-mail" #: views.py:62 msgid "Send" @@ -365,12 +401,15 @@ msgstr "Trimite" #: views.py:108 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "%(count)d link de document a fost pus în coadă pentru livrarea prin e-mail" +msgstr "" +"%(count)d link de document a fost pus în coadă pentru livrarea prin e-mail" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "%(count)d linkuri de documente au fost puse în coadă pentru livrarea prin e-mail" +msgstr "" +"%(count)d linkuri de documente au fost puse în coadă pentru livrarea prin e-" +"mail" #: views.py:119 msgid "New mailing profile backend selection" @@ -393,14 +432,16 @@ msgstr "Editați profilul de poștă electronică: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s jurnal de erori" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "Profilurile de corespondență sunt configurații de e-mail. Ele permit trimiterea documentelor ca atașamente sau ca legături prin e-mail." +msgstr "" +"Profilurile de corespondență sunt configurații de e-mail. Ele permit " +"trimiterea documentelor ca atașamente sau ca legături prin e-mail." #: views.py:237 msgid "No mailing profiles available" @@ -410,3 +451,6 @@ msgstr "Nu sunt disponibile profiluri de poștă electronică" #, python-format msgid "Test mailing profile: %s" msgstr "Testare profil de poștă electronică: %s" + +#~ msgid "%s error log" +#~ msgstr "%s jurnal de erori" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index 5b349ee498..766fc00210 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po @@ -1,32 +1,35 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:42 msgid "Mailer" msgstr "Электронный почтальон" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Дата и время" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Сообщение" @@ -44,8 +47,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -136,8 +139,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -176,8 +179,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -197,8 +200,8 @@ msgstr "Пароль" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -393,7 +396,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po index 23e5aa0e45..41b0610297 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +177,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +198,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -392,7 +394,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po index 27a8ea85b3..8404e7ebcd 100644 --- a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,25 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 msgid "Mailer" msgstr "Posta gönderici" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mesaj" @@ -45,9 +46,11 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." -msgstr "Alıcının e-posta adresi. Virgülle veya noktalı virgülle ayrılmış birden çok adres olabilir." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." +msgstr "" +"Alıcının e-posta adresi. Virgülle veya noktalı virgülle ayrılmış birden çok " +"adres olabilir." #: forms.py:62 forms.py:124 msgid "Email address" @@ -120,7 +123,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Bu e-postaya şu belge eklenmiştir: {{document}}\n\n --------\n Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." +msgstr "" +"Bu e-postaya şu belge eklenmiştir: {{document}}\n" +"\n" +" --------\n" +" Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." #: literals.py:13 #, python-format @@ -129,7 +136,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Bu belgeye erişmek için şu bağlantıyı tıklayın: {{link}}\n\n--------\n Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." +msgstr "" +"Bu belgeye erişmek için şu bağlantıyı tıklayın: {{link}}\n" +"\n" +"--------\n" +" Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." #: mailers.py:23 mailers.py:112 msgid "From" @@ -137,8 +148,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -165,7 +176,10 @@ msgstr "TLS kullanın" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "SMTP sunucusuyla konuşurken bir TLS (güvenli) bağlantı kullanıp kullanmamak. Bu, genellikle 587 numaralı bağlantı noktasındaki açık TLS bağlantıları için kullanılır." +msgstr "" +"SMTP sunucusuyla konuşurken bir TLS (güvenli) bağlantı kullanıp kullanmamak. " +"Bu, genellikle 587 numaralı bağlantı noktasındaki açık TLS bağlantıları için " +"kullanılır." #: mailers.py:52 msgid "Use SSL" @@ -177,9 +191,15 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "SMTP sunucusuyla konuşurken kapalı bir TLS (güvenli) bağlantı kullanıp kullanmamak. Çoğu e-posta belgelerinde bu TLS bağlantı tipine SSL adı verilir. Genellikle port 465'te kullanılır. Sorun yaşıyorsanız açık TLS ayarı \"TLS Kullan\" konusuna bakın. \"Use TLS\" (TLS Kullan) ve \"Use SSL\" (SSL Kullan) seçenekleri karşılıklı olarak hariçtir, bu nedenle bu ayarlardan birini yalnızca True olarak ayarlayın." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"SMTP sunucusuyla konuşurken kapalı bir TLS (güvenli) bağlantı kullanıp " +"kullanmamak. Çoğu e-posta belgelerinde bu TLS bağlantı tipine SSL adı " +"verilir. Genellikle port 465'te kullanılır. Sorun yaşıyorsanız açık TLS " +"ayarı \"TLS Kullan\" konusuna bakın. \"Use TLS\" (TLS Kullan) ve \"Use SSL" +"\" (SSL Kullan) seçenekleri karşılıklı olarak hariçtir, bu nedenle bu " +"ayarlardan birini yalnızca True olarak ayarlayın." #: mailers.py:64 msgid "Username" @@ -189,7 +209,9 @@ msgstr "Kullanıcı adı" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "SMTP sunucusu için kullanılacak kullanıcı adı. Boş ise, kimlik doğrulama denenmeyecektir." +msgstr "" +"SMTP sunucusu için kullanılacak kullanıcı adı. Boş ise, kimlik doğrulama " +"denenmeyecektir." #: mailers.py:73 msgid "Password" @@ -198,9 +220,12 @@ msgstr "Parola" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "SMTP sunucusu için kullanılacak şifre. Bu ayar, SMTP sunucusuna kimlik doğrulaması yaparken kullanıcı adı ile birlikte kullanılır. Bu ayarlardan herhangi biri boşsa, kimlik doğrulama denenmeyecektir." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"SMTP sunucusu için kullanılacak şifre. Bu ayar, SMTP sunucusuna kimlik " +"doğrulaması yaparken kullanıcı adı ile birlikte kullanılır. Bu ayarlardan " +"herhangi biri boşsa, kimlik doğrulama denenmeyecektir." #: mailers.py:85 msgid "Django SMTP backend" @@ -234,7 +259,9 @@ msgstr "Etiket" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "Varsayılan olarak, bu posta profili, belge posta formunda önceden seçilecektir." +msgstr "" +"Varsayılan olarak, bu posta profili, belge posta formunda önceden " +"seçilecektir." #: models.py:54 msgid "Default" @@ -394,8 +421,8 @@ msgstr "Posta profilini düzenleme: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s hata günlüğü" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" @@ -411,3 +438,6 @@ msgstr "" #, python-format msgid "Test mailing profile: %s" msgstr "Test posta profili: %s" + +#~ msgid "%s error log" +#~ msgstr "%s hata günlüğü" diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po index 184e8ed07e..83dfcff188 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -135,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -175,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." msgstr "" #: mailers.py:64 @@ -196,8 +197,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -392,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po index 5809e8515f..05b0f21580 100644 --- a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-21 05:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 msgid "Mailer" msgstr "邮件程序" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "日期和时间" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "信息" @@ -44,8 +45,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma" -" or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma " +"or semicolon." msgstr "收件人的电子邮件地址。可以是以逗号或分号分隔的多个地址。" #: forms.py:62 forms.py:124 @@ -119,7 +120,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "该电子邮件附有以下文件:{{document}}\n\n --------\n 此电子邮件地址是%(project_title)s(%(project_website)s)" +msgstr "" +"该电子邮件附有以下文件:{{document}}\n" +"\n" +" --------\n" +" 此电子邮件地址是%(project_title)s(%(project_website)s)" #: literals.py:13 #, python-format @@ -128,7 +133,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "要访问此文档,请单击以下链接:{{link}}\n\n--------\n 此电子邮件地址是%(project_title)s(%(project_website)s)" +msgstr "" +"要访问此文档,请单击以下链接:{{link}}\n" +"\n" +"--------\n" +" 此电子邮件地址是%(project_title)s(%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -136,8 +145,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value" -" is not set." +"The sender's address. Some system will refuse to send messages if this value " +"is not set." msgstr "" #: mailers.py:32 @@ -164,7 +173,9 @@ msgstr "使用TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587上。" +msgstr "" +"与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587" +"上。" #: mailers.py:52 msgid "Use SSL" @@ -176,9 +187,12 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" -" True." -msgstr "与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置中“使用TLS”。请注意,“使用TLS”和“使用SSL”是互斥的,因此只将其中一个设置为True。" +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" +"与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型" +"的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置中“使用" +"TLS”。请注意,“使用TLS”和“使用SSL”是互斥的,因此只将其中一个设置为True。" #: mailers.py:64 msgid "Username" @@ -197,9 +211,11 @@ msgstr "密码" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these" -" settings is empty, authentication won't be attempted." -msgstr "用于SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与用户名一起使用。如果这些设置中的任何一个为空,则不会尝试进行身份验证。" +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" +"用于SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与用户名一起使用。" +"如果这些设置中的任何一个为空,则不会尝试进行身份验证。" #: mailers.py:85 msgid "Django SMTP backend" @@ -393,8 +409,8 @@ msgstr "编辑邮件配置文件:%s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s错误日志" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" @@ -410,3 +426,6 @@ msgstr "没有可用的邮件配置文件" #, python-format msgid "Test mailing profile: %s" msgstr "测试邮件配置文件:%s" + +#~ msgid "%s error log" +#~ msgstr "%s错误日志" diff --git a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po index db6d59269f..e6ca94d174 100644 --- a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po index 73e6d31500..bbff963c9e 100644 --- a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po index 02637f2761..e9cc85cf46 100644 --- a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po index 81aab45722..be1122fec6 100644 --- a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po index dbe07ff0c5..75e394dadd 100644 --- a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po index 43b2fa0c69..bc30b10225 100644 --- a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Bjoern Kowarsch , 2018 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 @@ -122,4 +123,6 @@ msgstr "Statistik \"%s\" für die Aktualisierung vorsehen?" #: views.py:94 #, python-format msgid "Statistic \"%s\" queued successfully for update." -msgstr "Die Statistik \"%s\" wurde erfolgreich in die Aktualisierungswarteschlange eingereiht." +msgstr "" +"Die Statistik \"%s\" wurde erfolgreich in die Aktualisierungswarteschlange " +"eingereiht." diff --git a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po index f63bee5ee7..0c2ad3edd8 100644 --- a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po index 28ede3127f..701df887e3 100644 --- a/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po index 81a4ec3b70..71b989d83d 100644 --- a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 06:32+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po index 340237a22e..35513b2f5e 100644 --- a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po index b9a37d7a8a..e12027d561 100644 --- a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 13:30+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po index 0d55b7bdec..80307eccaa 100644 --- a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 # molnars , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po index 56c23e7d17..af47e238cb 100644 --- a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po index 6927855fb8..aeb032e091 100644 --- a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po index bba21660f2..1412a74981 100644 --- a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:50+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po index 9def4adefa..ee2c5dc745 100644 --- a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po index 1f9b5ef5a8..b6a32799be 100644 --- a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2017 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po index ea7190f938..f78827bf9c 100644 --- a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po index 72700547aa..cf6b23c643 100644 --- a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Rogerio Falcone , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po index 5f2b413b40..2900861654 100644 --- a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" @@ -120,4 +122,5 @@ msgstr "Trimite în coada de statistici \"%s\" pentru a fi actualizată?" #: views.py:94 #, python-format msgid "Statistic \"%s\" queued successfully for update." -msgstr "Statistica \"%s\" a fost așezată cu succes la coada pentru actualizare." +msgstr "" +"Statistica \"%s\" a fost așezată cu succes la coada pentru actualizare." diff --git a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po index 70de1aef73..59ee6fc2da 100644 --- a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 # Sergey Glita , 2013 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po index 2a33ec8f09..34c52911e7 100644 --- a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po index f2ac13527b..193e30a118 100644 --- a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po index ce9ecb3004..59435370d3 100644 --- a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po index 4f10965544..5dd96d84c7 100644 --- a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 594fa688d4..181cc5a2aa 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -181,8 +183,8 @@ msgstr "Default" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,8 +203,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -344,15 +345,16 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." +msgstr "" +"نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." #: views.py:218 #, python-format @@ -401,9 +403,8 @@ msgstr "تم تعديل البيانات الوصفية للوثيقة %s بنج #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index 5d43bb7eaf..efc7037ba4 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -181,8 +182,8 @@ msgstr "По подразбиране" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,8 +202,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -340,8 +340,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -393,9 +392,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po index f53dca99ac..79256bc6d0 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -182,8 +184,8 @@ msgstr "default" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -194,7 +196,9 @@ msgstr "Pogledaj gore" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Validator će odbiti unos podataka ako uneta vrednost ne odgovara očekivanom formatu." +msgstr "" +"Validator će odbiti unos podataka ako uneta vrednost ne odgovara očekivanom " +"formatu." #: models.py:80 search.py:28 msgid "Validator" @@ -202,9 +206,10 @@ msgstr "Validator" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Analizator će reformatirati vrijednost koja se unese u skladu sa očekivanim formatom." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Analizator će reformatirati vrijednost koja se unese u skladu sa očekivanim " +"formatom." #: models.py:86 search.py:31 msgid "Parser" @@ -337,14 +342,16 @@ msgstr "Dodajte metatatske tipove za dokument: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Greška pri dodavanju metapodataka tipa \"%(metadata_type)s\" u dokument: %(document)s; %(exception)s" +msgstr "" +"Greška pri dodavanju metapodataka tipa \"%(metadata_type)s\" u dokument: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." #: views.py:204 #, python-format @@ -387,7 +394,8 @@ msgstr "Izmjeni metadata za dokument: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Greška u editovanju metapodataka za dokument: %(document)s; %(exception)s." +msgstr "" +"Greška u editovanju metapodataka za dokument: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -396,9 +404,8 @@ msgstr "Metadata za dokument %s uspješno izmjenjen." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -437,14 +444,18 @@ msgstr "Udaljite tipove metapodataka iz dokumenta: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Uspješno uklonite metapodatke tipa \"%(metadata_type)s\" iz dokumenta: %(document)s." +msgstr "" +"Uspješno uklonite metapodatke tipa \"%(metadata_type)s\" iz dokumenta: " +"%(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Greška u uklanjanju metapodataka tipa \"%(metadata_type)s\" iz dokumenta: %(document)s; %(exception)s" +msgstr "" +"Greška u uklanjanju metapodataka tipa \"%(metadata_type)s\" iz dokumenta: " +"%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po index d7770ab843..00ba62170f 100644 --- a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -180,8 +182,8 @@ msgstr "" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -200,8 +202,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -341,8 +342,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -396,9 +396,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po index 0884fde29d..908aa1e630 100644 --- a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -180,8 +181,8 @@ msgstr "Standard" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -200,8 +201,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -339,8 +339,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -392,9 +391,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po index 46332ad7b6..fbd5d07115 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -171,13 +172,18 @@ msgstr "Bearbeiten" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "Name, der von anderen Programmteilen zur Referenzierung auf diesen Metadatentyp verwendet wird. Verwenden Sie keine in Python reservierte Wörter oder Leerzeichen." +msgstr "" +"Name, der von anderen Programmteilen zur Referenzierung auf diesen " +"Metadatentyp verwendet wird. Verwenden Sie keine in Python reservierte " +"Wörter oder Leerzeichen." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Vorlage zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Vorlage zur Generierung eingeben. Django's Standard-Vorlagen-Sprache " +"benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -186,9 +192,12 @@ msgstr "Standard" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." -msgstr "Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." +msgstr "" +"Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte " +"Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" #: models.py:73 search.py:25 msgid "Lookup" @@ -198,7 +207,9 @@ msgstr "Suche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem geforderten Format nicht entspricht." +msgstr "" +"Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem " +"geforderten Format nicht entspricht." #: models.py:80 search.py:28 msgid "Validator" @@ -206,9 +217,10 @@ msgstr "Validierer" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Der Parser wird den eingegebenen Wert so reformatieren, dass er dem geforderten Format entspricht." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Der Parser wird den eingegebenen Wert so reformatieren, dass er dem " +"geforderten Format entspricht." #: models.py:86 search.py:31 msgid "Parser" @@ -228,7 +240,9 @@ msgstr "Typ" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "Der aktuelle Wert, der in dem Metadatentypfeld für das Dokument gespeichert wird." +msgstr "" +"Der aktuelle Wert, der in dem Metadatentypfeld für das Dokument gespeichert " +"wird." #: models.py:217 models.py:218 msgid "Document metadata" @@ -340,20 +354,24 @@ msgstr "Metadatentypen hinzufügen zu Dokument: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument " +"%(document)s: %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument " "%(document)s." -msgstr "Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s." +msgstr "" +"Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s." #: views.py:218 #, python-format @@ -369,7 +387,9 @@ msgstr "Metadaten für %(count)d Dokumente bearbeitet" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "Fügen Sie Metadatentype für diesen Dokumententyp hinzu und weisen Sie ihnen entsprechende Werte zu." +msgstr "" +"Fügen Sie Metadatentype für diesen Dokumententyp hinzu und weisen Sie ihnen " +"entsprechende Werte zu." #: views.py:309 msgid "There is no metadata to edit" @@ -389,7 +409,9 @@ msgstr "Metadaten des Dokuments %s bearbeiten" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: %(exception)s." +msgstr "" +"Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: " +"%(exception)s." #: views.py:392 #, python-format @@ -398,10 +420,12 @@ msgstr "Metadaten des Dokuments %s erfolgreich bearbeitet." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." -msgstr "Fügen Sie Metadatentype für diesen Dokumententyp hinzu, um sie zu individuellen Dokumenten dieses Typs hinzufügen zu können. Sobald sie individuellen Dokumenten zugeordnet sind, lassen sich ihre Werte eintragen." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." +msgstr "" +"Fügen Sie Metadatentype für diesen Dokumententyp hinzu, um sie zu " +"individuellen Dokumenten dieses Typs hinzufügen zu können. Sobald sie " +"individuellen Dokumenten zugeordnet sind, lassen sich ihre Werte eintragen." #: views.py:430 msgid "This document doesn't have any metadata" @@ -438,14 +462,18 @@ msgstr "Metadatentypen von Dokument %s entfernen" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument %(document)s." +msgstr "" +"Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument " +"%(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von " +"Dokument %(document)s: %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -468,7 +496,12 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "Metadatentypen sind benutzerdefinierte Eigenschaften, die mit Werten versehen werden können. Nach der Erstellung müssen sie Dokumententypen als optional oder erforderlich zugewiesen werden. Ein erforderlicher Metadatentyp wird das Hochladen von Dokumenten sperren, bis ein Wert dafür eingetragen wurde." +msgstr "" +"Metadatentypen sind benutzerdefinierte Eigenschaften, die mit Werten " +"versehen werden können. Nach der Erstellung müssen sie Dokumententypen als " +"optional oder erforderlich zugewiesen werden. Ein erforderlicher " +"Metadatentyp wird das Hochladen von Dokumenten sperren, bis ein Wert dafür " +"eingetragen wurde." #: views.py:655 msgid "There are no metadata types" @@ -486,7 +519,8 @@ msgstr "Beziehungen erfolgreich aktualisiert" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "Erstellen Sie Metadatentype um sie diesem Dokumententyp zuordnen zu können." +msgstr "" +"Erstellen Sie Metadatentype um sie diesem Dokumententyp zuordnen zu können." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po index da895fbb06..6b0ff20d86 100644 --- a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -180,8 +181,8 @@ msgstr "Προκαθορισμένο" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -200,8 +201,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -339,8 +339,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -392,9 +391,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index 3759b4bba8..e7ccec1d95 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index 94a71fb1de..c130ce2d9f 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:27+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -169,13 +170,18 @@ msgstr "Editar" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "Nombre utilizado por otras aplicaciones para hacer referencia a este tipo de metadatos. No utilice palabras reservadas de python, o espacios." +msgstr "" +"Nombre utilizado por otras aplicaciones para hacer referencia a este tipo de " +"metadatos. No utilice palabras reservadas de python, o espacios." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas " +"predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/" +"templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -184,9 +190,12 @@ msgstr "Por defecto" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." -msgstr "Ingrese una plantilla para renderizar. Debe dar como resultado una cadena delimitada por comas. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." +msgstr "" +"Ingrese una plantilla para renderizar. Debe dar como resultado una cadena " +"delimitada por comas. Utilice el lenguaje de plantillas predeterminado de " +"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -196,7 +205,9 @@ msgstr "Lista de opciones" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "El validador rechazará la entrada de datos si el valor introducido no se ajusta al formato esperado." +msgstr "" +"El validador rechazará la entrada de datos si el valor introducido no se " +"ajusta al formato esperado." #: models.py:80 search.py:28 msgid "Validator" @@ -204,9 +215,10 @@ msgstr "Validador" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "El analizador volverá a formatear el valor introducido para ajustarse al formato esperado." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"El analizador volverá a formatear el valor introducido para ajustarse al " +"formato esperado." #: models.py:86 search.py:31 msgid "Parser" @@ -226,7 +238,8 @@ msgstr "Tipo" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "El valor real almacenado en el campo de tipo de metadatos para el documento." +msgstr "" +"El valor real almacenado en el campo de tipo de metadatos para el documento." #: models.py:217 models.py:218 msgid "Document metadata" @@ -338,20 +351,25 @@ msgstr "Añadir tipos de metadatos al documento: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" +msgstr "" +"Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo de metadatos: %(metadata_type)s añadido con éxito al documento " "%(document)s." -msgstr "Tipo de metadatos: %(metadata_type)s añadido con éxito al documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo de metadatos: %(metadata_type)s ya presente en el documento %(document)s." +msgstr "" +"Tipo de metadatos: %(metadata_type)s ya presente en el documento " +"%(document)s." #: views.py:218 #, python-format @@ -367,7 +385,9 @@ msgstr "Solicitud de edición de metadatos realizada en %(count)d documentos" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "Agregue los tipos de metadatos disponibles para el tipo de este documento y asígneles los valores correspondientes." +msgstr "" +"Agregue los tipos de metadatos disponibles para el tipo de este documento y " +"asígneles los valores correspondientes." #: views.py:309 msgid "There is no metadata to edit" @@ -396,10 +416,12 @@ msgstr "Metadatos del documento %s editados con éxito." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." -msgstr "Agregue tipos de metadatos del tipo de este documento para poder agregarlos a documentos individuales. Una vez agregado al documento individual, puede editar sus valores." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." +msgstr "" +"Agregue tipos de metadatos del tipo de este documento para poder agregarlos " +"a documentos individuales. Una vez agregado al documento individual, puede " +"editar sus valores." #: views.py:430 msgid "This document doesn't have any metadata" @@ -413,12 +435,14 @@ msgstr "Meta datos para el documento: %s" #: views.py:443 #, python-format msgid "Metadata remove request performed on %(count)d document" -msgstr "Solicitud de eliminación de metadatos realizada en %(count)d documento " +msgstr "" +"Solicitud de eliminación de metadatos realizada en %(count)d documento " #: views.py:446 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "Solicitud de eliminación de metadatos realizada en %(count)d documentos" +msgstr "" +"Solicitud de eliminación de metadatos realizada en %(count)d documentos" #: views.py:508 msgid "Remove metadata types from the document" @@ -436,14 +460,18 @@ msgstr "Eliminar los tipos de metadatos del documento: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del documento: %(document)s." +msgstr "" +"Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del " +"documento: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: %(document)s; %(exception)s" +msgstr "" +"Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: " +"%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -466,7 +494,13 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "Los tipos de metadatos son propiedades definidas por los usuarios a los que se les pueden asignar valores. Una vez creados, deben estar asociados a los tipos de documento, ya sea como opcional o requerido, para cada uno. Establecer un tipo de metadato como requerido para un tipo de documento bloqueará la carga de documentos de ese tipo hasta que se proporcione un valor de metadato." +msgstr "" +"Los tipos de metadatos son propiedades definidas por los usuarios a los que " +"se les pueden asignar valores. Una vez creados, deben estar asociados a los " +"tipos de documento, ya sea como opcional o requerido, para cada uno. " +"Establecer un tipo de metadato como requerido para un tipo de documento " +"bloqueará la carga de documentos de ese tipo hasta que se proporcione un " +"valor de metadato." #: views.py:655 msgid "There are no metadata types" @@ -484,7 +518,8 @@ msgstr "Relaciones actualizadas con éxito" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "Cree tipos de metadatos para poder asociarlos a este tipo de documento." +msgstr "" +"Cree tipos de metadatos para poder asociarlos a este tipo de documento." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 786a170479..6e2ac656c0 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +183,8 @@ msgstr "پیش فرض" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -194,7 +195,9 @@ msgstr "بررسی و یا پیدا کردن" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "اعتبار سنج ورودی داده را رد خواهد کرد اگر مقدار وارد شده با فرمت مورد نظر مطابقت نداشته باشد." +msgstr "" +"اعتبار سنج ورودی داده را رد خواهد کرد اگر مقدار وارد شده با فرمت مورد نظر " +"مطابقت نداشته باشد." #: models.py:80 search.py:28 msgid "Validator" @@ -202,9 +205,10 @@ msgstr "تأیید اعتبار" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "تجزیه کننده مقدار ورودی را برای مطابقت با فرمت مورد انتظار بازنویسی خواهد کرد." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"تجزیه کننده مقدار ورودی را برای مطابقت با فرمت مورد انتظار بازنویسی خواهد " +"کرد." #: models.py:86 search.py:31 msgid "Parser" @@ -336,13 +340,14 @@ msgstr "اضافه کردن انواع فراداده به سند: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; %(exception)s" +msgstr "" +"نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; " +"%(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "جذف موفق متادیتای ندع : %(metadata_type)s برای سند : %(document)s." #: views.py:204 @@ -394,9 +399,8 @@ msgstr "متادیتای سند %s با موفقیت ویرایش شد." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -441,7 +445,9 @@ msgstr "حذف موفق متادیتای نوع \"%(metadata_type)s\" از سن msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; %(exception)s" +msgstr "" +"خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; " +"%(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index da12be471a..b4d61fc4e4 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2016-2017 # Frédéric Sheedy , 2019 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -172,13 +173,17 @@ msgstr "Modifier" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "Nom utilisé par d'autres applications pour faire référence à ce type de métadonnées. N'utilisez pas de mots réservés Python, ni d'espace." +msgstr "" +"Nom utilisé par d'autres applications pour faire référence à ce type de " +"métadonnées. N'utilisez pas de mots réservés Python, ni d'espace." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de Django (https://docs.djangoproject.com/fr/1.11.11/ref/templates/builtins/)" +msgstr "" +"Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de " +"Django (https://docs.djangoproject.com/fr/1.11.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -187,9 +192,12 @@ msgstr "Par défaut" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." +msgstr "" +"Entrez un modèle à afficher. Doit avoir pour résultat une chaîne délimitée " +"par des virgules. Utilisez le langage par défaut de Django pour les modèles " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." -msgstr "Entrez un modèle à afficher. Doit avoir pour résultat une chaîne délimitée par des virgules. Utilisez le langage par défaut de Django pour les modèles (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -199,7 +207,9 @@ msgstr "Rechercher" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Le système de validation rejettera les données saisies si elles ne sont pas conformes au format attendu." +msgstr "" +"Le système de validation rejettera les données saisies si elles ne sont pas " +"conformes au format attendu." #: models.py:80 search.py:28 msgid "Validator" @@ -207,9 +217,10 @@ msgstr "Validateur" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme au format attendu." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme " +"au format attendu." #: models.py:86 search.py:31 msgid "Parser" @@ -229,7 +240,9 @@ msgstr "Type" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "La valeur actuellement enregistrée dans le champ de type de métadonnées du document." +msgstr "" +"La valeur actuellement enregistrée dans le champ de type de métadonnées du " +"document." #: models.py:217 models.py:218 msgid "Document metadata" @@ -341,36 +354,45 @@ msgstr "Ajouter des types de métadonnées au document : %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au document: %(document)s; %(exception)s" +msgstr "" +"Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au " +"document: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Le type de métadonnées : %(metadata_type)s a été ajouté avec succès au document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Le type de métadonnées : %(metadata_type)s a été ajouté avec succès au " +"document %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Le type de métadonnées : %(metadata_type)s est déjà présent dans le document %(document)s." +msgstr "" +"Le type de métadonnées : %(metadata_type)s est déjà présent dans le document " +"%(document)s." #: views.py:218 #, python-format msgid "Metadata edit request performed on %(count)d document" -msgstr "La demande d'édition de métadonnées a été effectuée sur %(count)d document" +msgstr "" +"La demande d'édition de métadonnées a été effectuée sur %(count)d document" #: views.py:221 #, python-format msgid "Metadata edit request performed on %(count)d documents" -msgstr "La demande d'édition de métadonnées a été effectuée sur %(count)d documents" +msgstr "" +"La demande d'édition de métadonnées a été effectuée sur %(count)d documents" #: views.py:306 msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "Ajoutez les types de métadonnées disponibles pour le type de ce document et attribuez-leur les valeurs correspondantes." +msgstr "" +"Ajoutez les types de métadonnées disponibles pour le type de ce document et " +"attribuez-leur les valeurs correspondantes." #: views.py:309 msgid "There is no metadata to edit" @@ -390,7 +412,9 @@ msgstr "Modifier les métadonnées pour le document: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Erreur lors de la modification des métadonnées du document %(document)s; %(exception)s." +msgstr "" +"Erreur lors de la modification des métadonnées du document %(document)s; " +"%(exception)s." #: views.py:392 #, python-format @@ -399,9 +423,8 @@ msgstr "Métadonnées pour le document %s modifiées avec succès." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -421,7 +444,8 @@ msgstr "Demande de suppression de métadonnées effectuée sur %(count)d documen #: views.py:446 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "Demande de suppression de métadonnées effectuée sur %(count)d documents" +msgstr "" +"Demande de suppression de métadonnées effectuée sur %(count)d documents" #: views.py:508 msgid "Remove metadata types from the document" @@ -439,14 +463,18 @@ msgstr "Retirer les types de métadonnées du document : %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Type de métadonnées retiré avec succès \"%(metadata_type)s\" pour le document : %(document)s." +msgstr "" +"Type de métadonnées retiré avec succès \"%(metadata_type)s\" pour le " +"document : %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erreur lors du retrait du type de métadonnées \"%(metadata_type)s\" pour le document : %(document)s; %(exception)s" +msgstr "" +"Erreur lors du retrait du type de métadonnées \"%(metadata_type)s\" pour le " +"document : %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index 00a62d3e40..ce5f09f84e 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -181,8 +182,8 @@ msgstr "Alapéretelmezett" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,8 +202,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -340,8 +340,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -393,9 +392,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 40ef7bfed0..7b8e4d8993 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-14 11:19+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -180,8 +181,8 @@ msgstr "Bawaan" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -200,8 +201,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -338,8 +338,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -390,9 +389,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 64e1101cc9..730f77ce31 100644 --- a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011-2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +183,8 @@ msgstr "Default" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -194,7 +195,9 @@ msgstr "Ricerca" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Il validatore rifiuterà l'inserimento se il valore immesso non è conforme al formato richiesto." +msgstr "" +"Il validatore rifiuterà l'inserimento se il valore immesso non è conforme al " +"formato richiesto." #: models.py:80 search.py:28 msgid "Validator" @@ -202,9 +205,10 @@ msgstr "Validatore" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Il parser riformatta il valore immesso per renderlo conforme al formato voluto." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Il parser riformatta il valore immesso per renderlo conforme al formato " +"voluto." #: models.py:86 search.py:31 msgid "Parser" @@ -336,20 +340,24 @@ msgstr "" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Errore aggiungendo il tipo metadato \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" +msgstr "" +"Errore aggiungendo il tipo metadato \"%(metadata_type)s\" al documento: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo metadata: %(metadata_type)s aggiunto con successo al documento " "%(document)s." -msgstr "Tipo metadata: %(metadata_type)s aggiunto con successo al documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." +msgstr "" +"Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." #: views.py:218 #, python-format @@ -385,7 +393,8 @@ msgstr "Modifica metadata per il documento: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Errore modifica metadato per il documento: %(document)s; %(exception)s." +msgstr "" +"Errore modifica metadato per il documento: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -394,9 +403,8 @@ msgstr "Metadata per il documento %s modificato con successo." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -434,14 +442,18 @@ msgstr "" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Rimosso con successo il tipo metadato \"%(metadata_type)s\" dal documento: %(document)s." +msgstr "" +"Rimosso con successo il tipo metadato \"%(metadata_type)s\" dal documento: " +"%(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Errore rimuovendo il tipo metadato \"%(metadata_type)s\" dal documento: %(document)s; %(exception)s" +msgstr "" +"Errore rimuovendo il tipo metadato \"%(metadata_type)s\" dal documento: " +"%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po index ab0c7a53f3..c9cc4f3d58 100644 --- a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:40+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -166,13 +168,17 @@ msgstr "Rediģēt" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "Nosaukums, ko citas lietotnes izmanto, lai norādītu uz šo metadatu tipu. Neizmantojiet rezervētos vārdus, kas ir rezervēti, vai atstarpes." +msgstr "" +"Nosaukums, ko citas lietotnes izmanto, lai norādītu uz šo metadatu tipu. " +"Neizmantojiet rezervētos vārdus, kas ir rezervēti, vai atstarpes." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/lv/1.11/ref/templates/builtins/)" +msgstr "" +"Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes " +"valodu (https://docs.djangoproject.com/lv/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -181,9 +187,12 @@ msgstr "Noklusējums" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." -msgstr "Ievadiet veidni, kas jāpiešķir. Jāizveido ar komatu atdalīta virkne. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." +msgstr "" +"Ievadiet veidni, kas jāpiešķir. Jāizveido ar komatu atdalīta virkne. " +"Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject." +"com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -193,7 +202,9 @@ msgstr "Meklēt" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Validators noraidīs datu ievadīšanu, ja ievadītā vērtība neatbilst paredzētajam formātam." +msgstr "" +"Validators noraidīs datu ievadīšanu, ja ievadītā vērtība neatbilst " +"paredzētajam formātam." #: models.py:80 search.py:28 msgid "Validator" @@ -201,9 +212,9 @@ msgstr "Validators" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Parsētājs pārveidos ievadīto vērtību, lai tas atbilstu paredzētajam formātam." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Parsētājs pārveidos ievadīto vērtību, lai tas atbilstu paredzētajam formātam." #: models.py:86 search.py:31 msgid "Parser" @@ -336,20 +347,24 @@ msgstr "Pievienot metadatu veidus dokumentam: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Kļūda, pievienojot dokumentam "%(metadata_type)s" metadatu tipu: %(document)s; %(exception)s" +msgstr "" +"Kļūda, pievienojot dokumentam "%(metadata_type)s" metadatu tipu: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Metadatu veids: %(metadata_type)s veiksmīgi pievienots dokumentam " "%(document)s." -msgstr "Metadatu veids: %(metadata_type)s veiksmīgi pievienots dokumentam %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Metadatu veids: %(metadata_type)s jau ir iekļauts dokumentā %(document)s." +msgstr "" +"Metadatu veids: %(metadata_type)s jau ir iekļauts dokumentā %(document)s." #: views.py:218 #, python-format @@ -365,7 +380,9 @@ msgstr "Metadatu rediģēšanas pieprasījums, kas veikts dokumentos %(count)d" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "Pievienojiet šī dokumenta tipam pieejamos metadatu veidus un piešķiriet tiem atbilstošās vērtības." +msgstr "" +"Pievienojiet šī dokumenta tipam pieejamos metadatu veidus un piešķiriet tiem " +"atbilstošās vērtības." #: views.py:309 msgid "There is no metadata to edit" @@ -386,7 +403,8 @@ msgstr "Dokumenta metadatu rediģēšana: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Rediģējot dokumenta metadatus, radās kļūda: %(document)s; %(exception)s." +msgstr "" +"Rediģējot dokumenta metadatus, radās kļūda: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -395,10 +413,12 @@ msgstr "Dokumenta %s veiksmīgi rediģēti metadati." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." -msgstr "Pievienot metadatus, kas ieraksta šī dokumenta tipu, lai tos varētu pievienot atsevišķiem dokumentiem. Pēc pievienošanas atsevišķam dokumentam varat rediģēt savas vērtības." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." +msgstr "" +"Pievienot metadatus, kas ieraksta šī dokumenta tipu, lai tos varētu " +"pievienot atsevišķiem dokumentiem. Pēc pievienošanas atsevišķam dokumentam " +"varat rediģēt savas vērtības." #: views.py:430 msgid "This document doesn't have any metadata" @@ -436,14 +456,18 @@ msgstr "Noņemt metadatu veidus no dokumenta: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Veiksmīgi noņemt metadatu tipu "%(metadata_type)s" no dokumenta: %(document)s." +msgstr "" +"Veiksmīgi noņemt metadatu tipu "%(metadata_type)s" no dokumenta: " +"%(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Atceļot metadatu tipu "%(metadata_type)s" no dokumenta, radās kļūda: %(document)s; %(exception)s" +msgstr "" +"Atceļot metadatu tipu "%(metadata_type)s" no dokumenta, radās " +"kļūda: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -466,7 +490,12 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "Metadatu veidi ir lietotāju definētas īpašības, kurām var piešķirt vērtības. Kad tas ir izveidots, katram no tiem ir jābūt saistītam ar dokumenta tipiem, vai nu kā izvēles, vai nepieciešamajiem. Metadatu tipa iestatīšana, kas nepieciešama dokumenta tipam, bloķēs šāda veida dokumentu augšupielādi, līdz tiks nodrošināta metadatu vērtība." +msgstr "" +"Metadatu veidi ir lietotāju definētas īpašības, kurām var piešķirt vērtības. " +"Kad tas ir izveidots, katram no tiem ir jābūt saistītam ar dokumenta tipiem, " +"vai nu kā izvēles, vai nepieciešamajiem. Metadatu tipa iestatīšana, kas " +"nepieciešama dokumenta tipam, bloķēs šāda veida dokumentu augšupielādi, līdz " +"tiks nodrošināta metadatu vērtība." #: views.py:655 msgid "There are no metadata types" @@ -484,7 +513,8 @@ msgstr "Attiecības tika veiksmīgi atjauninātas" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "Izveidojiet metadatu veidus, lai tos varētu saistīt ar šo dokumenta veidu." +msgstr "" +"Izveidojiet metadatu veidus, lai tos varētu saistīt ar šo dokumenta veidu." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po index 85a000d040..e327eabf49 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +183,8 @@ msgstr "Verstekwaarde" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -202,8 +203,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -341,8 +341,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -394,9 +393,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index 615cb0eea8..c2746b7a8a 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012 @@ -11,15 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -184,8 +187,8 @@ msgstr "Domyślny" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -196,7 +199,9 @@ msgstr "Wyszukanie" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym formatem." +msgstr "" +"Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym " +"formatem." #: models.py:80 search.py:28 msgid "Validator" @@ -204,8 +209,7 @@ msgstr "Walidator" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "Parser zmieni format podanej wartości na format oczekiwany." #: models.py:86 search.py:31 @@ -340,20 +344,23 @@ msgstr "Dodaj typy metadanych do dokumentu: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Błąd dodawania typu metadanych \"%(metadata_type)s\" do dokumentu: %(document)s; %(exception)s" +msgstr "" +"Błąd dodawania typu metadanych \"%(metadata_type)s\" do dokumentu: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Typ metadanych: %(metadata_type)s dodano pomyślnie do dokumentu %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Typ metadanych: %(metadata_type)s dodano pomyślnie do dokumentu %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Typ metadanych: %(metadata_type)s już istnieje w dokumencie %(document)s." +msgstr "" +"Typ metadanych: %(metadata_type)s już istnieje w dokumencie %(document)s." #: views.py:218 #, python-format @@ -391,7 +398,8 @@ msgstr "Edytuj metadane dokumentu: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." +msgstr "" +"Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -400,9 +408,8 @@ msgstr "Metadane dla dokumentu %s zostały pomyślnie zmodyfikowane." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index b8980954cd..97cf1165ab 100644 --- a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -183,8 +184,8 @@ msgstr "Padrão" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -203,8 +204,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -342,15 +342,17 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento " "%(document)s." -msgstr "Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo de metadados: %(metadata_type)s já existe no documento %(document)s ." +msgstr "" +"Tipo de metadados: %(metadata_type)s já existe no documento %(document)s ." #: views.py:218 #, python-format @@ -395,9 +397,8 @@ msgstr "Metadados do documento %s alterados com sucesso." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po index 957be8c5fa..00c7ed64ea 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2013 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -176,7 +177,9 @@ msgstr "" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Insira um modelo para renderizar. Use a linguagem padrão de modelos do Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "" +"Insira um modelo para renderizar. Use a linguagem padrão de modelos do " +"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:63 search.py:22 msgid "Default" @@ -185,8 +188,8 @@ msgstr "Padrão" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -197,7 +200,9 @@ msgstr "Tipo de metadados não é válido, para o tipo de documento" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "O validador rejeitará a entrada de dados se o valor inserido não estiver de acordo com o formato esperado." +msgstr "" +"O validador rejeitará a entrada de dados se o valor inserido não estiver de " +"acordo com o formato esperado." #: models.py:80 search.py:28 msgid "Validator" @@ -205,9 +210,10 @@ msgstr "Validador" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "O analisador irá reformatar o valor inserido para estar em conformidade com o formato esperado." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"O analisador irá reformatar o valor inserido para estar em conformidade com " +"o formato esperado." #: models.py:86 search.py:31 msgid "Parser" @@ -339,20 +345,24 @@ msgstr "Adicionar tipos de metadados ao documento: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: %(document)s; %(exception)s" +msgstr "" +"Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento " "%(document)s." -msgstr "Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." +msgstr "" +"Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." #: views.py:218 #, python-format @@ -397,9 +407,8 @@ msgstr "Metadados para o documento %s alterados com sucesso." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -437,14 +446,18 @@ msgstr "Remover tipos de metadados do documento: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do documento: %(document)s." +msgstr "" +"Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do " +"documento: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: %(document)s; %(exception)s" +msgstr "" +"Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: " +"%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po index 61a957332f..d0cfa685b0 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -105,7 +107,8 @@ msgstr "\"%s\" este necesar pentru acest tip de document." #: forms.py:122 msgid "Metadata types to be added to the selected documents." -msgstr "Tipurile de metadate care urmează să fie adăugate la documentele selectate." +msgstr "" +"Tipurile de metadate care urmează să fie adăugate la documentele selectate." #: forms.py:148 views.py:506 msgid "Remove" @@ -167,13 +170,18 @@ msgstr "Editează" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "Numele utilizat de alte aplicații pentru a face referire la acest tip de metadate. Nu utilizați cuvinte sau spații rezervate Python." +msgstr "" +"Numele utilizat de alte aplicații pentru a face referire la acest tip de " +"metadate. Nu utilizați cuvinte sau spații rezervate Python." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating " +"implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/" +"builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -182,9 +190,12 @@ msgstr "Iniţial" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." +msgstr "" +"Introduceți un șablon pentru a fi afișat. Trebuie să rezulte un șir " +"delimitat cu virgulă. Utilizați limbajul templating implicit al lui Django " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." -msgstr "Introduceți un șablon pentru a fi afișat. Trebuie să rezulte un șir delimitat cu virgulă. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -194,7 +205,9 @@ msgstr "Căutare" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Validatorul va respinge introducerea datelor dacă valoarea introdusă nu este conformă cu formatul așteptat." +msgstr "" +"Validatorul va respinge introducerea datelor dacă valoarea introdusă nu este " +"conformă cu formatul așteptat." #: models.py:80 search.py:28 msgid "Validator" @@ -202,9 +215,10 @@ msgstr "Validator" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Parserul va reformata valoarea introdusă pentru a se conforma formatului așteptat." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Parserul va reformata valoarea introdusă pentru a se conforma formatului " +"așteptat." #: models.py:86 search.py:31 msgid "Parser" @@ -300,7 +314,8 @@ msgstr "Cheia primară a tipului de metadate care urmează să fie adăugată." #: serializers.py:132 msgid "Primary key of the metadata type to be added to the document." -msgstr "Cheia primară a tipului de metadate care urmează să fie adăugată în document." +msgstr "" +"Cheia primară a tipului de metadate care urmează să fie adăugată în document." #: views.py:51 #, python-format @@ -337,20 +352,25 @@ msgstr "Adăugați tipuri de metadate în documentul: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Eroare la adăugarea tipului de metadate \"%(metadata_type)s\" în documentul: %(document)s; %(exception)s" +msgstr "" +"Eroare la adăugarea tipului de metadate \"%(metadata_type)s\" în documentul: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipul de metadate:%(metadata_type)s a fost adăugat cu succes la documentul " "%(document)s." -msgstr "Tipul de metadate:%(metadata_type)s a fost adăugat cu succes la documentul %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipul de metadate:%(metadata_type)s e deja prezent în documentul %(document)s." +msgstr "" +"Tipul de metadate:%(metadata_type)s e deja prezent în documentul " +"%(document)s." #: views.py:218 #, python-format @@ -366,7 +386,9 @@ msgstr "Cererea de editare de metadate efectuată pe %(count)ddocumente" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "Adăugați tipuri de metadate disponibile pentru tipul acestui document și atribuiți-le valorile corespunzătoare." +msgstr "" +"Adăugați tipuri de metadate disponibile pentru tipul acestui document și " +"atribuiți-le valorile corespunzătoare." #: views.py:309 msgid "There is no metadata to edit" @@ -387,7 +409,8 @@ msgstr "Editați metadate pentru document:% s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Eroare la editarea metadatelor pentru document: %(document)s; %(exception)s." +msgstr "" +"Eroare la editarea metadatelor pentru document: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -396,10 +419,12 @@ msgstr "Metadatele pentru documentul %s au fost editate cu succes." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." -msgstr "Adăugați tipuri de metadate pentru acest tip de document pentru a le putea adăuga la documente individuale. După ce ați adăugat la un document individual, puteți să le modificați valorile." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." +msgstr "" +"Adăugați tipuri de metadate pentru acest tip de document pentru a le putea " +"adăuga la documente individuale. După ce ați adăugat la un document " +"individual, puteți să le modificați valorile." #: views.py:430 msgid "This document doesn't have any metadata" @@ -437,14 +462,18 @@ msgstr "Eliminați tipurile de metadate din documentul: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Ttipul de metadate \"%(metadata_type)s\" a fost șters cu succes din documentul: %(document)s." +msgstr "" +"Ttipul de metadate \"%(metadata_type)s\" a fost șters cu succes din " +"documentul: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Eroare la eliminarea tipului de metadate \"%(metadata_type)s\" din documentul: %(document)s; %(exception)s" +msgstr "" +"Eroare la eliminarea tipului de metadate \"%(metadata_type)s\" din " +"documentul: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -467,7 +496,12 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "Tipurile de metadate sunt proprietăți definite de utilizator cărora le pot fi atribuite valori. Odată create, ele trebuie să fie asociate tipurilor de documente, fie ele opționale sau necesare, pentru fiecare. Setarea unui tip de metadate conform cerințelor pentru un tip de document va bloca încărcarea documentelor de acest tip până la furnizarea unei valori de metadate." +msgstr "" +"Tipurile de metadate sunt proprietăți definite de utilizator cărora le pot " +"fi atribuite valori. Odată create, ele trebuie să fie asociate tipurilor de " +"documente, fie ele opționale sau necesare, pentru fiecare. Setarea unui tip " +"de metadate conform cerințelor pentru un tip de document va bloca încărcarea " +"documentelor de acest tip până la furnizarea unei valori de metadate." #: views.py:655 msgid "There are no metadata types" @@ -485,7 +519,8 @@ msgstr "Relațiile au fost actualizate cu succes" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "Creați tipuri de metadate pentru a le putea asocia cu acest tip de document." +msgstr "" +"Creați tipuri de metadate pentru a le putea asocia cu acest tip de document." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index 76083890d4..7c4858968f 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -181,8 +184,8 @@ msgstr "Умолчание" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,9 +204,10 @@ msgstr "Валидатор" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Введённое значение будет переформатировано парсером так, чтобы удовлетворять требованиям формата." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Введённое значение будет переформатировано парсером так, чтобы удовлетворять " +"требованиям формата." #: models.py:86 search.py:31 msgid "Parser" @@ -337,14 +341,16 @@ msgstr "" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Ошибка добавления метаданных типа %(metadata_type)s к документу: %(document)s; %(exception)s" +msgstr "" +"Ошибка добавления метаданных типа %(metadata_type)s к документу: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." #: views.py:204 #, python-format @@ -388,7 +394,8 @@ msgstr "Редактировать метаданные документа:%s." #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Ошибка при редактировании метаданных документа: %(document)s; %(exception)s." +msgstr "" +"Ошибка при редактировании метаданных документа: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -397,9 +404,8 @@ msgstr "Метаданные для документов %s изменены." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -439,14 +445,18 @@ msgstr "" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Успешно удалён тип метаданных \"%(metadata_type)s\" из документа %(document)s." +msgstr "" +"Успешно удалён тип метаданных \"%(metadata_type)s\" из документа " +"%(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Ошибка удаления метаданных типа \"%(metadata_type)s\" от документа: %(document)s; %(exception)s" +msgstr "" +"Ошибка удаления метаданных типа \"%(metadata_type)s\" от документа: " +"%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po index ad3fa1dade..c7b1ff2afc 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -180,8 +182,8 @@ msgstr "" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -200,8 +202,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -341,8 +342,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -396,9 +396,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po index ca75f24a78..effcbb471b 100644 --- a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +183,8 @@ msgstr "Varsayılan" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -194,7 +195,9 @@ msgstr "Yukarı Bak" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Girilen değer beklenen biçime uymuyorsa, doğrulayıcı veri girişi reddedecektir." +msgstr "" +"Girilen değer beklenen biçime uymuyorsa, doğrulayıcı veri girişi " +"reddedecektir." #: models.py:80 search.py:28 msgid "Validator" @@ -202,9 +205,10 @@ msgstr "Doğrulayıcı" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Ayrıştırıcı, girilen değeri beklenen biçimde uyacak şekilde yeniden biçimlendirir." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Ayrıştırıcı, girilen değeri beklenen biçimde uyacak şekilde yeniden " +"biçimlendirir." #: models.py:86 search.py:31 msgid "Parser" @@ -336,14 +340,16 @@ msgstr "Belgeye meta veri türleri ekleyin: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Belgeye \"%(metadata_type)s\" meta veri türü eklenirken hata oluştu: %(document)s; %(exception)s" +msgstr "" +"Belgeye \"%(metadata_type)s\" meta veri türü eklenirken hata oluştu: " +"%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Meta veri türü: %(metadata_type)s belgeye başarıyla eklendi %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Meta veri türü: %(metadata_type)s belgeye başarıyla eklendi %(document)s." #: views.py:204 #, python-format @@ -385,7 +391,8 @@ msgstr "Dokümanın meta verilerini düzenleme: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Dokümanın meta verilerini düzenleme hatası: %(document)s; %(exception)s." +msgstr "" +"Dokümanın meta verilerini düzenleme hatası: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -394,9 +401,8 @@ msgstr "%s dokümanı için meta veri başarıyla düzenlendi." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 @@ -434,14 +440,18 @@ msgstr "Metadaki veri türlerini belgeden kaldırın: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "\"%(metadata_type)s\" meta veri türünü belgeden başarıyla kaldırın: %(document)s." +msgstr "" +"\"%(metadata_type)s\" meta veri türünü belgeden başarıyla kaldırın: " +"%(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "\"%(metadata_type)s\" meta veri türünü belgeden kaldırma hatası: %(document)s; %(exception)s" +msgstr "" +"\"%(metadata_type)s\" meta veri türünü belgeden kaldırma hatası: " +"%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po index 7e17d27686..368c9d0fc0 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -181,8 +182,8 @@ msgstr "Mặc định" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,8 +202,7 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:86 search.py:31 @@ -339,8 +339,7 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:204 @@ -391,9 +390,8 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po index 2d9983c019..11ec0d5885 100644 --- a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -172,7 +173,9 @@ msgstr "其他应用程序用于引用此元数据类型的名称。不要使用 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" +"输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/" +"en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -181,9 +184,11 @@ msgstr "默认" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." -msgstr "输入要渲染的模板。必须是以逗号分隔的字符串。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)。" +"Django's default templating language (https://docs.djangoproject.com/en/1.11/" +"ref/templates/builtins/)." +msgstr "" +"输入要渲染的模板。必须是以逗号分隔的字符串。使用Django的默认模板语言(https://" +"docs.djangoproject.com/en/1.11/ref/templates/builtins/)。" #: models.py:73 search.py:25 msgid "Lookup" @@ -201,8 +206,7 @@ msgstr "验证器" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "解析器将重新格式化输入的值以符合预期的格式。" #: models.py:86 search.py:31 @@ -334,13 +338,13 @@ msgstr "将元数据类型添加到文档:%s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "将元数据类型“%(metadata_type)s”添加到文档时出错:%(document)s; %(exception)s" +msgstr "" +"将元数据类型“%(metadata_type)s”添加到文档时出错:%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "元数据类型:%(metadata_type)s已成功添加到文档%(document)s。" #: views.py:204 @@ -391,10 +395,11 @@ msgstr "文档%s的元数据已成功编辑。" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual" -" documents. Once added to individual document, you can then edit their " -"values." -msgstr "添加元数据类型至此文档的类型,以便能够将它们添加到单个文档中。一旦添加到单个文档,您就可以编辑它们的值。" +"Add metadata types this document's type to be able to add them to individual " +"documents. Once added to individual document, you can then edit their values." +msgstr "" +"添加元数据类型至此文档的类型,以便能够将它们添加到单个文档中。一旦添加到单个" +"文档,您就可以编辑它们的值。" #: views.py:430 msgid "This document doesn't have any metadata" @@ -437,7 +442,8 @@ msgstr "从文档:%(document)s中成功删除元数据类型“%(metadata_type)s msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "从文档中删除元数据类型“%(metadata_type)s”时出错:%(document)s; %(exception)s" +msgstr "" +"从文档中删除元数据类型“%(metadata_type)s”时出错:%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -460,7 +466,10 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "元数据类型是可以为其分配值的用户定义属性。创建后,它们必须与文档类型相关联,可以是每个文档类型的可选项或必需项。设置元数据类型作为文档类型的必需项将阻止上传该类型的文档,直到提供元数据值。" +msgstr "" +"元数据类型是可以为其分配值的用户定义属性。创建后,它们必须与文档类型相关联," +"可以是每个文档类型的可选项或必需项。设置元数据类型作为文档类型的必需项将阻止" +"上传该类型的文档,直到提供元数据值。" #: views.py:655 msgid "There are no metadata types" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index 1cc60cf140..e91c9758a8 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index f8b5269097..84dac05ad7 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po index 6381002d6d..aa870e35c1 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-08-09 10:54+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po index e6d2d03d26..e84b76bf9a 100644 --- a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po index b7415446e4..56c628309e 100644 --- a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po index 3b5852665c..8b61b0f6a1 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Spiegelung" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden soll." +msgstr "" +"Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden " +"soll." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt zwischengespeichert werden soll." +msgstr "" +"Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt " +"zwischengespeichert werden soll." diff --git a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po index 2c0acf59fd..77607cda8a 100644 --- a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-01-07 14:00+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -23,8 +24,12 @@ msgstr "" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός εγγράφου." +msgstr "" +"Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός " +"εγγράφου." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός κόμβου ευρετηρίου." +msgstr "" +"Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός " +"κόμβου ευρετηρίου." diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index a43cdf3ef6..63682ac0a6 100644 --- a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index 197926a7b6..ecdb2efac3 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Reflejado" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un documento." +msgstr "" +"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " +"búsqueda de acceso a un documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un nodo de índice." +msgstr "" +"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " +"búsqueda de acceso a un nodo de índice." diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index e32e5bcd4c..e263faed5d 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-03-12 14:24+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 68afc9d49d..ea4a519f29 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Thierry Schott , 2016 # Yves Dubois , 2018 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-04-11 12:04+0000\n" "Last-Translator: Yves Dubois \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 @@ -25,8 +26,10 @@ msgstr "Duplication" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Temps en secondes de rétention en cache du chemin d'accès à un document." +msgstr "" +"Temps en secondes de rétention en cache du chemin d'accès à un document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Temps en seconde de rétention en cache du chemin d'accès à un nœud d'index." +msgstr "" +"Temps en seconde de rétention en cache du chemin d'accès à un nœud d'index." diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index 9ff3b97f17..bf620ba7c8 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index 7dab037b68..ab17598056 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index 8c70dce5e2..22d6df4f21 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -25,8 +26,11 @@ msgstr "Mirroring " #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del documento." +msgstr "" +"Tempo in secondi per mettere in cache il percorso di ricerca del documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del nodo indice.." +msgstr "" +"Tempo in secondi per mettere in cache il percorso di ricerca del nodo " +"indice.." diff --git a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po index d9508e997f..8ada388143 100644 --- a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:41+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po index 3678df243b..dc6c557f4c 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index 17b5888702..1caaf9109d 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index 068f6cd501..a01ab03a1c 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po index ec63839d08..879375db89 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Espelhamento" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Tempo em segundos durante o qual se armazenará no cache a rota de busca de acesso a um documento." +msgstr "" +"Tempo em segundos durante o qual se armazenará no cache a rota de busca de " +"acesso a um documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Tempo em segundos durante o qual se armazenará em cache a rota de busca de acesso a um nó de índice." +msgstr "" +"Tempo em segundos durante o qual se armazenará em cache a rota de busca de " +"acesso a um nó de índice." diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po index dc54d9b76e..f364638547 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-15 11:18+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:16 settings.py:7 msgid "Mirroring" @@ -24,8 +26,11 @@ msgstr "Oglindire" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Timp în secunde pentru păstrarea în cache a unei căutări de traseu la un document." +msgstr "" +"Timp în secunde pentru păstrarea în cache a unei căutări de traseu la un " +"document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Timp în secunde pentru păstrarea în cache a unei căutări de index la un nod." +msgstr "" +"Timp în secunde pentru păstrarea în cache a unei căutări de index la un nod." diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index cdb9e40631..a553728c32 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po index 7f2478674d..5a57d0749a 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po index ffa4c36371..d7dc3109a3 100644 --- a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2017-09-22 21:28+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 @@ -28,4 +29,5 @@ msgstr "Bir belgenin yolunu önbelleklemek için gereken saniye cinsinden süre. #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Bir dizin düğümünün yolunu önbelleklemek için gereken saniye cinsinden süre." +msgstr "" +"Bir dizin düğümünün yolunu önbelleklemek için gereken saniye cinsinden süre." diff --git a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po index a4a9de9731..7d3fe82ee1 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po index 0617ff0ab9..481c81dd8e 100644 --- a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-24 02:58+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index 1fccd09019..5f858e6d8e 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-16 22:54+0000\n" "Last-Translator: Yaman Sanobar \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index 5c14d6afbf..ca5d0c3638 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po index 17c30a1955..73c8db5d6a 100644 --- a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po index ab855e3a26..9b588ed306 100644 --- a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-17 19:32+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po index 24601ebee0..245c24ec06 100644 --- a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-12 14:13+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po index 3b23fe7752..7e582fa82e 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2016 # Mathias Behrle , 2018 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-16 15:26+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -117,7 +118,10 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "Nachrichten werden bei der Anmeldung angezeigt. Sie können dies nutzen, um Informationen zu Ihrem Unternehmen, Ankündigungen oder Nutzungsrichtlinien anzuzeigen. " +msgstr "" +"Nachrichten werden bei der Anmeldung angezeigt. Sie können dies nutzen, um " +"Informationen zu Ihrem Unternehmen, Ankündigungen oder Nutzungsrichtlinien " +"anzuzeigen. " #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po index cd4603f0cd..524d1c49a0 100644 --- a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po index 95b77a1b75..0e7ff0fe7a 100644 --- a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index 3ea998136d..584470af70 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016,2018-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-14 03:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -60,7 +61,8 @@ msgstr "Habilitado" #: models.py:27 msgid "Date and time after which this message will be displayed." -msgstr "Fecha y hora después de la cual este mensaje comenzara a ser desplegado." +msgstr "" +"Fecha y hora después de la cual este mensaje comenzara a ser desplegado." #: models.py:28 msgid "Start date time" @@ -113,7 +115,10 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "Los mensajes se muestran en la vista de inicio de sesión. Puede usar mensajes para recopilar información acerca de su organzación, anuncios o pautas de uso para sus usuarios." +msgstr "" +"Los mensajes se muestran en la vista de inicio de sesión. Puede usar " +"mensajes para recopilar información acerca de su organzación, anuncios o " +"pautas de uso para sus usuarios." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index 56eae551ca..38b1256167 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index 1a0fa326c1..12f3861f08 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Frédéric Sheedy , 2019 # Frédéric Sheedy , 2019 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-05 03:48+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -114,7 +115,10 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "Les messages sont affichés dans la page de connexion. Vous pouvez utiliser les messages pour transmettre des informations à propos de votre organisation, des annonces ou des lignes directrices pour vos utilisateurs." +msgstr "" +"Les messages sont affichés dans la page de connexion. Vous pouvez utiliser " +"les messages pour transmettre des informations à propos de votre " +"organisation, des annonces ou des lignes directrices pour vos utilisateurs." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 11635956e8..c22a5eae0e 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index ce8f4a09c4..8fb560c1c6 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-12 17:43+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index d574bd00f6..e7cfa23c2c 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po index 7dd1f8b246..479501b358 100644 --- a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:38+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" @@ -113,7 +115,10 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "Ziņojumi tiek parādīti pieteikšanās skatā. Jūs varat izmantot ziņojumus, lai pārliecinātu informāciju par jūsu organizāciju, paziņojumiem vai lietošanas vadlīnijām lietotājiem." +msgstr "" +"Ziņojumi tiek parādīti pieteikšanās skatā. Jūs varat izmantot ziņojumus, lai " +"pārliecinātu informāciju par jūsu organizāciju, paziņojumiem vai lietošanas " +"vadlīnijām lietotājiem." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po index 543e56db52..b6e4c6a44a 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index 79d2da9793..dfe8a16258 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index 1aa2842070..c68f22282b 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po index 154fb0d1f0..c53d297cfe 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-12-28 00:06+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po index d83e618eb7..07c7280460 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-15 11:59+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" @@ -113,7 +115,10 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "Mesajele sunt afișate în vizualizarea de autentificare. Puteți utiliza mesajele pentru a afișa informații despre organizație, anunțuri sau ghiduri de utilizare pentru utilizatorii dvs." +msgstr "" +"Mesajele sunt afișate în vizualizarea de autentificare. Puteți utiliza " +"mesajele pentru a afișa informații despre organizație, anunțuri sau ghiduri " +"de utilizare pentru utilizatorii dvs." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po index 63df4ef9fe..fd4be10abe 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po index 67172490e4..81e4a2b561 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po index 63d44755a6..e87ecc6f91 100644 --- a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po index dac31bd1fd..aba3cbe90a 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po index 5a9db91316..95983f9772 100644 --- a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-24 07:16+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -113,7 +114,9 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "消息显示在登录视图中。您可以使用消息向您的用户传达有关您组织,公告或使用指南的信息。" +msgstr "" +"消息显示在登录视图中。您可以使用消息向您的用户传达有关您组织,公告或使用指南" +"的信息。" #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index 8c2cfee3ce..d550ad6407 100644 --- a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po index ae3657a356..7dceb04f1b 100644 --- a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po index d0dc91d018..dd5c624d3d 100644 --- a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" diff --git a/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po index a72d669ddc..f7c3dc9397 100644 --- a/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po index 9319529ccc..535c35975d 100644 --- a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po index e48cccb060..4031ac15a9 100644 --- a/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index 5f1ddb617e..d217de3036 100644 --- a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po index ebc3e390e6..7e2e68ea52 100644 --- a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po index eb9012ddee..b493ba88cb 100644 --- a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po index e4ce732f17..d1af351cc5 100644 --- a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po index d784d41393..52d2db130c 100644 --- a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po index 80a4e710cc..809033b21d 100644 --- a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po index 65e64bf82d..5e7de03668 100644 --- a/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po index 5123bed375..788aaf72a6 100644 --- a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po index 3b1156ea0c..c50f228931 100644 --- a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po index 8697e10ac7..437fd6365c 100644 --- a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po index 364650b177..88fdb3df0f 100644 --- a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po index 148996d788..337a9dc00f 100644 --- a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po index e8433f0581..5d39ded804 100644 --- a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po index 9360c63370..ba5e5e6ac0 100644 --- a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po index 542b58974e..d7a56dd5e1 100644 --- a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" diff --git a/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 528f0e89fc..f1e158f3cc 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -41,8 +43,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index d934c8f8e1..5fc861af48 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po index 41a885477f..1e3dfd62ed 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -42,8 +44,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po index 2cfb91b53b..0eff409fe8 100644 --- a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -40,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po index 77511bf634..d720e77cba 100644 --- a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -40,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po index bbda6ec5c9..652af4215f 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Bjoern Kowarsch , 2018 @@ -15,14 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -48,9 +49,11 @@ msgstr "Freies OpenSource OCR-Programm" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." -msgstr "PyOCR ist eine Python-Bibliothek, die die Nutzung von OCR Programmen wie Tesseract oder Cuneiform vereinfacht." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." +msgstr "" +"PyOCR ist eine Python-Bibliothek, die die Nutzung von OCR Programmen wie " +"Tesseract oder Cuneiform vereinfacht." #: events.py:10 msgid "Document version submitted for OCR" @@ -159,11 +162,15 @@ msgstr "OCR-Schrifterkennung für Dokumentenversion" #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet werden soll." +msgstr "" +"Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet " +"werden soll." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch durchgeführt werden soll." +msgstr "" +"Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch " +"durchgeführt werden soll." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po index b2670a80c9..6ebdc21ff5 100644 --- a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -40,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 @@ -87,7 +88,8 @@ msgstr "Τύπος εγγράφου" #: models.py:24 msgid "Automatically queue newly created documents for OCR." -msgstr "Αυτόματη προσθήκη προσφάτως δημιουργημένων εγγράφων προς οπτική αναγνώριση." +msgstr "" +"Αυτόματη προσθήκη προσφάτως δημιουργημένων εγγράφων προς οπτική αναγνώριση." #: models.py:30 msgid "Document type settings" @@ -151,11 +153,14 @@ msgstr "Οπτική αναγνώριση έκδοσης εγγράφου" #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "Πλήρης διαδρομή του προγράμματος που θα χρησιμοποιηθεί για οπτική αναγνώριση." +msgstr "" +"Πλήρης διαδρομή του προγράμματος που θα χρησιμοποιηθεί για οπτική αναγνώριση." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Ορισμός νέων τύπων εγγράφου στους οποίους θα πραγματοποιείται αυτόματα οπτική αναγνώριση." +msgstr "" +"Ορισμός νέων τύπων εγγράφου στους οποίους θα πραγματοποιείται αυτόματα " +"οπτική αναγνώριση." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index 5d3d8901f2..510e989624 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index efe1322bb5..9ed12ff795 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 06:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -43,9 +44,11 @@ msgstr "Motor gratuito de código abierto OCR" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." -msgstr "PyOCR es una librería de Python que simplifica el uso de herramientas OCR como Tesseract o Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." +msgstr "" +"PyOCR es una librería de Python que simplifica el uso de herramientas OCR " +"como Tesseract o Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 82dfbe0725..15eb6a2f0a 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 @@ -156,7 +157,8 @@ msgstr "محل اجرای نرم افزار OCR" #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "انواع سند جدید را برای انجام OCR به طور پیش فرض به صورت خودکار تنظیم کنید." +msgstr "" +"انواع سند جدید را برای انجام OCR به طور پیش فرض به صورت خودکار تنظیم کنید." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 74ea44e2cd..98cb8282af 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2015,2017-2018 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 13:20+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -47,9 +48,11 @@ msgstr "Moteur OCR libre et gratuit" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." -msgstr "PyOCR est une bibliothèque Python simplifiant l'utilisation d'outils de reconnaissance optique de caractères tels que Tesseract ou Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." +msgstr "" +"PyOCR est une bibliothèque Python simplifiant l'utilisation d'outils de " +"reconnaissance optique de caractères tels que Tesseract ou Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" @@ -94,7 +97,8 @@ msgstr "Type de document" #: models.py:24 msgid "Automatically queue newly created documents for OCR." -msgstr "Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." +msgstr "" +"Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." #: models.py:30 msgid "Document type settings" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index 29d3e0f586..96625aa86c 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index 24e1b3fe61..be6f2aef7c 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -40,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 8e35038644..a3c5c25f60 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +43,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 @@ -157,7 +158,9 @@ msgstr "Percorso completo al backend utilizzato per eseguire l'OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per default." +msgstr "" +"Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per " +"default." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po index b787cd6f52..af56f426f0 100644 --- a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:42+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -41,9 +43,11 @@ msgstr "Bezmaksas atvērtā koda OCR dzinējs" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." -msgstr "PyOCR ir Python bibliotēka, kas vienkāršo OCR rīku, piemēram, Tesseract vai Cuneiform, izmantošanu." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." +msgstr "" +"PyOCR ir Python bibliotēka, kas vienkāršo OCR rīku, piemēram, Tesseract vai " +"Cuneiform, izmantošanu." #: events.py:10 msgid "Document version submitted for OCR" @@ -156,7 +160,9 @@ msgstr "Pilns ceļš uz backend, kas jāizmanto OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Iestatiet jaunus dokumentu tipus, lai pēc noklusējuma automātiski izpildītu OCR." +msgstr "" +"Iestatiet jaunus dokumentu tipus, lai pēc noklusējuma automātiski izpildītu " +"OCR." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po index 20759d9909..b482811365 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -43,8 +44,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index bf03922eaf..7f413379f6 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -42,8 +45,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index ce6e1b1dbe..d03bcaf2d8 100644 --- a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -43,8 +44,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po index eb20cdae17..804409f377 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -43,8 +44,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po index 661f57765a..ccd3d2821c 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -42,9 +44,11 @@ msgstr "Motor OCR Open Source" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." -msgstr "PyOCR este o bibliotecă Python care simplifică utilizarea instrumentelor OCR cum ar fi Tesseract sau Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." +msgstr "" +"PyOCR este o bibliotecă Python care simplifică utilizarea instrumentelor OCR " +"cum ar fi Tesseract sau Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" @@ -153,11 +157,14 @@ msgstr "OCR pe versiunea documentului " #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "Calea completă spre backend-ul care trebuie utilizat pentru a face OCR." +msgstr "" +"Calea completă spre backend-ul care trebuie utilizat pentru a face OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Setați tipuri noi de documente pentru a efectua automat funcția OCR în mod implicit." +msgstr "" +"Setați tipuri noi de documente pentru a efectua automat funcția OCR în mod " +"implicit." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index ebeae4afcd..33e6317868 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -42,8 +45,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 @@ -157,7 +160,9 @@ msgstr "Полный путь до бекенда, выполняющего OCR. #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Задать новые типы документов для которых распознавание будет запускаться по умолчанию. " +msgstr "" +"Задать новые типы документов для которых распознавание будет запускаться по " +"умолчанию. " #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po index 812b916650..bb83217135 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -40,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po index 5bcab96fc5..166dafa0f0 100644 --- a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +43,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 @@ -157,7 +158,9 @@ msgstr "OCR yapmak için kullanılacak arka uç için tam yol." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Varsayılan olarak otomatik olarak OCR gerçekleştirmek için yeni belge türlerini ayarlayın." +msgstr "" +"Varsayılan olarak otomatik olarak OCR gerçekleştirmek için yeni belge " +"türlerini ayarlayın." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po index 64dbc69ea8..1caf3ebd16 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po index 9f0c7b8691..0e3a9cfa1a 100644 --- a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" -" Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " +"Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index 035ba77575..c76b499be6 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "الصلاحيات" @@ -26,6 +28,12 @@ msgstr "الصلاحيات" msgid "Insufficient permissions." msgstr "صلاحيات غير كافية." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "تحرير الأدوار" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index 89b3eb5322..c06458ff17 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Разрешения" @@ -26,6 +27,12 @@ msgstr "Разрешения" msgid "Insufficient permissions." msgstr "Недостатъчни разрешения." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Редактиране на роли" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po index 27207ea7bd..306e1c308d 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Dozvole" @@ -27,6 +29,12 @@ msgstr "Dozvole" msgid "Insufficient permissions." msgstr "Nedovoljne dozvole." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Izmjeni role" + #: events.py:12 msgid "Role created" msgstr "" @@ -103,11 +111,15 @@ msgstr "Ime grupe" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista odvojenih odvojenih grupa primarnih ključeva grupa za dodavanje ili zamjenu u ovoj ulozi." +msgstr "" +"Lista odvojenih odvojenih grupa primarnih ključeva grupa za dodavanje ili " +"zamjenu u ovoj ulozi." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Lista odvojenih odvojenih primarnih ključeva za odvajanje odvojenih dijelova za dodelu ove uloge." +msgstr "" +"Lista odvojenih odvojenih primarnih ključeva za odvajanje odvojenih dijelova " +"za dodelu ove uloge." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po index 1ad02dc05c..04d6723b32 100644 --- a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 14:41+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Práva" @@ -25,6 +27,10 @@ msgstr "Práva" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po index 6722cb35cb..1f5261ea0e 100644 --- a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Tilladelser" @@ -25,6 +26,10 @@ msgstr "Tilladelser" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po index 1761665606..d5a4597f80 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 22:32+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Berechtigungen" @@ -30,6 +31,12 @@ msgstr "Berechtigungen" msgid "Insufficient permissions." msgstr "Unzureichende Berechtigungen." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Rollen bearbeiten" + #: events.py:12 msgid "Role created" msgstr "Rolle erstellt" @@ -106,11 +113,15 @@ msgstr "Gruppenname" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Kommagetrennte Liste von Primärschlüsseln der Gruppen, die zu dieser Rolle hinzugefügt oder ersetzt werden sollen." +msgstr "" +"Kommagetrennte Liste von Primärschlüsseln der Gruppen, die zu dieser Rolle " +"hinzugefügt oder ersetzt werden sollen." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Durch Komma getrennte Liste von Berechtigungs-Primärschlüsseln die dieser Rolle zugewiesen werden sollen." +msgstr "" +"Durch Komma getrennte Liste von Berechtigungs-Primärschlüsseln die dieser " +"Rolle zugewiesen werden sollen." #: serializers.py:90 #, python-format @@ -147,7 +158,10 @@ msgstr "Gruppen für Rolle %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "Fügen Sie Gruppen hinzu um Rollenberechtigungen zu erlangen. Die Berechtigungen werden ererbt von den Berechtigungen und Zugriffsberechtigungen der Rolle." +msgstr "" +"Fügen Sie Gruppen hinzu um Rollenberechtigungen zu erlangen. Die " +"Berechtigungen werden ererbt von den Berechtigungen und " +"Zugriffsberechtigungen der Rolle." #: views.py:104 msgid "Available permissions" @@ -160,7 +174,9 @@ msgstr "Erteilte Berechtigungen" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "Hier erteilte Berechtigungen gelten für das gesamte System und sämtliche Objekte." +msgstr "" +"Hier erteilte Berechtigungen gelten für das gesamte System und sämtliche " +"Objekte." #: views.py:140 #, python-format @@ -173,7 +189,12 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "Rolle sind Autorisierungseinheiten. Sie sind Benutzergruppen zugeordnet, die die Rollenberechtigungen für das gesamte System erben. Rollen können auch Bestandteil von Zugriffsberechtigungslisten sein. Zugriffsberechtigungslisten beinhalten Berechtigungen für spezifische Objekte." +msgstr "" +"Rolle sind Autorisierungseinheiten. Sie sind Benutzergruppen zugeordnet, die " +"die Rollenberechtigungen für das gesamte System erben. Rollen können auch " +"Bestandteil von Zugriffsberechtigungslisten sein. " +"Zugriffsberechtigungslisten beinhalten Berechtigungen für spezifische " +"Objekte." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po index a76057d4a5..b836f68344 100644 --- a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Δικαιώματα χρήσης" @@ -25,6 +26,12 @@ msgstr "Δικαιώματα χρήσης" msgid "Insufficient permissions." msgstr "Ανεπαρκή δικαιώματα." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Τροποποίηση ρόλων" + #: events.py:12 msgid "Role created" msgstr "" @@ -101,11 +108,15 @@ msgstr "Όνομα ομάδας" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών ομάδων όπου θα προστεθούν ή θα τροποποιηθούν σε αυτό τον ρόλο." +msgstr "" +"Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών ομάδων όπου θα προστεθούν ή " +"θα τροποποιηθούν σε αυτό τον ρόλο." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών δικαιωμάτων που θα εκχωρηθούν σε αυτό τον ρόλο." +msgstr "" +"Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών δικαιωμάτων που θα " +"εκχωρηθούν σε αυτό τον ρόλο." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index 129abdf141..8f55697785 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "" @@ -25,6 +25,10 @@ msgstr "" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 0386080568..770dbdeca9 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-30 16:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permisos" @@ -28,6 +29,12 @@ msgstr "Permisos" msgid "Insufficient permissions." msgstr "Permisos insuficientes." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Modificar los roles" + #: events.py:12 msgid "Role created" msgstr "Rol creado" @@ -104,11 +111,15 @@ msgstr "Nombre del grupo" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista separada por comas de llaves primarias de grupos para agregar o reemplazar en este rol." +msgstr "" +"Lista separada por comas de llaves primarias de grupos para agregar o " +"reemplazar en este rol." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Separación por comas de las llaves primarias de permiso para otorgar a este rol." +msgstr "" +"Separación por comas de las llaves primarias de permiso para otorgar a este " +"rol." #: serializers.py:90 #, python-format @@ -145,7 +156,9 @@ msgstr "Grupos del rol: %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "Agregue grupos para ser parte de un rol. Ellos heredarán los permisos de la función y los controles de acceso." +msgstr "" +"Agregue grupos para ser parte de un rol. Ellos heredarán los permisos de la " +"función y los controles de acceso." #: views.py:104 msgid "Available permissions" @@ -158,7 +171,9 @@ msgstr "Permisos otorgados" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "Los permisos otorgados aquí se aplicarán a todo el sistema y a todos los objetos." +msgstr "" +"Los permisos otorgados aquí se aplicarán a todo el sistema y a todos los " +"objetos." #: views.py:140 #, python-format @@ -171,7 +186,12 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "Los roles son unidades de autorización. Contienen grupos de usuarios que heredan los permisos de roles para todo el sistema. Los roles también pueden formar parte de las listas de control de acceso. La lista de controles de acceso son permisos otorgados por función para objetos específicos que heredan los miembros de su grupo." +msgstr "" +"Los roles son unidades de autorización. Contienen grupos de usuarios que " +"heredan los permisos de roles para todo el sistema. Los roles también pueden " +"formar parte de las listas de control de acceso. La lista de controles de " +"acceso son permisos otorgados por función para objetos específicos que " +"heredan los miembros de su grupo." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index ebbc044e60..89ee6b565a 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Mohammad Dashtizadeh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "مجوزها" @@ -27,6 +28,12 @@ msgstr "مجوزها" msgid "Insufficient permissions." msgstr "اجازه ناکافی" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "ویرایش نقش ها" + #: events.py:12 msgid "Role created" msgstr "" @@ -103,11 +110,14 @@ msgstr "اسم گروه" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "لیست کاملی از کلیدهای گروه اولیه برای اضافه کردن یا جایگزینی در این نقش جدا شده است." +msgstr "" +"لیست کاملی از کلیدهای گروه اولیه برای اضافه کردن یا جایگزینی در این نقش جدا " +"شده است." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "لیست کلی از کلیدهای مجاز مجوز برای اعطای این نقش به یکدیگر جدا شده است." +msgstr "" +"لیست کلی از کلیدهای مجاز مجوز برای اعطای این نقش به یکدیگر جدا شده است." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index e5a7112860..cba69b9440 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2014 @@ -13,17 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-09 13:40+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Droits" @@ -31,6 +32,12 @@ msgstr "Droits" msgid "Insufficient permissions." msgstr "Droits insuffisants" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Modifier les rôles" + #: events.py:12 msgid "Role created" msgstr "Rôle créé" @@ -107,11 +114,15 @@ msgstr "Nom du groupe" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "La liste séparée par une virgule des groupes de clés primaires à ajouter ou à remplacer dans ce rôle." +msgstr "" +"La liste séparée par une virgule des groupes de clés primaires à ajouter ou " +"à remplacer dans ce rôle." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Liste séparée par des virgules des clés primaires d'autorisation pour autoriser ce rôle." +msgstr "" +"Liste séparée par des virgules des clés primaires d'autorisation pour " +"autoriser ce rôle." #: serializers.py:90 #, python-format @@ -148,7 +159,9 @@ msgstr "Groupes ayant le rôle : %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "Ajoutez des groupes à faire partie d'un rôle. Ils hériteront des autorisations et des contrôles d'accès du rôle." +msgstr "" +"Ajoutez des groupes à faire partie d'un rôle. Ils hériteront des " +"autorisations et des contrôles d'accès du rôle." #: views.py:104 msgid "Available permissions" @@ -161,7 +174,9 @@ msgstr "Autorisations accordées" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "Les autorisations accordées ici s'appliqueront à l'ensemble du système et à tous les objets." +msgstr "" +"Les autorisations accordées ici s'appliqueront à l'ensemble du système et à " +"tous les objets." #: views.py:140 #, python-format @@ -174,7 +189,13 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "Les rôles sont des unités d'autorisation. Ils contiennent des groupes d'utilisateurs qui héritent des autorisations de rôle pour l'ensemble du système. Les rôles peuvent également faire partie des listes de contrôles d'accès. Une liste des contrôles d'accès correspond aux autorisations accordées à un rôle pour des objets spécifiques dont les membres du groupe héritent." +msgstr "" +"Les rôles sont des unités d'autorisation. Ils contiennent des groupes " +"d'utilisateurs qui héritent des autorisations de rôle pour l'ensemble du " +"système. Les rôles peuvent également faire partie des listes de contrôles " +"d'accès. Une liste des contrôles d'accès correspond aux autorisations " +"accordées à un rôle pour des objets spécifiques dont les membres du groupe " +"héritent." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index 9c5257f17e..a463a232dd 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Engedélyek" @@ -26,6 +27,12 @@ msgstr "Engedélyek" msgid "Insufficient permissions." msgstr "Elégtelen jogosúltság" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Szerepkörök szerkesztése" + #: events.py:12 msgid "Role created" msgstr "" @@ -102,11 +109,15 @@ msgstr "Csoportnév" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Ebben a szerepkörben hozzáadandó vagy kicserélendő csoportok elsődleges kulcsainak vesszővel elválasztott listája." +msgstr "" +"Ebben a szerepkörben hozzáadandó vagy kicserélendő csoportok elsődleges " +"kulcsainak vesszővel elválasztott listája." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Ehhez a szerepkörhöz adandó jogosúltásg elsődleges kulcsának vesszővel elválasztott listája." +msgstr "" +"Ehhez a szerepkörhöz adandó jogosúltásg elsődleges kulcsának vesszővel " +"elválasztott listája." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 655d6e292a..cfa69d6b45 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-12 17:43+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "" @@ -25,6 +26,10 @@ msgstr "" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 3d78224981..49605fe64d 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2017 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permessi" @@ -28,6 +29,12 @@ msgstr "Permessi" msgid "Insufficient permissions." msgstr "Permessi insufficienti" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Modifica i ruoli" + #: events.py:12 msgid "Role created" msgstr "" @@ -104,7 +111,9 @@ msgstr "" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista separata da virgole di ID gruppi da aggiungere o sostituire in questo ruolo" +msgstr "" +"Lista separata da virgole di ID gruppi da aggiungere o sostituire in questo " +"ruolo" #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po index 0b6fe4313a..28f6596c70 100644 --- a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:44+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Atļaujas" @@ -26,6 +28,12 @@ msgstr "Atļaujas" msgid "Insufficient permissions." msgstr "Nepietiekamas atļaujas." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Rediģēt lomas" + #: events.py:12 msgid "Role created" msgstr "Izveidota loma" @@ -102,11 +110,14 @@ msgstr "Grupas nosaukums" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Komatu atdalīts grupu saraksts, kas ir primārās atslēgas, lai pievienotu vai aizstātu šo lomu." +msgstr "" +"Komatu atdalīts grupu saraksts, kas ir primārās atslēgas, lai pievienotu vai " +"aizstātu šo lomu." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Komatu atdalītu atļauju primāro atslēgu saraksts, lai piešķirtu šai lomai." +msgstr "" +"Komatu atdalītu atļauju primāro atslēgu saraksts, lai piešķirtu šai lomai." #: serializers.py:90 #, python-format @@ -143,7 +154,9 @@ msgstr "Lomu grupas: %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "Pievienojiet grupas, lai kļūtu par lomu. Viņi mantos lomu atļaujas un piekļuves kontroles." +msgstr "" +"Pievienojiet grupas, lai kļūtu par lomu. Viņi mantos lomu atļaujas un " +"piekļuves kontroles." #: views.py:104 msgid "Available permissions" @@ -156,7 +169,8 @@ msgstr "Piešķirtās atļaujas" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "Šeit piešķirtās atļaujas attieksies uz visu sistēmu un visiem objektiem." +msgstr "" +"Šeit piešķirtās atļaujas attieksies uz visu sistēmu un visiem objektiem." #: views.py:140 #, python-format @@ -169,7 +183,11 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "Lomas ir autorizācijas vienības. Tajās ir lietotāju grupas, kas pārņem visas sistēmas lomu atļaujas. Lomas var iekļaut arī piekļuves kontroles sarakstos. Piekļuves kontroles saraksts ir atļaujas, kas piešķirtas konkrētu objektu lomai, ko tās grupas locekļi pārmanto." +msgstr "" +"Lomas ir autorizācijas vienības. Tajās ir lietotāju grupas, kas pārņem visas " +"sistēmas lomu atļaujas. Lomas var iekļaut arī piekļuves kontroles sarakstos. " +"Piekļuves kontroles saraksts ir atļaujas, kas piešķirtas konkrētu objektu " +"lomai, ko tās grupas locekļi pārmanto." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po index 0aa23e659f..897ce4c3b7 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permissies" @@ -27,6 +28,12 @@ msgstr "Permissies" msgid "Insufficient permissions." msgstr "Permissies zijn ontoereikend" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "gebruikersrollen aanpassen" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index d8f7acb803..70701e32a9 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2018 @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Uprawnienia" @@ -27,6 +30,12 @@ msgstr "Uprawnienia" msgid "Insufficient permissions." msgstr "Niewystarczające uprawnienia." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Edytuj role" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index 7e4c6e0074..1976edde02 100644 --- a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Roberto Rosario, 2012 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permissões" @@ -28,6 +29,12 @@ msgstr "Permissões" msgid "Insufficient permissions." msgstr "Permissões insuficientes." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Editar funções" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po index 6af37132ca..6bd217a6ea 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permissões" @@ -30,6 +31,12 @@ msgstr "Permissões" msgid "Insufficient permissions." msgstr "Permissões insuficientes." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Editar funções" + #: events.py:12 msgid "Role created" msgstr "" @@ -106,11 +113,15 @@ msgstr "" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista separada por vírgulas de chaves primárias de grupo para adicionar ou substituir nesta função." +msgstr "" +"Lista separada por vírgulas de chaves primárias de grupo para adicionar ou " +"substituir nesta função." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Lista separada por vírgulas de chaves primárias de permissão para conceder a esta função." +msgstr "" +"Lista separada por vírgulas de chaves primárias de permissão para conceder a " +"esta função." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po index 11af099dd0..ca3cca828e 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-02 05:58+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permisiuni" @@ -27,6 +29,12 @@ msgstr "Permisiuni" msgid "Insufficient permissions." msgstr "Permisiuni insuficiente." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Editați roluri" + #: events.py:12 msgid "Role created" msgstr "Rolul a fost creat" @@ -103,11 +111,15 @@ msgstr "Numele grupului" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Liste separate prin virgulă de chei primare de grup pentru a le adăuga sau a le înlocui în acest rol." +msgstr "" +"Liste separate prin virgulă de chei primare de grup pentru a le adăuga sau " +"a le înlocui în acest rol." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Liste separate prin virgulă de chei primare de permisiune ce vor fi acordate acestui rol." +msgstr "" +"Liste separate prin virgulă de chei primare de permisiune ce vor fi " +"acordate acestui rol." #: serializers.py:90 #, python-format @@ -144,7 +156,9 @@ msgstr "Grupuri pentru rolul: %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "Adăugați grupuri ce vor avea un anumit rol. Ele vor moșteni permisiunile și drepturile de acces ale rolului." +msgstr "" +"Adăugați grupuri ce vor avea un anumit rol. Ele vor moșteni permisiunile și " +"drepturile de acces ale rolului." #: views.py:104 msgid "Available permissions" @@ -157,7 +171,9 @@ msgstr "Permisiuni acordate" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "Permisiunile acordate aici se vor aplica întregului sistem și tuturor obiectelor." +msgstr "" +"Permisiunile acordate aici se vor aplica întregului sistem și tuturor " +"obiectelor." #: views.py:140 #, python-format @@ -170,7 +186,12 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "Rolurile sunt unități de autorizare. Acestea conțin grupuri de utilizatori care moștenesc permisiunile de rol pentru întregul sistem. Rolurile pot fi, de asemenea, parte din listele de control al accesului. Lista de control de acces ACL conține permisiunile acordate unui rol pentru anumite obiecte pe care membrii grupului îi moștenesc." +msgstr "" +"Rolurile sunt unități de autorizare. Acestea conțin grupuri de utilizatori " +"care moștenesc permisiunile de rol pentru întregul sistem. Rolurile pot fi, " +"de asemenea, parte din listele de control al accesului. Lista de control de " +"acces ACL conține permisiunile acordate unui rol pentru anumite obiecte pe " +"care membrii grupului îi moștenesc." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index 2744c7854e..19ceca7702 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Разрешения" @@ -26,6 +29,12 @@ msgstr "Разрешения" msgid "Insufficient permissions." msgstr "Недостаточно разрешений." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Изменить роли" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po index 668b9a3554..783a906f1c 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Pravice" @@ -25,6 +27,10 @@ msgstr "Pravice" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po index 790f3acecb..74823fdb0b 100644 --- a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "İzinler" @@ -26,6 +27,12 @@ msgstr "İzinler" msgid "Insufficient permissions." msgstr "Yetersiz yetkiler." +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Rolleri düzenle" + #: events.py:12 msgid "Role created" msgstr "" @@ -102,7 +109,9 @@ msgstr "" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Eklenecek veya bu rolde değiştirilecek birincil anahtarların virgülle ayrılmış listeleri." +msgstr "" +"Eklenecek veya bu rolde değiştirilecek birincil anahtarların virgülle " +"ayrılmış listeleri." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po index 419a0b1426..9464a5f40f 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "" @@ -26,6 +27,12 @@ msgstr "" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "Sửa roles" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po index c48c6dc128..94030ccf91 100644 --- a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "权限" @@ -26,6 +27,12 @@ msgstr "权限" msgid "Insufficient permissions." msgstr "权限不足。" +#: dashboard_widgets.py:15 +#, fuzzy +#| msgid "Edit roles" +msgid "Total roles" +msgstr "编辑角色" + #: events.py:12 msgid "Role created" msgstr "" @@ -169,7 +176,9 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "角色是授权单位。它们包含继承整个系统的角色权限的用户组。角色也可以是访问控制列表的一部分。访问控制列表是授予其组成员继承的特定对象的角色的权限。" +msgstr "" +"角色是授权单位。它们包含继承整个系统的角色权限的用户组。角色也可以是访问控制" +"列表的一部分。访问控制列表是授予其组成员继承的特定对象的角色的权限。" #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po index df4000b735..d198e40d04 100644 --- a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mohammed ALDOUB , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 msgid "Platform" @@ -29,6 +30,6 @@ msgstr "Platform" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po index ab31f35277..6255e3811a 100644 --- a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Iliya Georgiev , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Iliya Georgiev , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -29,6 +30,6 @@ msgstr "Платформа" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po index 37e10efd05..652cb236ba 100644 --- a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # www.ping.ba , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: www.ping.ba , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 msgid "Platform" @@ -29,6 +31,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po index 0f94625de0..7e19ee395c 100644 --- a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:14 msgid "Platform" @@ -25,6 +26,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po index 4301a5da2a..b2c5900f6c 100644 --- a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -25,6 +26,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po index 0176a53525..4703b4bb30 100644 --- a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefan Lodders , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -30,6 +31,6 @@ msgstr "Plattform" msgid "Template for Supervisord." msgstr "Konfigurationsvorlage für Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Konfigurationsvorlage innerhalb des Dockerimages für Supervisord." diff --git a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po index 966f80b88c..6e83c03e4f 100644 --- a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po @@ -2,19 +2,19 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po index d0d20dd844..0f377c7699 100644 --- a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po index 51c97bc277..6aeedfd01f 100644 --- a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -29,6 +29,6 @@ msgstr "Plataforma" msgid "Template for Supervisord." msgstr "Plantilla para Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Plantilla para Supervisord dentro de una imagen Docker." diff --git a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po index 4496909fdb..55d56e802a 100644 --- a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mehdi Amani , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 @@ -29,6 +29,6 @@ msgstr "ایستگاه" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po index 36e94d422d..a3deb0adaf 100644 --- a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # PatrickHetu , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 @@ -30,6 +30,6 @@ msgstr "Plateforme" msgid "Template for Supervisord." msgstr "Modèle pour Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Modèle pour Supervisord dans une image Docker." diff --git a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po index 31453fdd07..e4af2329c3 100644 --- a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -25,6 +26,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po index 9ee3a126c8..cf46c8a2d7 100644 --- a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 @@ -25,6 +26,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po index eeef809443..1aa9a04ea3 100644 --- a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Marco Camplese , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -29,6 +29,6 @@ msgstr "Piattaforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po index fcd90f9c6a..f7be9ae16a 100644 --- a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:14 msgid "Platform" @@ -29,6 +30,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "Veidne priekš Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Supervisord veidne Docker attēla iekšpusē." diff --git a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po index 6992693116..018535ea18 100644 --- a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -29,6 +30,6 @@ msgstr "Platform" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po index 4c73c79724..b3dff5b49d 100644 --- a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mic , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: mic , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:14 msgid "Platform" @@ -29,6 +31,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po index 63d86f2306..2dbe9ed30a 100644 --- a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po @@ -2,23 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Last-Translator: Manuela Silva , 2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Last-Translator: Manuela Silva , " +"2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 @@ -29,6 +31,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po index b3ef74ab2e..feefc240b6 100644 --- a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rogerio Falcone , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rogerio Falcone , 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 @@ -29,6 +30,6 @@ msgstr "Plataforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po index e6b3435a24..b12cce7bcf 100644 --- a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po @@ -2,25 +2,27 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Badea Gabriel , 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:14 msgid "Platform" @@ -30,6 +32,6 @@ msgstr "Platformă" msgid "Template for Supervisord." msgstr "Șablon pentru Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Șablon pentru Supervisord în interiorul unei imagini Docker." diff --git a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po index b07a3f70e5..348204fae3 100644 --- a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sergey Glita , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Sergey Glita , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 msgid "Platform" @@ -29,6 +31,6 @@ msgstr "Platform" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po index cc8a640cf1..bb1ac787ee 100644 --- a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po @@ -2,20 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:14 msgid "Platform" @@ -25,6 +27,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po index 640e6849d8..90ca449908 100644 --- a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 @@ -25,6 +26,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po index 26c14c7651..18b241b24c 100644 --- a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po @@ -2,19 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 @@ -25,6 +26,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po index 512b5ded37..f2d006d531 100644 --- a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po @@ -2,19 +2,19 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po index 7e4cfcd38e..c60dabce3c 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po index 6d9aec7017..b3354048a5 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po index 3dca901133..c95ac05345 100644 --- a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-08-09 10:42+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po index 5f3f379ea3..63a18c5bfa 100644 --- a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po index 1bcbe70d87..b8eb4f8851 100644 --- a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-05 13:49+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po index 2722dd6e94..5fbdbafd59 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-16 18:16+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po index 2de9489cb0..e129cee617 100644 --- a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po index 0e294246e5..8786892566 100644 --- a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po index 81d2bbb8cf..02590ff102 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015,2017-2018 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-14 03:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po index 71fa8b450c..664fa844aa 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015,2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po index cdfb9c17e1..a6da48cef6 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-11 11:52+0000\n" "Last-Translator: Yves Dubois \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po index 4929f62eb1..62fe4e794c 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po index 6003783de4..e649c5cd36 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po index 60823c50f5..c1c8877de1 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po index 83eb709648..673b02a75c 100644 --- a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:45+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po index 1e9fbbd0e2..980da59a2c 100644 --- a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po index 7d730b5a0e..fd49dd503d 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2018 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po index dc28a424d0..bbf7eb2b3a 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po index 99f317111d..03b94d9306 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po index b7ceae7d68..740e593d0f 100644 --- a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-03-15 11:57+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po index 1a50f312f7..8de3ac3f3a 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po index e1894fabf0..dde074330b 100644 --- a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po index fca8713651..46015b674b 100644 --- a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po index 2fcccf2981..4adb27459c 100644 --- a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po index 3c1e2e0871..739aba705d 100644 --- a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-24 03:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po index dd05fba1d6..6715fd5853 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mohammed ALDOUB \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po index 5ed4bbc32c..0bbc7bfc39 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pavlin Koldamov \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po index ed7b232505..6018004327 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: www.ping.ba \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po index 14141bd23c..8f3bf05960 100644 --- a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-17 19:28+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po index 7474a01391..028b4bbb6b 100644 --- a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po index bc96628b27..bafec2eaa2 100644 --- a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mathias Behrle , 2014 # Stefan Lodders , 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-09 09:39+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 @@ -85,7 +86,9 @@ msgstr "Einstellungen anzeigen" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "Einstellungen die durch Umgebungsvariablen vorgenommen wurden sind vorrangig und können auf dieser Seite nicht geändert werden." +msgstr "" +"Einstellungen die durch Umgebungsvariablen vorgenommen wurden sind vorrangig " +"und können auf dieser Seite nicht geändert werden." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po index e504bc731d..cb77361b29 100644 --- a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po index 025eded96e..9ad7b1d3c2 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po index ed9c773fb5..b24752450d 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-14 03:38+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 @@ -85,7 +86,9 @@ msgstr "Ver configuraciones" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "La configuración heredada de una variable de entorno tiene prioridad y no se puede cambiar en esta vista." +msgstr "" +"La configuración heredada de una variable de entorno tiene prioridad y no se " +"puede cambiar en esta vista." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po index 60fd3a3e02..5e286f2e59 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po index 50f3f8a5fc..f2cdfc484e 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2014 # Frédéric Sheedy , 2019 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-09 13:46+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 @@ -86,7 +87,9 @@ msgstr "Afficher les paramètres" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "Les paramètres hérités d'une variable d'environnement ont préséance et ne peuvent pas être modifiés dans cette vue." +msgstr "" +"Les paramètres hérités d'une variable d'environnement ont préséance et ne " +"peuvent pas être modifiés dans cette vue." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po index 25bb8585f5..f63b0d67fc 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po index c38ae38dac..7d199779c4 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po index 5a45d63771..41b7f61830 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pierpaolo Baldan \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po index 65af61b532..60d941939d 100644 --- a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:46+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" @@ -83,7 +85,9 @@ msgstr "Skatīt iestatījumus" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "No vides mainīgā pārņemtie iestatījumi ir prioritāri un šajā skatījumā tos nevar mainīt." +msgstr "" +"No vides mainīgā pārņemtie iestatījumi ir prioritāri un šajā skatījumā tos " +"nevar mainīt." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po index b76a59360c..f2fb78a80f 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po index 9e186cee49..e8eab56b7a 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012 @@ -11,15 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po index 4ffe011d78..0710ac3911 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po index c5b5341587..20fe3e45ee 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-12-22 01:04+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po index 8fa43faf52..b9bc9ff849 100644 --- a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-03-15 12:00+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" @@ -83,7 +85,9 @@ msgstr "Vedeți setările" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "Setările moștenite de la o variabilă de mediu au prioritate și nu pot fi modificate în această vizualizare." +msgstr "" +"Setările moștenite de la o variabilă de mediu au prioritate și nu pot fi " +"modificate în această vizualizare." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po index dbc427ce45..6a1ad141cb 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Sergey Glita \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po index 6160ca41c1..4b6f04a437 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: kontrabant \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po index 6ab6ec687f..c18aef77a7 100644 --- a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Caner Başaran \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po index 1ba47c690f..7258244899 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po index 318775c110..f8b5437ad7 100644 --- a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-24 04:41+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 74d897615e..9d9d649ce2 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -196,7 +198,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +267,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +339,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -614,8 +615,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 165084d57c..96434feb2e 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -196,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +266,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -614,8 +614,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po index bcaa46dd42..99fee30339 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -33,7 +35,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Izvori dokumenata su način na koji se novi dokumenti hraniti za Mayan EDMS, kreirati barem izvor web oblik kako bi mogli da otpremaju dokumente iz pretraživača." +msgstr "" +"Izvori dokumenata su način na koji se novi dokumenti hraniti za Mayan EDMS, " +"kreirati barem izvor web oblik kako bi mogli da otpremaju dokumente iz " +"pretraživača." #: apps.py:71 msgid "Type" @@ -197,7 +202,7 @@ msgstr "Gledajte folder" msgid "POP3 email" msgstr "POP3 e-pošta" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-pošta" @@ -266,38 +271,47 @@ msgstr "Ulazni tragovi" msgid "Log entries" msgstr "Stavke tragova" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Domaćin" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Tipični izbori su 110 za POP3, 995 za POP3 preko SSL-a, 143 za IMAP, 993 za IMAP preko SSL-a." +msgstr "" +"Tipični izbori su 110 za POP3, 995 za POP3 preko SSL-a, 143 za IMAP, 993 za " +"IMAP preko SSL-a." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Korisničko ime" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Lozinka" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Ime priloga koji će sadržavati imena metapodataka i par vrijednosti koje će biti dodijeljene ostalim preuzjenim prilozima. Napomena: Ovaj prilog mora biti prvi prilog." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Ime priloga koji će sadržavati imena metapodataka i par vrijednosti koje će " +"biti dodijeljene ostalim preuzjenim prilozima. Napomena: Ovaj prilog mora " +"biti prvi prilog." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -307,7 +321,9 @@ msgstr "Ime priloga metapodataka" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Izaberite tip metapodataka koji važi za odabrani tip dokumenta za čuvanje objekta e-pošte." +msgstr "" +"Izaberite tip metapodataka koji važi za odabrani tip dokumenta za čuvanje " +"objekta e-pošte." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -317,7 +333,9 @@ msgstr "Tip metapodataka predmeta" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Izaberite vrstu metapodataka koja važi za odabrani tip dokumenta u kojem će se vrednost e-pošte \"sa\"." +msgstr "" +"Izaberite vrstu metapodataka koja važi za odabrani tip dokumenta u kojem će " +"se vrednost e-pošte \"sa\"." #: models/email_sources.py:73 msgid "From metadata type" @@ -339,33 +357,37 @@ msgstr "E-mail izvor" msgid "Email sources" msgstr "E-mail izvori" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tip metapodataka predmeta \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" +msgstr "" +"Tip metapodataka predmeta \"%(metadata_type)s\" ne važi za tip dokumenta: " +"%(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "\"Od\" metapodataka tipa \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" +msgstr "" +"\"Od\" metapodataka tipa \"%(metadata_type)s\" ne važi za tip dokumenta: " +"%(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP poštansko sanduče sa kojeg možete proveravati poruke." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Poštansko sanduče" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-pošta" @@ -381,7 +403,9 @@ msgstr "Naziv uređaja" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Odabire režim skeniranja (npr. Lineart, monohromatski ili boji). Ako ovu opciju ne podržava vaš skener, ostavite je praznim." +msgstr "" +"Odabire režim skeniranja (npr. Lineart, monohromatski ili boji). Ako ovu " +"opciju ne podržava vaš skener, ostavite je praznim." #: models/scanner_sources.py:41 msgid "Mode" @@ -392,7 +416,9 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Podešava rezoluciju skenirane slike u DPI (tačke po inču). Tipična vrednost je 200. Ako vaš skener ne podržava ovu opciju, ostavite je praznim." +msgstr "" +"Podešava rezoluciju skenirane slike u DPI (tačke po inču). Tipična vrednost " +"je 200. Ako vaš skener ne podržava ovu opciju, ostavite je praznim." #: models/scanner_sources.py:48 msgid "Resolution" @@ -402,7 +428,9 @@ msgstr "Rezolucija" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Odabir izvora skeniranja (kao što je uvući dokument). Ako ovu opciju ne podržava vaš skener, ostavite je praznim." +msgstr "" +"Odabir izvora skeniranja (kao što je uvući dokument). Ako ovu opciju ne " +"podržava vaš skener, ostavite je praznim." #: models/scanner_sources.py:54 msgid "Paper source" @@ -412,7 +440,9 @@ msgstr "Izvor papira" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Izbor režima za uvlačenje dokumenata (simplex / duplex). Ako ovu opciju ne podržava vaš skener, ostavite je praznim." +msgstr "" +"Izbor režima za uvlačenje dokumenata (simplex / duplex). Ako ovu opciju ne " +"podržava vaš skener, ostavite je praznim." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -553,7 +583,8 @@ msgstr "Upload dokument" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Putanja do skenirajućeg programa koji se koristi za kontrolu skenera slike." +msgstr "" +"Putanja do skenirajućeg programa koji se koristi za kontrolu skenera slike." #: settings.py:22 msgid "" @@ -615,9 +646,11 @@ msgstr "Stavke dnevnika za izvor: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nisu definisani nikakvi interaktivni izvori dokumenta ili nijedan nije omogućen, stvoriti jedan prije nastavka." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nisu definisani nikakvi interaktivni izvori dokumenta ili nijedan nije " +"omogućen, stvoriti jedan prije nastavka." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -635,7 +668,9 @@ msgstr "Skeniraj" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "Greška u izvršenju zadatka za otpremanje dokumenta; %(exception)s, %(exception_class)s" +msgstr "" +"Greška u izvršenju zadatka za otpremanje dokumenta; %(exception)s, " +"%(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po index 6f895c580e..550114e999 100644 --- a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -195,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -264,37 +266,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -613,8 +614,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po index 8af8907c01..1af1bf665b 100644 --- a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -196,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 email" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP email" @@ -265,37 +266,38 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typiske muligheder er 110 for POP3, 995 for POP3 via SSL, 143 for IMAP, 993 for IMAP via SSL." +msgstr "" +"Typiske muligheder er 110 for POP3, 995 for POP3 via SSL, 143 for IMAP, 993 " +"for IMAP via SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Brugernavn" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Password" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +340,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Indbakke" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -614,8 +616,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po index c64a2e5acc..172769a1a6 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Ingo, 2013 @@ -16,14 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-26 21:45+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -40,7 +41,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist erforderlich." +msgstr "" +"Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung " +"in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist " +"erforderlich." #: apps.py:71 msgid "Type" @@ -66,7 +70,9 @@ msgstr "Nachricht" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "Programm aus dem SANE Paket. Wird verwendet um den Scanner zu kontrollieren und das gescannte Dokumentenbild abzurufen." +msgstr "" +"Programm aus dem SANE Paket. Wird verwendet um den Scanner zu kontrollieren " +"und das gescannte Dokumentenbild abzurufen." #: forms.py:30 msgid "Comment" @@ -204,7 +210,7 @@ msgstr "Beobachtungs-Ordner" msgid "POP3 email" msgstr "POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP" @@ -273,38 +279,47 @@ msgstr "Protokolleintrag" msgid "Log entries" msgstr "Logeinträge" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL." +msgstr "" +"Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 " +"für IMAP über SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Benutzer" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Passwort" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste Anhang sein)." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für " +"die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste " +"Anhang sein)." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -314,7 +329,9 @@ msgstr "Name Metadatenattachment" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für den ausgewählten Dokumententyp zulässig ist." +msgstr "" +"Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für " +"den ausgewählten Dokumententyp zulässig ist." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -324,7 +341,9 @@ msgstr "Metadatentyp des Betreffs" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für den ausgewählten Dokumententyp zulässig ist." +msgstr "" +"Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für " +"den ausgewählten Dokumententyp zulässig ist." #: models/email_sources.py:73 msgid "From metadata type" @@ -346,33 +365,37 @@ msgstr "E-Mail Quelle" msgid "Email sources" msgstr "E-Mail Quellen" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" +msgstr "" +"Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp " +"\"%(document_type)s\" nicht zulässig" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" +msgstr "" +"Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp " +"\"%(document_type)s\" nicht zulässig" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP-Mailbox, die auf Nachrichten überprüft werden soll." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Mailbox" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP email" @@ -388,7 +411,9 @@ msgstr "Gerätename" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Scanmodus auswählen (z.B. lineart, monochrom, oder farbig). Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." +msgstr "" +"Scanmodus auswählen (z.B. lineart, monochrom, oder farbig). Leer lassen, " +"wenn diese Option von Ihrem Scanner nicht unterstützt wird." #: models/scanner_sources.py:41 msgid "Mode" @@ -399,7 +424,10 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." +msgstr "" +"Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein " +"typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner " +"nicht unterstützt wird." #: models/scanner_sources.py:48 msgid "Resolution" @@ -409,7 +437,9 @@ msgstr "Auflösung" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Setzt die Scanquelle (etwa wie Dokuemteneinzug). Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." +msgstr "" +"Setzt die Scanquelle (etwa wie Dokuemteneinzug). Leer lassen, wenn diese " +"Option von Ihrem Scanner nicht unterstützt wird." #: models/scanner_sources.py:54 msgid "Paper source" @@ -419,7 +449,10 @@ msgstr "Papierquelle" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." +msgstr "" +"Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein " +"typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner " +"nicht unterstützt wird." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -496,7 +529,8 @@ msgstr "Serverseitiger Pfad, der auf Dateien untersucht wird." msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "Bei Aktivierung werden auch die Unterverzeichnisse des Pfads durchsucht." +msgstr "" +"Bei Aktivierung werden auch die Unterverzeichnisse des Pfads durchsucht." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -560,17 +594,23 @@ msgstr "Dokument hochladen" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Dateipfad zum Programm scanimage, das für die Kontrolle von Scannern verwendet wird." +msgstr "" +"Dateipfad zum Programm scanimage, das für die Kontrolle von Scannern " +"verwendet wird." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "Pfad zu Speicher-Unterklasse für den Cache von Bildern für bereitgestellte Dateien." +msgstr "" +"Pfad zu Speicher-Unterklasse für den Cache von Bildern für bereitgestellte " +"Dateien." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." -msgstr "Argumente die an das SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND weitergeleitet werden." +msgstr "" +"Argumente die an das SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND " +"weitergeleitet werden." #: tasks.py:46 #, python-format @@ -587,7 +627,9 @@ msgstr "Hochladen wirklich abbrechen?" #: templates/sources/upload_multiform_subtemplate.html:86 msgid "Drop files or click here to upload files" -msgstr "Dateien auf diese Fläche ziehen oder darauf klicken, um Dateien zum Hochladen auszuwählen" +msgstr "" +"Dateien auf diese Fläche ziehen oder darauf klicken, um Dateien zum " +"Hochladen auszuwählen" #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." @@ -609,7 +651,9 @@ msgstr "Der Server antwortete mit Code {{statusCode}}." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "Jeder Fehler, der bei der Benutzung von Dokumentenquellen auftritt, wird hier gelistet, um bei der Fehlerbehebung zu helfen." +msgstr "" +"Jeder Fehler, der bei der Benutzung von Dokumentenquellen auftritt, wird " +"hier gelistet, um bei der Fehlerbehebung zu helfen." #: views.py:68 msgid "No log entries available" @@ -622,9 +666,11 @@ msgstr "Logeinträge für Quelle %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen oder aktivieren Sie eine bevor Sie fortsetzen." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen " +"oder aktivieren Sie eine bevor Sie fortsetzen." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -642,16 +688,20 @@ msgstr "Scannen" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "Fehler beim Hochladen von Dokumenten; %(exception)s, %(exception_class)s" +msgstr "" +"Fehler beim Hochladen von Dokumenten; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." -msgstr "Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze verfügbar sein." +msgstr "" +"Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze " +"verfügbar sein." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "Ein Dokument vom Typ \"%(document_type)s\" aus Quelle %(source)s hochladen" +msgstr "" +"Ein Dokument vom Typ \"%(document_type)s\" aus Quelle %(source)s hochladen" #: views.py:378 #, python-format @@ -660,7 +710,9 @@ msgstr "Vom Dokument \"%s\" können keine neuen Versionen hochgeladen werden." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze verfügbar sein." +msgstr "" +"Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze " +"verfügbar sein." #: views.py:472 #, python-format @@ -678,7 +730,11 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "Führt den Quellenüberprüfungscode aus, selbst wenn die Quelle nicht aktiviert ist. Quellen, die Dokumente nach dem Herunterladen löschen werden, werden das im Testmodus nicht tun. Überprüfen Sie das Fehlerprotokoll währen der Testperiode. Ein erfolgreicher Test leert das Fehlerprotokoll." +msgstr "" +"Führt den Quellenüberprüfungscode aus, selbst wenn die Quelle nicht " +"aktiviert ist. Quellen, die Dokumente nach dem Herunterladen löschen werden, " +"werden das im Testmodus nicht tun. Überprüfen Sie das Fehlerprotokoll währen " +"der Testperiode. Ein erfolgreicher Test leert das Fehlerprotokoll." #: views.py:513 #, python-format @@ -710,7 +766,11 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "Quellen stellen die Mittel für das Hochladen von Dokumenten bereit. Einige Quellen wie z.B. das Webformular sind interaktiv und erfordern Benutzereingaben. Andere wie z.B. E-Mail-Quellen arbeiten automatisch und laufen ohne Benutzereingriff im Hintergrund." +msgstr "" +"Quellen stellen die Mittel für das Hochladen von Dokumenten bereit. Einige " +"Quellen wie z.B. das Webformular sind interaktiv und erfordern " +"Benutzereingaben. Andere wie z.B. E-Mail-Quellen arbeiten automatisch und " +"laufen ohne Benutzereingriff im Hintergrund." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po index f66ca2e715..9024c136dc 100644 --- a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -31,7 +32,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Οι πηγές εγγράφων είναι ο τρόπος με τον οποίο τροφοδοτούμε το Mayan EDMS με νέα έγγραφα. Δημιουργήστε τουλάχιστον μία φόρμα ιστού ώστε να μπορείτε να ανεβάσετε έγγραφα με την χρήση ενός web browser. " +msgstr "" +"Οι πηγές εγγράφων είναι ο τρόπος με τον οποίο τροφοδοτούμε το Mayan EDMS με " +"νέα έγγραφα. Δημιουργήστε τουλάχιστον μία φόρμα ιστού ώστε να μπορείτε να " +"ανεβάσετε έγγραφα με την χρήση ενός web browser. " #: apps.py:71 msgid "Type" @@ -69,7 +73,8 @@ msgstr "Αποσυμπίεση αρχείου" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Ανέβασμα των περιεχομένων ενός συμπιεσμένου αρχείου ως αυτόνομα έγγραφα." +msgstr "" +"Ανέβασμα των περιεχομένων ενός συμπιεσμένου αρχείου ως αυτόνομα έγγραφα." #: forms.py:68 views.py:485 msgid "Staging file" @@ -195,7 +200,7 @@ msgstr "Φάκελος παρακολούθησης" msgid "POP3 email" msgstr "Λογαριασμός POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "Λογαριασμός IMAP" @@ -233,7 +238,9 @@ msgstr "Χρονικό διάστημα" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Ορισμός ενός τύπου εγγράφου για τα έγγραφα που μεταφορτώθηκαν από αυτή την πηγή." +msgstr "" +"Ορισμός ενός τύπου εγγράφου για τα έγγραφα που μεταφορτώθηκαν από αυτή την " +"πηγή." #: models/base.py:182 msgid "Document type" @@ -264,37 +271,38 @@ msgstr "Εγγραφή ημερολογίου" msgid "Log entries" msgstr "Εγγραφές ημερολογίου" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Διεύθυνση διακομιστή" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Τυπικές τιμές είναι 110 για POP3, 995 για POP3 με χρήση SSL, 143 για IMAP, 993 για IMAP με χρήση SSL." +msgstr "" +"Τυπικές τιμές είναι 110 για POP3, 995 για POP3 με χρήση SSL, 143 για IMAP, " +"993 για IMAP με χρήση SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Θύρα" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Όνομα χρήστη" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Κωδικός πρόσβασης" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +345,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Θυρίδα IMAP που θα ελέγχεται για μηνύματα." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Θυρίδα" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Λήξη χρόνου" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -379,7 +387,9 @@ msgstr "Όνομα συσκευής" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Επιλέξτε τρόπο ανάγνωσης (πχ lineart, μονόχρωμη, έγχρωμη.) Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." +msgstr "" +"Επιλέξτε τρόπο ανάγνωσης (πχ lineart, μονόχρωμη, έγχρωμη.) Αφήστε κενό αν " +"δεν υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:41 msgid "Mode" @@ -390,7 +400,9 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Ορίστε την ανάλυση της εικόνας σε DPI (στιγμές ανά ίντσα). Μια τυπική τιμή είναι 200. Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." +msgstr "" +"Ορίστε την ανάλυση της εικόνας σε DPI (στιγμές ανά ίντσα). Μια τυπική τιμή " +"είναι 200. Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:48 msgid "Resolution" @@ -400,7 +412,9 @@ msgstr "Ανάλυση" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Επιλέξτε την πηγή ανάγνωσης (πχ document-feeder.) Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." +msgstr "" +"Επιλέξτε την πηγή ανάγνωσης (πχ document-feeder.) Αφήστε κενό αν δεν " +"υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:54 msgid "Paper source" @@ -410,7 +424,9 @@ msgstr "Πηγή χαρτιού" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Επιλέξτε τον τρόπο τροφοδοσίας χαρτιών (simplex / duplex.) Αφήστε κενό ανδεν υποστηρίζεται από την συσκευή σας." +msgstr "" +"Επιλέξτε τον τρόπο τροφοδοσίας χαρτιών (simplex / duplex.) Αφήστε κενό ανδεν " +"υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -551,7 +567,9 @@ msgstr "Ανέβασμα εγγράφου" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Διαδρομή του προγράμματος που θα χρησιμοποιηθεί για τον έλεγχο των οπτικών αναγνωστών." +msgstr "" +"Διαδρομή του προγράμματος που θα χρησιμοποιηθεί για τον έλεγχο των οπτικών " +"αναγνωστών." #: settings.py:22 msgid "" @@ -613,8 +631,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 @@ -647,7 +665,9 @@ msgstr "" #: views.py:378 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "Η δυνατότητα ανεβάσματος νέας έκδοσης έχει απενεργοποιηθεί για το έγγραφο \"%s\"" +msgstr "" +"Η δυνατότητα ανεβάσματος νέας έκδοσης έχει απενεργοποιηθεί για το έγγραφο " +"\"%s\"" #: views.py:431 msgid "New document version queued for upload and will be available shortly." diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index d72ed3e216..4b70ed955e 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -195,7 +195,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -264,37 +264,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +336,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index 68870d9030..964a1e14aa 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # jmcainzos , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-28 20:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -35,7 +36,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Las fuentes de documentos son la manera en la que se almacenan nuevos documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario web para poder cargar documentos desde un navegador." +msgstr "" +"Las fuentes de documentos son la manera en la que se almacenan nuevos " +"documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario " +"web para poder cargar documentos desde un navegador." #: apps.py:71 msgid "Type" @@ -61,7 +65,9 @@ msgstr "Mensaje" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "Utilidad proporcionada por el paquete SANE. Se utiliza para controlar el escáner y se obtiene la imagen del documento escaneado." +msgstr "" +"Utilidad proporcionada por el paquete SANE. Se utiliza para controlar el " +"escáner y se obtiene la imagen del documento escaneado." #: forms.py:30 msgid "Comment" @@ -73,7 +79,8 @@ msgstr "Expandir archivos comprimidos" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "" +"Subir los archivos de un archivo comprimido como documentos individuales" #: forms.py:68 views.py:485 msgid "Staging file" @@ -199,7 +206,7 @@ msgstr "Carpeta observada" msgid "POP3 email" msgstr "Correo electrónico POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "Correo electrónico IMAP" @@ -237,7 +244,8 @@ msgstr "Intérvalo" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Asignar un tipo de documento a los documentos subidos desde esta fuente" +msgstr "" +"Asignar un tipo de documento a los documentos subidos desde esta fuente" #: models/base.py:182 msgid "Document type" @@ -268,38 +276,48 @@ msgstr "Entrada de bitácora" msgid "Log entries" msgstr "Entradas de bitácora" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." +msgstr "" +"Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para " +"IMAP, 993 para IMAP sobre SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Puerto" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Usuario" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Contraseña" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Nombre del archivo adjunto que contiene los nombres de los tipos de metadatos y los pares de valores que se asignará al resto de los archivos adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo adjunto." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Nombre del archivo adjunto que contiene los nombres de los tipos de " +"metadatos y los pares de valores que se asignará al resto de los archivos " +"adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo " +"adjunto." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -309,7 +327,9 @@ msgstr "Nombre del anejo de metadatos" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el asunto del correo electrónico." +msgstr "" +"Seleccione un tipo de metadatos válido para el tipo de documento " +"seleccionado para almacenar el asunto del correo electrónico." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -319,7 +339,9 @@ msgstr "Tipo de metadatos de asunto " msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el valor \"de\" del correo electrónico." +msgstr "" +"Seleccione un tipo de metadatos válido para el tipo de documento " +"seleccionado para almacenar el valor \"de\" del correo electrónico." #: models/email_sources.py:73 msgid "From metadata type" @@ -341,33 +363,37 @@ msgstr "Fuente de correo electrónico" msgid "Email sources" msgstr "Fuentes de correo electrónico" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "El tipo de metadatos de tema \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" +msgstr "" +"El tipo de metadatos de tema \"%(metadata_type)s\" no es válido para el tipo " +"de documento: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "\"De\" tipo de metadatos \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" +msgstr "" +"\"De\" tipo de metadatos \"%(metadata_type)s\" no es válido para el tipo de " +"documento: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Buzón IMAP en el cual revisar mensajes." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Buzón" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Tiempo de espera" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Correo electrónico POP" @@ -383,7 +409,9 @@ msgstr "Nombre del dispositivo" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Selecciona el modo de escáner (por ejemplo, lineart, monochrome o color). Si esta opción no es compatible con el escáner, déjela en blanco." +msgstr "" +"Selecciona el modo de escáner (por ejemplo, lineart, monochrome o color). Si " +"esta opción no es compatible con el escáner, déjela en blanco." #: models/scanner_sources.py:41 msgid "Mode" @@ -394,7 +422,10 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Define la resolución de la imagen escaneada en DPI (puntos por pulgada). El valor típico es 200. Si esta opción no es compatible con el escáner, déjelo en blanco." +msgstr "" +"Define la resolución de la imagen escaneada en DPI (puntos por pulgada). El " +"valor típico es 200. Si esta opción no es compatible con el escáner, déjelo " +"en blanco." #: models/scanner_sources.py:48 msgid "Resolution" @@ -404,7 +435,9 @@ msgstr "Resolución" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Selecciona la fuente de escaneado (como un alimentador de documentos). Si esta opción no es compatible con el escáner, déjela en blanco." +msgstr "" +"Selecciona la fuente de escaneado (como un alimentador de documentos). Si " +"esta opción no es compatible con el escáner, déjela en blanco." #: models/scanner_sources.py:54 msgid "Paper source" @@ -414,7 +447,9 @@ msgstr "Fuente de papel" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Selecciona el modo de alimentador de documentos (simplex / dúplex). Si esta opción no es compatible con el escáner, déjela en blanco." +msgstr "" +"Selecciona el modo de alimentador de documentos (simplex / dúplex). Si esta " +"opción no es compatible con el escáner, déjela en blanco." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -485,13 +520,16 @@ msgstr "No es posible obtener la lista de los archivos provisionales: %s" #: models/watch_folder_sources.py:34 msgid "Server side filesystem path to scan for files." -msgstr "Ruta del sistema de archivos del lado del servidor para buscar archivos." +msgstr "" +"Ruta del sistema de archivos del lado del servidor para buscar archivos." #: models/watch_folder_sources.py:39 msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "Si se marca, no solo se analizará la ruta de la carpeta en busca de archivos, sino también sus subdirectorios." +msgstr "" +"Si se marca, no solo se analizará la ruta de la carpeta en busca de " +"archivos, sino también sus subdirectorios." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -555,13 +593,17 @@ msgstr "Subir documento" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Ruta de acceso al programa scanimage utilizado para controlar los escáneres de imágenes." +msgstr "" +"Ruta de acceso al programa scanimage utilizado para controlar los escáneres " +"de imágenes." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "Ruta a la subclase de almacenamiento para usar cuando se almacenan los archivos de imagen de staging_file almacenados en caché." +msgstr "" +"Ruta a la subclase de almacenamiento para usar cuando se almacenan los " +"archivos de imagen de staging_file almacenados en caché." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." @@ -586,11 +628,14 @@ msgstr "Soltar archivos o hacer clic aquí para subir archivos" #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." -msgstr "Su navegador no admite la carga de archivos mediante arrastrar y soltar." +msgstr "" +"Su navegador no admite la carga de archivos mediante arrastrar y soltar." #: templates/sources/upload_multiform_subtemplate.html:88 msgid "Please use the fallback form below to upload your files." -msgstr "Por favor, use el formulario de reserva a continuación para cargar sus archivos." +msgstr "" +"Por favor, use el formulario de reserva a continuación para cargar sus " +"archivos." #: templates/sources/upload_multiform_subtemplate.html:89 msgid "Clear" @@ -604,7 +649,9 @@ msgstr "El servidor respondió con el código {{statusCode}}." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "Cualquier error producido durante el uso de una fuente se enumerará aquí para ayudar en la depuración." +msgstr "" +"Cualquier error producido durante el uso de una fuente se enumerará aquí " +"para ayudar en la depuración." #: views.py:68 msgid "No log entries available" @@ -617,9 +664,11 @@ msgstr "Entradas de bitácora para fuente: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "No se han definido fuentes de documentos interactivos o no hay ninguna habilitada, cree una antes de continuar." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"No se han definido fuentes de documentos interactivos o no hay ninguna " +"habilitada, cree una antes de continuar." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -637,16 +686,20 @@ msgstr "Escanear" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "Error al ejecutar la tarea de carga de documentos; %(exception)s, %(exception_class)s" +msgstr "" +"Error al ejecutar la tarea de carga de documentos; %(exception)s, " +"%(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." -msgstr "Nuevo documento puesto en cola para su carga y estará disponible en breve." +msgstr "" +"Nuevo documento puesto en cola para su carga y estará disponible en breve." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "Cargar un documento del tipo \"%(document_type)s\" de la fuente: %(source)s" +msgstr "" +"Cargar un documento del tipo \"%(document_type)s\" de la fuente: %(source)s" #: views.py:378 #, python-format @@ -655,7 +708,9 @@ msgstr "Documento \"%s\" esta bloqueado de crear nuevas versiones." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "Nueva versión del documento puesto en cola para su carga y estará disponible en breve." +msgstr "" +"Nueva versión del documento puesto en cola para su carga y estará disponible " +"en breve." #: views.py:472 #, python-format @@ -673,7 +728,12 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "Esto ejecutará el código de verificación de fuente incluso si la fuente no está habilitada. Las fuentes que eliminan el contenido después de la descarga no lo harán durante la prueba. Verifique el registro de errores de la fuente para obtener información durante la prueba. Una prueba exitosa borrará el registro de errores." +msgstr "" +"Esto ejecutará el código de verificación de fuente incluso si la fuente no " +"está habilitada. Las fuentes que eliminan el contenido después de la " +"descarga no lo harán durante la prueba. Verifique el registro de errores de " +"la fuente para obtener información durante la prueba. Una prueba exitosa " +"borrará el registro de errores." #: views.py:513 #, python-format @@ -705,7 +765,11 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "Las fuentes proporcionan los medios para cargar documentos. Algunas fuentes, como el formulario web, son interactivas y requieren la intervención del usuario para operar. Otros, como las fuentes de correo electrónico, son automáticos y se ejecutan en segundo plano sin la intervención del usuario." +msgstr "" +"Las fuentes proporcionan los medios para cargar documentos. Algunas fuentes, " +"como el formulario web, son interactivas y requieren la intervención del " +"usuario para operar. Otros, como las fuentes de correo electrónico, son " +"automáticos y se ejecutan en segundo plano sin la intervención del usuario." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index a69a89527b..5f87673ba2 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -33,7 +34,9 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "منابع سندي روشي است که اسناد جديد به EDMS ميان تغيير مي کند و حداقل يک منبع فرم وب را قادر مي سازد تا اسناد را از يک مرورگر آپلود کند." +msgstr "" +"منابع سندي روشي است که اسناد جديد به EDMS ميان تغيير مي کند و حداقل يک منبع " +"فرم وب را قادر مي سازد تا اسناد را از يک مرورگر آپلود کند." #: apps.py:71 msgid "Type" @@ -197,7 +200,7 @@ msgstr "پوشه تماشا کنید" msgid "POP3 email" msgstr "ایمیل POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "ایمیل IMAP" @@ -266,38 +269,46 @@ msgstr "ورودی لاگ" msgid "Log entries" msgstr "ورودیهای لاگ" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "هاست" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." +msgstr "" +"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " +"for IMAP over SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "نام کاربری" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "کلمه عبور" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "نام پیوست که شامل نام های نوع فراداده و جفت های ارزش است که باید به سایر فایل های دانلود شده اختصاص داده شود. توجه: این پیوست باید اولین ضمیمه باشد." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"نام پیوست که شامل نام های نوع فراداده و جفت های ارزش است که باید به سایر " +"فایل های دانلود شده اختصاص داده شود. توجه: این پیوست باید اولین ضمیمه باشد." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -307,7 +318,9 @@ msgstr "نام دلبستگی متاداده" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره موضوع ایمیل انتخاب کنید." +msgstr "" +"نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره موضوع ایمیل " +"انتخاب کنید." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -317,7 +330,9 @@ msgstr "نوع Metadata موضوع" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره \"ایمیل\" از \"ارزش\" را انتخاب کنید." +msgstr "" +"نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره \"ایمیل\" از " +"\"ارزش\" را انتخاب کنید." #: models/email_sources.py:73 msgid "From metadata type" @@ -339,33 +354,37 @@ msgstr "ایمیل کردن سورس" msgid "Email sources" msgstr "ایمیل کردن سورسها" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "نوع Metadata موضوع \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" +msgstr "" +"نوع Metadata موضوع \"%(metadata_type)s\" برای نوع سند معتبر نیست: " +"%(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "\"از\" نوع ابرداده \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" +msgstr "" +"\"از\" نوع ابرداده \"%(metadata_type)s\" برای نوع سند معتبر نیست: " +"%(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "صندوق پستی IMAP که از آن برای بررسی پیام ها است." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "صندوق پستی" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "اتمام وقت" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP ایمیل" @@ -381,7 +400,9 @@ msgstr "نام دستگاه" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "حالت اسکن را انتخاب می کند (به عنوان مثال، خط، سیاه و سفید یا رنگ). اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "" +"حالت اسکن را انتخاب می کند (به عنوان مثال، خط، سیاه و سفید یا رنگ). اگر این " +"گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:41 msgid "Mode" @@ -392,7 +413,9 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "وضوح تصویر اسکن شده را در DPI (نقطه در اینچ) تنظیم می کند. مقدار معمول 200 است. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "" +"وضوح تصویر اسکن شده را در DPI (نقطه در اینچ) تنظیم می کند. مقدار معمول 200 " +"است. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:48 msgid "Resolution" @@ -402,7 +425,9 @@ msgstr "وضوح" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "منبع اسکن (مانند فیدر سند) را انتخاب می کند. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "" +"منبع اسکن (مانند فیدر سند) را انتخاب می کند. اگر این گزینه توسط اسکنر شما " +"پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:54 msgid "Paper source" @@ -412,7 +437,9 @@ msgstr "منبع کاغذ" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "حالت فیدر سند (simplex / duplex) را انتخاب می کند. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "" +"حالت فیدر سند (simplex / duplex) را انتخاب می کند. اگر این گزینه توسط اسکنر " +"شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -615,9 +642,11 @@ msgstr "ورود به سیستم برای منبع: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع بسازید." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع " +"بسازید." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 1f07bc71ab..51c69ca98b 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2015,2017-2018 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-09 15:18+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -37,7 +38,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Les sources de documents sont les manières par lesquelles les nouveaux documents seront intégrés dans Mayan EDMS ; créez au moins un formulaire web pour pouvoir télécharger des documents depuis le navigateur." +msgstr "" +"Les sources de documents sont les manières par lesquelles les nouveaux " +"documents seront intégrés dans Mayan EDMS ; créez au moins un formulaire web " +"pour pouvoir télécharger des documents depuis le navigateur." #: apps.py:71 msgid "Type" @@ -75,7 +79,9 @@ msgstr "Décompresser les fichiers" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" +msgstr "" +"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " +"individuels" #: forms.py:68 views.py:485 msgid "Staging file" @@ -201,7 +207,7 @@ msgstr "Surveiller le répertoire" msgid "POP3 email" msgstr "email POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "email IMAP" @@ -239,7 +245,9 @@ msgstr "Intervalle" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Assigner un type de document aux documents transférés à partir de cette source." +msgstr "" +"Assigner un type de document aux documents transférés à partir de cette " +"source." #: models/base.py:182 msgid "Document type" @@ -270,38 +278,47 @@ msgstr "Entrée du journal" msgid "Log entries" msgstr "Entrées du journal" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Hote" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." +msgstr "" +"Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 " +"pour l'IMAP, 993 pour l'IMAP over SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Identifiant" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Mot de passe" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Le nom de la pièce jointe qui contiendra les couples nom/valeur des types de métadonnées qui seront assignés au reste des documents importés. Note : cette pièce jointe devra obligatoirement être la première." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Le nom de la pièce jointe qui contiendra les couples nom/valeur des types de " +"métadonnées qui seront assignés au reste des documents importés. Note : " +"cette pièce jointe devra obligatoirement être la première." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -311,7 +328,9 @@ msgstr "Nom de la pièce jointe de métadonnées" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Sélectionner un type de métadonnée valide pour le type de document sélectionné, dans lequel enregistrer le sujet du courriel." +msgstr "" +"Sélectionner un type de métadonnée valide pour le type de document " +"sélectionné, dans lequel enregistrer le sujet du courriel." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -321,7 +340,9 @@ msgstr "Type de métadonnée du sujet" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Sélectionner un type de métadonnée valide pour le type de document sélectionné, dans lequel enregistrer l'expéditeur du courriel." +msgstr "" +"Sélectionner un type de métadonnée valide pour le type de document " +"sélectionné, dans lequel enregistrer l'expéditeur du courriel." #: models/email_sources.py:73 msgid "From metadata type" @@ -343,33 +364,37 @@ msgstr "Source de courriel" msgid "Email sources" msgstr "Sources de courriel" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" +msgstr "" +"Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas valide pour " +"le document de type : %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Le type de métadonnée de l'expéditeur \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" +msgstr "" +"Le type de métadonnée de l'expéditeur \"%(metadata_type)s\" n'est pas valide " +"pour le document de type : %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Boîte IMAP où chercher les messages." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Boîte de courriel" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Délai d'attente dépassé" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Compte POP" @@ -385,7 +410,10 @@ msgstr "Nom du périphérique" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Sélectionne le mode de balayage (par exemple, lineart, monochrome ou couleur). Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." +msgstr "" +"Sélectionne le mode de balayage (par exemple, lineart, monochrome ou " +"couleur). Si cette option n'est pas prise en charge par votre scanner, " +"laissez-la vierge." #: models/scanner_sources.py:41 msgid "Mode" @@ -396,7 +424,10 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Définit la résolution de l'image scannée en PPP (points par pouce). La valeur typique est 200. Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." +msgstr "" +"Définit la résolution de l'image scannée en PPP (points par pouce). La " +"valeur typique est 200. Si cette option n'est pas prise en charge par votre " +"scanner, laissez-la vierge." #: models/scanner_sources.py:48 msgid "Resolution" @@ -406,7 +437,9 @@ msgstr "Résolution" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Sélectionne la source d'analyse (comme un chargeur de documents). Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." +msgstr "" +"Sélectionne la source d'analyse (comme un chargeur de documents). Si cette " +"option n'est pas prise en charge par votre scanner, laissez-la vierge." #: models/scanner_sources.py:54 msgid "Paper source" @@ -416,7 +449,9 @@ msgstr "Source du papier" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Sélectionne le mode d'alimentation du document (recto / recto-verso). Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." +msgstr "" +"Sélectionne le mode d'alimentation du document (recto / recto-verso). Si " +"cette option n'est pas prise en charge par votre scanner, laissez-la vierge." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -487,7 +522,8 @@ msgstr "Impossible d'obtenir la liste des fichiers en pré-validation :%s" #: models/watch_folder_sources.py:34 msgid "Server side filesystem path to scan for files." -msgstr "Chemin du système de fichiers côté serveur pour rechercher des fichiers." +msgstr "" +"Chemin du système de fichiers côté serveur pour rechercher des fichiers." #: models/watch_folder_sources.py:39 msgid "" @@ -557,7 +593,9 @@ msgstr "Transférer le document" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Chemin d'accès vers le programme scanimage utilisé pour contrôler les scanners d'image." +msgstr "" +"Chemin d'accès vers le programme scanimage utilisé pour contrôler les " +"scanners d'image." #: settings.py:22 msgid "" @@ -588,7 +626,9 @@ msgstr "Déposez vos fichiers ou cliquez pour téléverser des fichiers." #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." -msgstr "Votre navigateur ne prend pas en charge le téléversement de fichiers par glisser-déposer." +msgstr "" +"Votre navigateur ne prend pas en charge le téléversement de fichiers par " +"glisser-déposer." #: templates/sources/upload_multiform_subtemplate.html:88 msgid "Please use the fallback form below to upload your files." @@ -619,9 +659,11 @@ msgstr "Entrées du journal pour la source : %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Aucune source interactive d'import de documents n'a été définie ou activée, créez-en une avant de continuer." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Aucune source interactive d'import de documents n'a été définie ou activée, " +"créez-en une avant de continuer." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -639,7 +681,9 @@ msgstr "Numériser" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "Tâche en erreur d'exécution lors du téléversement; %(exception)s, %(exception_class)s" +msgstr "" +"Tâche en erreur d'exécution lors du téléversement; %(exception)s, " +"%(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index a026e506a7..f2e98c6511 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2014 # molnars , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -197,7 +198,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -266,37 +267,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Kiszolgáló" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Jelszó" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -339,33 +339,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "időtúllépés" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -615,8 +615,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index c86268d611..bcacfc1dcf 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-12 17:43+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -70,7 +71,9 @@ msgstr "Kembangkan berkas-berkas terkompresi" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" +msgstr "" +"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" +"dokumen individual" #: forms.py:68 views.py:485 msgid "Staging file" @@ -196,7 +199,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +268,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Password" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +340,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -614,8 +616,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index b8d8a63776..1973b3959f 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2014 # Marco Camplese , 2016-2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -34,7 +35,9 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan EDMS, crea almeno una modulo web per poter caricare documenti da un browser." +msgstr "" +"Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan " +"EDMS, crea almeno una modulo web per poter caricare documenti da un browser." #: apps.py:71 msgid "Type" @@ -198,7 +201,7 @@ msgstr "Cartella monitorata" msgid "POP3 email" msgstr "Email POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "Email IMAP" @@ -267,38 +270,47 @@ msgstr "Elementi log" msgid "Log entries" msgstr "Elementi log" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 per IMAP su SSL." +msgstr "" +"Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 " +"per IMAP su SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Porta" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Nome utente" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Password" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Nome degli allegati che possono contenere i nomi dei tipi metadati e le coppie di valori che saranno assegnate al resto degli allegati caricati. Nota: Questo allegato sarà il primo degli allegati." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Nome degli allegati che possono contenere i nomi dei tipi metadati e le " +"coppie di valori che saranno assegnate al resto degli allegati caricati. " +"Nota: Questo allegato sarà il primo degli allegati." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -308,7 +320,9 @@ msgstr "Nome allegato metadati" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare l'oggetto della mail." +msgstr "" +"Selezionare il tipo metadato valido per il documento selezionato dove " +"impostare l'oggetto della mail." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -318,7 +332,9 @@ msgstr "Tipo metadato oggetto" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare il mittente della mail." +msgstr "" +"Selezionare il tipo metadato valido per il documento selezionato dove " +"impostare il mittente della mail." #: models/email_sources.py:73 msgid "From metadata type" @@ -340,33 +356,37 @@ msgstr "Email sorgente" msgid "Email sources" msgstr "Email sorgenti" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" +msgstr "" +"Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo " +"documento: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" +msgstr "" +"Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo " +"documento: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Casella di posta IMAP dove controllare i messaggi." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Casella" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Email POP" @@ -442,7 +462,8 @@ msgstr "Percorso cartella" #: models/staging_folder_sources.py:45 msgid "Width value to be passed to the converter backend." -msgstr "valore della larghezza da passare per le operazioni di conversione in backend" +msgstr "" +"valore della larghezza da passare per le operazioni di conversione in backend" #: models/staging_folder_sources.py:46 msgid "Preview width" @@ -450,7 +471,8 @@ msgstr "Larghezza anteprima" #: models/staging_folder_sources.py:50 msgid "Height value to be passed to the converter backend." -msgstr "valore dell'altezza da passare per le operazioni di conversione in backend" +msgstr "" +"valore dell'altezza da passare per le operazioni di conversione in backend" #: models/staging_folder_sources.py:51 msgid "Preview height" @@ -616,9 +638,11 @@ msgstr "Log per la sorgente: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nessuna fonte interattiva dei documenti è stata definita o non ne sono state attivate." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nessuna fonte interattiva dei documenti è stata definita o non ne sono state " +"attivate." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po index afc016237c..dabd2e2869 100644 --- a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:49+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -32,7 +34,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Dokumentu avoti ir veids, kādā jaunie dokumenti tiek piegādāti Mayan EDMS, izveidojiet vismaz tīmekļa veidlapas avotu, lai varētu augšupielādēt dokumentus no pārlūkprogrammas." +msgstr "" +"Dokumentu avoti ir veids, kādā jaunie dokumenti tiek piegādāti Mayan EDMS, " +"izveidojiet vismaz tīmekļa veidlapas avotu, lai varētu augšupielādēt " +"dokumentus no pārlūkprogrammas." #: apps.py:71 msgid "Type" @@ -58,7 +63,9 @@ msgstr "Ziņojums" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "Lietderība, ko nodrošina SANE pakete. Izmanto, lai kontrolētu skeneri un iegūtu skenētā dokumenta attēlu." +msgstr "" +"Lietderība, ko nodrošina SANE pakete. Izmanto, lai kontrolētu skeneri un " +"iegūtu skenētā dokumenta attēlu." #: forms.py:30 msgid "Comment" @@ -196,7 +203,7 @@ msgstr "Skatīties mapi" msgid "POP3 email" msgstr "POP3 e-pasts" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-pasts" @@ -234,7 +241,8 @@ msgstr "Intervāls" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Pievienojiet dokumenta veidu dokumentiem, kas augšupielādēti no šī avota." +msgstr "" +"Pievienojiet dokumenta veidu dokumentiem, kas augšupielādēti no šī avota." #: models/base.py:182 msgid "Document type" @@ -265,38 +273,46 @@ msgstr "Žurnāla ieraksts" msgid "Log entries" msgstr "Žurnāla ieraksti" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Saimnieks" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Tipiskas izvēles ir 110 POP3, 995 POP3 pār SSL, 143 IMAP, 993 IMAP pār SSL." +msgstr "" +"Tipiskas izvēles ir 110 POP3, 995 POP3 pār SSL, 143 IMAP, 993 IMAP pār SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Osta" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Lietotājvārds" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Parole" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Pielikuma nosaukums, kurā būs metadatu tipa nosaukumi un vērtību pāri, kas tiks piešķirti pārējiem lejupielādētajiem pielikumiem. Piezīme: šim pielikumam jābūt pirmajam pielikumam." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Pielikuma nosaukums, kurā būs metadatu tipa nosaukumi un vērtību pāri, kas " +"tiks piešķirti pārējiem lejupielādētajiem pielikumiem. Piezīme: šim " +"pielikumam jābūt pirmajam pielikumam." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -306,7 +322,9 @@ msgstr "Metadatu pielikuma nosaukums" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta objekta saglabāšana." +msgstr "" +"Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta " +"objekta saglabāšana." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -316,7 +334,9 @@ msgstr "Tēmas metadatu veids" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta "no" vērtības." +msgstr "" +"Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta " +""no" vērtības." #: models/email_sources.py:73 msgid "From metadata type" @@ -338,33 +358,37 @@ msgstr "E-pasta avots" msgid "Email sources" msgstr "E-pasta avoti" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Objekta metadatu tips "%(metadata_type)s" nav derīgs dokumenta tipam: %(document_type)s" +msgstr "" +"Objekta metadatu tips "%(metadata_type)s" nav derīgs dokumenta " +"tipam: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr ""No" metadatu tips "%(metadata_type)s" nav derīgs dokumenta tipam: %(document_type)s" +msgstr "" +""No" metadatu tips "%(metadata_type)s" nav derīgs " +"dokumenta tipam: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP pastkaste, no kuras var pārbaudīt ziņas." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Pastkaste" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Pārtraukums" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-pasts" @@ -380,7 +404,9 @@ msgstr "Ierīces nosaukums" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Atlasa skenēšanas režīmu (piem., Lineāru, melnbaltu vai krāsu). Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." +msgstr "" +"Atlasa skenēšanas režīmu (piem., Lineāru, melnbaltu vai krāsu). Ja skeneris " +"šo iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:41 msgid "Mode" @@ -391,7 +417,9 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Iestata skenētā attēla izšķirtspēju DPI (punkti uz collu). Tipiskā vērtība ir 200. Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." +msgstr "" +"Iestata skenētā attēla izšķirtspēju DPI (punkti uz collu). Tipiskā vērtība " +"ir 200. Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:48 msgid "Resolution" @@ -401,7 +429,9 @@ msgstr "Izšķirtspēja" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Atlasa skenēšanas avotu (piemēram, dokumentu padevēju). Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." +msgstr "" +"Atlasa skenēšanas avotu (piemēram, dokumentu padevēju). Ja skeneris šo " +"iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:54 msgid "Paper source" @@ -411,7 +441,9 @@ msgstr "Papīra avots" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Atlasa dokumentu padevēja režīmu (vienkāršais / duplekss). Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." +msgstr "" +"Atlasa dokumentu padevēja režīmu (vienkāršais / duplekss). Ja skeneris šo " +"iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -488,7 +520,9 @@ msgstr "Servera puses failu sistēmas ceļš failu skenēšanai." msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "Ja tiek pārbaudīts, mapes ceļš tiks skenēts ne tikai failiem, bet arī tās apakšdirektorijām." +msgstr "" +"Ja tiek pārbaudīts, mapes ceļš tiks skenēts ne tikai failiem, bet arī tās " +"apakšdirektorijām." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -552,13 +586,17 @@ msgstr "Augšupielādējiet dokumentu" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Faila ceļš uz skenēšanas programmu, ko izmanto, lai kontrolētu attēlu skenerus." +msgstr "" +"Faila ceļš uz skenēšanas programmu, ko izmanto, lai kontrolētu attēlu " +"skenerus." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "Ceļš uz glabāšanas apakšklasi, ko var izmantot, saglabājot kešatmiņā saglabātos attēlu failus." +msgstr "" +"Ceļš uz glabāšanas apakšklasi, ko var izmantot, saglabājot kešatmiņā " +"saglabātos attēlu failus." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." @@ -583,7 +621,8 @@ msgstr "Ielādējiet failus vai noklikšķiniet šeit, lai augšupielādētu fai #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." -msgstr "Jūsu pārlūkprogramma neatbalsta vilkšanas un nomešanas failu augšupielādes." +msgstr "" +"Jūsu pārlūkprogramma neatbalsta vilkšanas un nomešanas failu augšupielādes." #: templates/sources/upload_multiform_subtemplate.html:88 msgid "Please use the fallback form below to upload your files." @@ -601,7 +640,9 @@ msgstr "Serveris atbildēja ar {{statusCode}} kodu." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "Šeit tiks uzskaitītas visas avota lietošanas laikā radušās kļūdas, lai palīdzētu atkļūdot." +msgstr "" +"Šeit tiks uzskaitītas visas avota lietošanas laikā radušās kļūdas, lai " +"palīdzētu atkļūdot." #: views.py:68 msgid "No log entries available" @@ -614,9 +655,11 @@ msgstr "Loga ieraksti avotiem: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Neviens interaktīvs dokumentu avots nav definēts vai neviens no tiem nav iespējots, izveidojiet to pirms turpināšanas." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Neviens interaktīvs dokumentu avots nav definēts vai neviens no tiem nav " +"iespējots, izveidojiet to pirms turpināšanas." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -634,7 +677,9 @@ msgstr "Skenēšana" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "Kļūda, izpildot dokumenta augšupielādes uzdevumu; %(exception)s, %(exception_class)s" +msgstr "" +"Kļūda, izpildot dokumenta augšupielādes uzdevumu; %(exception)s, " +"%(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." @@ -643,7 +688,9 @@ msgstr "Jauns dokuments tiek rindā augšupielādēts un drīz būs pieejams." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "Augšupielādējiet "%(document_type)s" tipa dokumentu no avota: %(source)s" +msgstr "" +"Augšupielādējiet "%(document_type)s" tipa dokumentu no avota: " +"%(source)s" #: views.py:378 #, python-format @@ -652,7 +699,8 @@ msgstr "Dokuments "%s" ir bloķēts jaunu versiju augšupielādei." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "Jauna dokumenta versija tiek augšupielādēta rindā un būs pieejama drīz." +msgstr "" +"Jauna dokumenta versija tiek augšupielādēta rindā un būs pieejama drīz." #: views.py:472 #, python-format @@ -670,7 +718,11 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "Tas veiks avota pārbaudes kodu pat tad, ja avots nav iespējots. Avoti, kas dzēš saturu pēc lejupielādes, to nedarīs, kamēr tie tiks pārbaudīti. Pārbaudes laikā pārbaudiet avota kļūdas žurnālu. Veiksmīgs tests notīra kļūdas žurnālu." +msgstr "" +"Tas veiks avota pārbaudes kodu pat tad, ja avots nav iespējots. Avoti, kas " +"dzēš saturu pēc lejupielādes, to nedarīs, kamēr tie tiks pārbaudīti. " +"Pārbaudes laikā pārbaudiet avota kļūdas žurnālu. Veiksmīgs tests notīra " +"kļūdas žurnālu." #: views.py:513 #, python-format @@ -702,7 +754,11 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "Avoti nodrošina līdzekļus dokumentu augšupielādēšanai. Daži avoti, piemēram, tīmekļa veidlapa, ir interaktīvi un pieprasa, lai lietotājs to izmantotu. Citi, piemēram, e-pasta avoti, ir automātiski un darbojas fonā bez lietotāja iejaukšanās." +msgstr "" +"Avoti nodrošina līdzekļus dokumentu augšupielādēšanai. Daži avoti, piemēram, " +"tīmekļa veidlapa, ir interaktīvi un pieprasa, lai lietotājs to izmantotu. " +"Citi, piemēram, e-pasta avoti, ir automātiski un darbojas fonā bez lietotāja " +"iejaukšanās." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po index 49a71e9228..cd64086bab 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -71,7 +72,8 @@ msgstr "Uitpakken gecomprimeerde bestanden" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "" +"Upload een gecomprimeerd archief van bestanden als individuele documenten" #: forms.py:68 views.py:485 msgid "Staging file" @@ -197,7 +199,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 e-mail" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-mail" @@ -235,7 +237,8 @@ msgstr "" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." +msgstr "" +"Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." #: models/base.py:182 msgid "Document type" @@ -266,37 +269,36 @@ msgstr "Loginvoer" msgid "Log entries" msgstr "Loginvoer" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Wachtwoord" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -339,33 +341,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-mail" @@ -479,7 +481,9 @@ msgstr "" #: models/staging_folder_sources.py:98 #, python-format msgid "Unable get list of staging files: %s" -msgstr "Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. Foutmelding: %s" +msgstr "" +"Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. " +"Foutmelding: %s" #: models/watch_folder_sources.py:34 msgid "Server side filesystem path to scan for files." @@ -615,8 +619,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index d7a5d87b7b..7773c8be1d 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012-2013 # Wojciech Warczakowski , 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -198,7 +201,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -267,37 +270,36 @@ msgstr "Wpis do dziennika" msgid "Log entries" msgstr "Wpisy rejestru logów" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Nazwa użytkownika" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Hasło" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -340,33 +342,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -616,8 +618,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index 8d847cca18..da4c3f7d73 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Manuela Silva , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -72,7 +73,9 @@ msgstr "Expandir ficheiros comprimidos" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" +msgstr "" +"Enviar os ficheiros contidos num ficheiro comprimido como documentos " +"individuais" #: forms.py:68 views.py:485 msgid "Staging file" @@ -198,7 +201,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -267,37 +270,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Senha" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -340,33 +342,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -616,8 +618,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po index 82b9525d39..29788c2913 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -35,7 +36,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Fontes de documentos são a forma como os novos documentos são alimentados ao Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder carregar documentos a partir de um navegador." +msgstr "" +"Fontes de documentos são a forma como os novos documentos são alimentados ao " +"Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder " +"carregar documentos a partir de um navegador." #: apps.py:71 msgid "Type" @@ -73,7 +77,8 @@ msgstr "Expandir arquivos compactados" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "" +"Upload de um arquivo compactado contendo arquivos como documentos individuais" #: forms.py:68 views.py:485 msgid "Staging file" @@ -199,7 +204,7 @@ msgstr "Pasta Temporária" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "E-mail IMAP" @@ -237,7 +242,8 @@ msgstr "intervalo" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Atribuir um tipo de documento para documentos enviados a partir desta fonte." +msgstr "" +"Atribuir um tipo de documento para documentos enviados a partir desta fonte." #: models/base.py:182 msgid "Document type" @@ -268,38 +274,47 @@ msgstr "Entrada de registro" msgid "Log entries" msgstr "As entradas de log" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." +msgstr "" +"Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, " +"993 para IMAP sobre SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Porta" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Usuário" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Senha" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Nome do anexo que contém os nomes de tipo de metadados e os pares de valores a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem de ser o primeiro anexo." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Nome do anexo que contém os nomes de tipo de metadados e os pares de valores " +"a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem " +"de ser o primeiro anexo." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -309,7 +324,9 @@ msgstr "Nome do metadado anexado" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o assunto do e-mail." +msgstr "" +"Selecione um tipo de metadados válido para o tipo de documento selecionado " +"para armazenar o assunto do e-mail." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -319,7 +336,9 @@ msgstr "Tipo de metadado do assunto" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o valor \"de\" do e-mail." +msgstr "" +"Selecione um tipo de metadados válido para o tipo de documento selecionado " +"para armazenar o valor \"de\" do e-mail." #: models/email_sources.py:73 msgid "From metadata type" @@ -341,33 +360,37 @@ msgstr "E-mail Fonte" msgid "Email sources" msgstr "E-mail Fontes" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o documento do tipo: %(document_type)s" +msgstr "" +"Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o " +"documento do tipo: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o tipo de documento: %(document_type)s" +msgstr "" +"Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o " +"tipo de documento: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Pasta de email IMAP de onde checar por mensagens." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Caixa de correio" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "E-mail POP3" @@ -617,9 +640,11 @@ msgstr "Registrar entradas para fonte: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. Criar uma antes de prosseguir." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. " +"Criar uma antes de prosseguir." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po index d652131390..5e77673a0d 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Abalaru Paul , 2013 # Badea Gabriel , 2013 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-08 07:32+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -34,7 +36,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Sursele de documente sunt modul în care documente noi alimentează Mayan EDMS, creează cel puțin o sursă de formă web pentru a putea încărca documente dintr-un browser." +msgstr "" +"Sursele de documente sunt modul în care documente noi alimentează Mayan " +"EDMS, creează cel puțin o sursă de formă web pentru a putea încărca " +"documente dintr-un browser." #: apps.py:71 msgid "Type" @@ -60,7 +65,9 @@ msgstr "Mesaj" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "Utilitate furnizată de pachetul SANE. Folosit pentru a controla scanerul și pentru a obține imaginea documentului scanat." +msgstr "" +"Utilitate furnizată de pachetul SANE. Folosit pentru a controla scanerul și " +"pentru a obține imaginea documentului scanat." #: forms.py:30 msgid "Comment" @@ -72,7 +79,9 @@ msgstr "Dezarhivare fișiere comprimate" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" +msgstr "" +"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " +"individuale" #: forms.py:68 views.py:485 msgid "Staging file" @@ -198,7 +207,7 @@ msgstr "Dosarul de urmărire" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "E-mail IMAP" @@ -267,38 +276,47 @@ msgstr "Intrare în jurnal" msgid "Log entries" msgstr "Intrările de jurnal" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Gazdă" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Opțiunile tipice sunt 110 pentru POP3, 995 pentru POP3 peste SSL, 143 pentru IMAP, 993 pentru IMAP peste SSL." +msgstr "" +"Opțiunile tipice sunt 110 pentru POP3, 995 pentru POP3 peste SSL, 143 pentru " +"IMAP, 993 pentru IMAP peste SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Nume de utilizator" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Parola" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Numele atașamentului care va conține nume de perechi de metadate și perechi de valori care vor fi atribuite restului atașamentelor descărcate. Notă: acest atașament trebuie să fie primul atașament." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"Numele atașamentului care va conține nume de perechi de metadate și perechi " +"de valori care vor fi atribuite restului atașamentelor descărcate. Notă: " +"acest atașament trebuie să fie primul atașament." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -308,7 +326,9 @@ msgstr "Numele atașamentului metadatelor" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Selectați un tip de metadate valabil pentru tipul de document selectat în care să stocați subiectul e-mailului." +msgstr "" +"Selectați un tip de metadate valabil pentru tipul de document selectat în " +"care să stocați subiectul e-mailului." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -318,7 +338,9 @@ msgstr "Tip de metadate subiect" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Selectați un tip de metadate valabil pentru tipul de document selectat în care să se stocheze valoarea \"de la\" a e-mailului." +msgstr "" +"Selectați un tip de metadate valabil pentru tipul de document selectat în " +"care să se stocheze valoarea \"de la\" a e-mailului." #: models/email_sources.py:73 msgid "From metadata type" @@ -340,33 +362,37 @@ msgstr "Sursa de e-mail" msgid "Email sources" msgstr "Surse de e-mail" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tipul de metadate Subiect \"%(metadata_type)s\" nu este valid pentru tipul de document: %(document_type)s" +msgstr "" +"Tipul de metadate Subiect \"%(metadata_type)s\" nu este valid pentru tipul " +"de document: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tipul de metadate \"De la\" \"%(metadata_type)s\" nu este valabil pentru tipul de document: %(document_type)s" +msgstr "" +"Tipul de metadate \"De la\" \"%(metadata_type)s\" nu este valabil pentru " +"tipul de document: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Căsuța poștală IMAP din care să se verifice mesajele." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Căsuță poștală" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Pauză" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Emailul POP" @@ -382,7 +408,9 @@ msgstr "Nume dispozitiv" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Selectează modul de scanare (de ex., Linie grafică, monocrom sau culoare). Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "" +"Selectează modul de scanare (de ex., Linie grafică, monocrom sau culoare). " +"Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:41 msgid "Mode" @@ -393,7 +421,9 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Setează rezoluția imaginii scanate în DPI (puncte per inch). Valoarea tipică este 200. Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "" +"Setează rezoluția imaginii scanate în DPI (puncte per inch). Valoarea tipică " +"este 200. Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:48 msgid "Resolution" @@ -403,7 +433,9 @@ msgstr "Rezoluţie" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Selectează sursa de scanare (cum ar fi un alimentator de documente). Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "" +"Selectează sursa de scanare (cum ar fi un alimentator de documente). Dacă " +"această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:54 msgid "Paper source" @@ -413,7 +445,9 @@ msgstr "Sursa hărtiei" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Selectează modul alimentatorului de documente (simplex / duplex). Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "" +"Selectează modul alimentatorului de documente (simplex / duplex). Dacă " +"această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -490,7 +524,9 @@ msgstr "Calea sistemului de fișiere de pe server pentru scanarea fișierelor." msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "Dacă este bifată, nu doar calea directorului nu va fi scanată numai pentru fișiere, ci și subdirectoarele sale." +msgstr "" +"Dacă este bifată, nu doar calea directorului nu va fi scanată numai pentru " +"fișiere, ci și subdirectoarele sale." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -554,17 +590,23 @@ msgstr "Încărcați documentul" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Calea fișierului către programul de scanare utilizat pentru a controla scanerele de imagine." +msgstr "" +"Calea fișierului către programul de scanare utilizat pentru a controla " +"scanerele de imagine." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "Calea către subclasa de stocare care trebuie utilizată la stocarea fișierelor de imagini staging_file memorate în memoria cache." +msgstr "" +"Calea către subclasa de stocare care trebuie utilizată la stocarea " +"fișierelor de imagini staging_file memorate în memoria cache." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." -msgstr "Argumentele care trebuie transmise către SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." +msgstr "" +"Argumentele care trebuie transmise către " +"SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." #: tasks.py:46 #, python-format @@ -603,7 +645,9 @@ msgstr "Serverul a răspuns cu codul {{statusCode}}." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "Orice eroare produsă în timpul utilizării unei surse va fi listată aici pentru a ajuta la depanare." +msgstr "" +"Orice eroare produsă în timpul utilizării unei surse va fi listată aici " +"pentru a ajuta la depanare." #: views.py:68 msgid "No log entries available" @@ -616,9 +660,11 @@ msgstr "Înregistrări de intrări pentru sursă: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nu s-au definit surse de documente interactive sau nici una nu a fost activată, creați una înainte de a continua." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nu s-au definit surse de documente interactive sau nici una nu a fost " +"activată, creați una înainte de a continua." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -636,16 +682,21 @@ msgstr "Scanează" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "Eroare la executarea sarcinii de încărcare a documentelor; %(exception)s, %(exception_class)s" +msgstr "" +"Eroare la executarea sarcinii de încărcare a documentelor; %(exception)s, " +"%(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." -msgstr "Documentul cel nou este în coada de așteptare pentru încărcare și va fi disponibil în scurt timp." +msgstr "" +"Documentul cel nou este în coada de așteptare pentru încărcare și va fi " +"disponibil în scurt timp." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "Încărcați un document de tipul \"%(document_type)s\" din sursa: %(source)s" +msgstr "" +"Încărcați un document de tipul \"%(document_type)s\" din sursa: %(source)s" #: views.py:378 #, python-format @@ -654,7 +705,9 @@ msgstr "Documentul \"%s\" este blocat de la încărcarea de noi versiuni." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "Versiunea nouă a documentului este în coada de așteptare pentru încărcare și va fi disponibilă în scurt timp." +msgstr "" +"Versiunea nouă a documentului este în coada de așteptare pentru încărcare și " +"va fi disponibilă în scurt timp." #: views.py:472 #, python-format @@ -672,7 +725,12 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "Aceasta va executa codul de verificare sursă, chiar dacă sursa nu este activată. Sursele care șterg conținutul după descărcare nu vor face acest lucru în timp ce sunt testate. Verificați jurnalul de erori al sursei pentru informații în timpul testelor. Un test cu succes va elimina jurnalul de erori." +msgstr "" +"Aceasta va executa codul de verificare sursă, chiar dacă sursa nu este " +"activată. Sursele care șterg conținutul după descărcare nu vor face acest " +"lucru în timp ce sunt testate. Verificați jurnalul de erori al sursei pentru " +"informații în timpul testelor. Un test cu succes va elimina jurnalul de " +"erori." #: views.py:513 #, python-format @@ -704,7 +762,11 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "Sursele oferă mijloacele de încărcare a documentelor. Unele surse, cum ar fi formularul web, sunt interactive și necesită introducerea manuală de la utilizatori pentru a funcționa. Altele, precum sursele de e-mail, sunt automate și rulează în fundal. fără intervenția utilizatorului." +msgstr "" +"Sursele oferă mijloacele de încărcare a documentelor. Unele surse, cum ar fi " +"formularul web, sunt interactive și necesită introducerea manuală de la " +"utilizatori pentru a funcționa. Altele, precum sursele de e-mail, sunt " +"automate și rulează în fundal. fără intervenția utilizatorului." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index ce5eec22b8..dfe21c348b 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -33,7 +36,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Источники документов - это способы получения Mayan EDMS новых документов. Как минимум, чтобы можно было загружать документы из браузера, создайте веб-форму." +msgstr "" +"Источники документов - это способы получения Mayan EDMS новых документов. " +"Как минимум, чтобы можно было загружать документы из браузера, создайте веб-" +"форму." #: apps.py:71 msgid "Type" @@ -197,7 +203,7 @@ msgstr "Наблюдаемая папка" msgid "POP3 email" msgstr "почтовый ящик POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "почтовый ящик IMAP" @@ -235,7 +241,8 @@ msgstr "Интервал" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "Назначить тип документов для документов, загружаемых из этого источника." +msgstr "" +"Назначить тип документов для документов, загружаемых из этого источника." #: models/base.py:182 msgid "Document type" @@ -266,37 +273,38 @@ msgstr "Запись журнала" msgid "Log entries" msgstr "Записи журнала" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Хост" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Обычно выбирают 110 для POP3, 995 для POP3 с SSL, 143 для IMAP, 993 для IMAP с SSL" +msgstr "" +"Обычно выбирают 110 для POP3, 995 для POP3 с SSL, 143 для IMAP, 993 для IMAP " +"с SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Порт" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Имя пользователя" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Пароль" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -307,7 +315,9 @@ msgstr "Название файла-вложения с метаданными" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Выберите тип метаданных, подходящий для выбранного типа документа, в котором сохранять тему письма." +msgstr "" +"Выберите тип метаданных, подходящий для выбранного типа документа, в котором " +"сохранять тему письма." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -317,7 +327,9 @@ msgstr "Тип метаданных для темы письма" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Выберите тип метаданных, подходящий для выбранного типа документа, в котором сохранять корреспондента письма." +msgstr "" +"Выберите тип метаданных, подходящий для выбранного типа документа, в котором " +"сохранять корреспондента письма." #: models/email_sources.py:73 msgid "From metadata type" @@ -339,33 +351,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP ящик в котором проверять сообщения." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Таймаут" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP email" @@ -615,9 +627,11 @@ msgstr "Записи журнала для источника: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Интерактивные источники документов не были определены или включены, создайте один для продолжения." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Интерактивные источники документов не были определены или включены, создайте " +"один для продолжения." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po index c57c9bba24..dbbd02de3a 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -195,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -264,37 +266,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -613,8 +614,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po index 335c35570a..6f9078985f 100644 --- a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -33,7 +34,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Belge kaynakları, yeni belgelerin JBM EDMS'e gönderilme şeklidir, bir tarayıcıdan belge yükleyebilmek için en az bir web formu kaynağı oluşturmalısınız." +msgstr "" +"Belge kaynakları, yeni belgelerin JBM EDMS'e gönderilme şeklidir, bir " +"tarayıcıdan belge yükleyebilmek için en az bir web formu kaynağı " +"oluşturmalısınız." #: apps.py:71 msgid "Type" @@ -71,7 +75,8 @@ msgstr "Sıkıştırılmış dosyaları genişlet" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Sıkıştırılmış bir dosyanın içerdiği dosyaları tek tek belgeler olarak yükle" +msgstr "" +"Sıkıştırılmış bir dosyanın içerdiği dosyaları tek tek belgeler olarak yükle" #: forms.py:68 views.py:485 msgid "Staging file" @@ -197,7 +202,7 @@ msgstr "İzleme Klasörü" msgid "POP3 email" msgstr "POP3 e-postası" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-postası" @@ -266,38 +271,46 @@ msgstr "Kayıt girişi" msgid "Log entries" msgstr "Kayıt girdileri" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Sunucu" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Tipik seçimler POP3 için 110, SSL üzerinden POP3 için 995, IMAP için 143, SSL üzerinden IMAP için 993'tür." +msgstr "" +"Tipik seçimler POP3 için 110, SSL üzerinden POP3 için 995, IMAP için 143, " +"SSL üzerinden IMAP için 993'tür." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Kullanıcı adı" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Parola" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "İndirilen eklerin geri kalanına atanacak meta veri türü adlarını ve değer çiftlerini içeren ekin adını. Not: Bu ek ilk eki olmalı." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"İndirilen eklerin geri kalanına atanacak meta veri türü adlarını ve değer " +"çiftlerini içeren ekin adını. Not: Bu ek ilk eki olmalı." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -307,7 +320,9 @@ msgstr "Meta veri eki adı" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "E-postanın konusunu depolamak için seçilen doküman türü için geçerli bir meta veri türü seçin." +msgstr "" +"E-postanın konusunu depolamak için seçilen doküman türü için geçerli bir " +"meta veri türü seçin." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -317,7 +332,9 @@ msgstr "Konu metadata türü" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "E-postanın \"başlangıç\" değerinden hangisini depolayacağını belirlemek için geçerli bir meta veri türü seçin." +msgstr "" +"E-postanın \"başlangıç\" değerinden hangisini depolayacağını belirlemek " +"için geçerli bir meta veri türü seçin." #: models/email_sources.py:73 msgid "From metadata type" @@ -339,33 +356,37 @@ msgstr "E-posta kaynağı" msgid "Email sources" msgstr "E-posta kaynakları" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Konu meta verileri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" +msgstr "" +"Konu meta verileri türü \"%(metadata_type)s\" belge türü için geçerli değil: " +"%(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "\"Kimden\" meta veri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" +msgstr "" +"\"Kimden\" meta veri türü \"%(metadata_type)s\" belge türü için geçerli " +"değil: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Mesajların kontrol edileceği IMAP Posta Kutusu." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Posta kutusu" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Zaman aşımı" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-postası" @@ -381,7 +402,9 @@ msgstr "Cihaz adı" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Tarama modunu seçer (örn. Çizgi, tek renkli veya renk). Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." +msgstr "" +"Tarama modunu seçer (örn. Çizgi, tek renkli veya renk). Bu seçenek " +"tarayıcınız tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:41 msgid "Mode" @@ -392,7 +415,10 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Taranan görüntünün çözünürlüğünü DPI olarak (nokta / inç) ayarlar. Tipik değer 200'tür. Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." +msgstr "" +"Taranan görüntünün çözünürlüğünü DPI olarak (nokta / inç) ayarlar. Tipik " +"değer 200'tür. Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş " +"bırakın." #: models/scanner_sources.py:48 msgid "Resolution" @@ -402,7 +428,9 @@ msgstr "Çözünürlük" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Tarama kaynağını seçer (bir belge besleyici gibi). Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." +msgstr "" +"Tarama kaynağını seçer (bir belge besleyici gibi). Bu seçenek tarayıcınız " +"tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:54 msgid "Paper source" @@ -412,7 +440,9 @@ msgstr "Kağıt kaynağı" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Doküman besleyici modunu (simplex / duplex) seçer. Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." +msgstr "" +"Doküman besleyici modunu (simplex / duplex) seçer. Bu seçenek tarayıcınız " +"tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -553,7 +583,9 @@ msgstr "Belge yükle" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "Görüntü tarayıcılarını kontrol etmek için kullanılan scanimage programının dosya yolu." +msgstr "" +"Görüntü tarayıcılarını kontrol etmek için kullanılan scanimage programının " +"dosya yolu." #: settings.py:22 msgid "" @@ -615,9 +647,11 @@ msgstr "Kaynak için günlük girdileri: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Etkileşimli belge kaynakları tanımlanmamış veya hiçbiri etkinleştirilmemiş, devam etmeden önce bir tane oluşturun." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Etkileşimli belge kaynakları tanımlanmamış veya hiçbiri etkinleştirilmemiş, " +"devam etmeden önce bir tane oluşturun." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po index 1e2b8000dd..776595c169 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -196,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +266,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" @@ -614,8 +614,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po index a7515ca0a4..7eb0d5acaa 100644 --- a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-05 06:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -32,7 +33,9 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "文档源是将新文档提供给Mayan EDMS的方式,至少创建一个网页表单源以便能够从浏览器上传文档。" +msgstr "" +"文档源是将新文档提供给Mayan EDMS的方式,至少创建一个网页表单源以便能够从浏览" +"器上传文档。" #: apps.py:71 msgid "Type" @@ -196,7 +199,7 @@ msgstr "监视文件夹" msgid "POP3 email" msgstr "POP3电子邮件" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP电子邮件" @@ -265,38 +268,46 @@ msgstr "日志条目" msgid "Log entries" msgstr "日志条目" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "主机" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "对于POP3,典型的选择是110,对于基于SSL的POP3为995,对于IMAP为143,对于基于SSL的IMAP为993。" +msgstr "" +"对于POP3,典型的选择是110,对于基于SSL的POP3为995,对于IMAP为143,对于基于SSL" +"的IMAP为993。" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "端口" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "用户名" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "密码" -#: models/email_sources.py:55 +#: models/email_sources.py:56 +#, fuzzy +#| msgid "" +#| "Name of the attachment that will contains the metadata type names and " +#| "value pairs to be assigned to the rest of the downloaded attachments. " +#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "附件的名称,其中包含要分配给其余下载附件的元数据类型名称和值对。注意:此附件必须是第一个附件。" +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" +"附件的名称,其中包含要分配给其余下载附件的元数据类型名称和值对。注意:此附件" +"必须是第一个附件。" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -338,33 +349,33 @@ msgstr "电邮来源" msgid "Email sources" msgstr "电邮来源" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "主题元数据类型“%(metadata_type)s”对于文档类型%(document_type)s无效" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "“发件人”元数据类型“%(metadata_type)s”对于文档类型%(document_type)s无效" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP邮箱,用于检查邮件。" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "邮箱" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "超时" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP电子邮件" @@ -380,7 +391,9 @@ msgstr "设备名称" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "选择扫描模式(例如,艺术线条,单色或彩色)。如果扫描仪不支持此选项,请将其留空。" +msgstr "" +"选择扫描模式(例如,艺术线条,单色或彩色)。如果扫描仪不支持此选项,请将其留" +"空。" #: models/scanner_sources.py:41 msgid "Mode" @@ -391,7 +404,9 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "以DPI(每英寸点数)设置扫描图像的分辨率。典型值为200.如果扫描仪不支持此选项,请将其留空。" +msgstr "" +"以DPI(每英寸点数)设置扫描图像的分辨率。典型值为200.如果扫描仪不支持此选项," +"请将其留空。" #: models/scanner_sources.py:48 msgid "Resolution" @@ -614,8 +629,8 @@ msgstr "源%s的日志条目" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "没有定义交互式文档源或没有启用任何交互式文档源,在继续之前创建一个。" #: views.py:153 views.py:171 views.py:181 @@ -702,7 +717,9 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "来源提供上传文件的方法。某些来源,如网页表单,是交互式的,需要用户输入才能运行。其他来源,如电子邮件,是自动的,无需用户干预即可在后台运行。" +msgstr "" +"来源提供上传文件的方法。某些来源,如网页表单,是交互式的,需要用户输入才能运" +"行。其他来源,如电子邮件,是自动的,无需用户干预即可在后台运行。" #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index 53f0e95f06..9bcafbf556 100644 --- a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index 21ee4f817e..37b0f145b0 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po index 585dab7b42..6690da812a 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -26,4 +28,6 @@ msgstr "Skladište" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Privremeni direktorijum korišćen širokim spektrom za čuvanje sličica, preglednika i privremenih datoteka." +msgstr "" +"Privremeni direktorijum korišćen širokim spektrom za čuvanje sličica, " +"preglednika i privremenih datoteka." diff --git a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po index 6837b4b60e..c0fe359bf5 100644 --- a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jiri Fait , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po index cb32bb85d7..90c6fd71c5 100644 --- a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po index 01b8e2f0d6..b86ac8d255 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-28 21:14+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "Dateispeicher" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Temporäres Verzeichnis zum systemweiten Speichern von Miniaturbildern, Vorschauen und temporären Dateien. " +msgstr "" +"Temporäres Verzeichnis zum systemweiten Speichern von Miniaturbildern, " +"Vorschauen und temporären Dateien. " diff --git a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po index 3ee3d01468..07e1b5e0ec 100644 --- a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -25,4 +26,6 @@ msgstr "Αποθηκευτικός χώρος" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Προσωρινός φάκελος που χρησιμοποιείται από όλο τον ιστότοπο για να αποθηκεύονται μικρογραφίες, προεπισκοπήσεις και προσωρινά αρχεία." +msgstr "" +"Προσωρινός φάκελος που χρησιμοποιείται από όλο τον ιστότοπο για να " +"αποθηκεύονται μικρογραφίες, προεπισκοπήσεις και προσωρινά αρχεία." diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index 9dd424b1ac..da0362632d 100644 --- a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index cf23fc6afd..9e664155a4 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-28 01:42+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "Almacenamiento" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Directorio temporero utilizado en todo la instalación para almacenar imágenes en miniatura, visualizaciones y archivos temporeros." +msgstr "" +"Directorio temporero utilizado en todo la instalación para almacenar " +"imágenes en miniatura, visualizaciones y archivos temporeros." diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index ce38360138..d22dde4ac8 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "ذخیره سازی" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "دایرکتوری موقت از سایت گسترده برای ذخیره ریز عکسها، پیش نمایش ها و فایل های موقت استفاده می کند." +msgstr "" +"دایرکتوری موقت از سایت گسترده برای ذخیره ریز عکسها، پیش نمایش ها و فایل های " +"موقت استفاده می کند." diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 51fc7cb28f..6f6d7b3570 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yves Dubois \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "Stockage" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Répertoire temporaire utilisé pour stocker les vignettes, aperçus et fichiers temporaires." +msgstr "" +"Répertoire temporaire utilisé pour stocker les vignettes, aperçus et " +"fichiers temporaires." diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index ec405b3812..47896c820e 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 2176190bad..46dc9c112f 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Adek Lanin, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-14 11:35+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index 97b52c91bd..df3d9fe8e1 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "Magazzino " msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, anteprime e files temporanei" +msgstr "" +"Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, " +"anteprime e files temporanei" diff --git a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po index 2cde3a22a6..410679571c 100644 --- a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:51+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -26,4 +28,6 @@ msgstr "Glabāšana" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Pagaidu katalogs, ko izmanto vietnes platumā, lai saglabātu sīktēlus, priekšskatījumus un pagaidu failus." +msgstr "" +"Pagaidu katalogs, ko izmanto vietnes platumā, lai saglabātu sīktēlus, " +"priekšskatījumus un pagaidu failus." diff --git a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po index c96a7b427d..7df584d74f 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Johan Braeken\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "Opslag" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Globale instelling voor een tijdelijke folder om miniaturen, voorvertoningen en tijdelijke bestanden in op te slaan." +msgstr "" +"Globale instelling voor een tijdelijke folder om miniaturen, voorvertoningen " +"en tijdelijke bestanden in op te slaan." diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 23edd75f9c..3e97982b3b 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniel Winiarski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -26,4 +29,6 @@ msgstr "Magazyn" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Katalog tymczasowy używany jest ogólnie do przechowywania miniaturek, plików poglądowych i plików tymczasowych." +msgstr "" +"Katalog tymczasowy używany jest ogólnie do przechowywania miniaturek, plików " +"poglądowych i plików tymczasowych." diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index 69762344c9..648518cd57 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po index e20cc7eccb..4adbf8c322 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 @@ -26,4 +27,6 @@ msgstr "Armazenamento" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Pasta temporária utilizada em todo o site para armazenar imagens em miniatura, visualizações e arquivos temporários." +msgstr "" +"Pasta temporária utilizada em todo o site para armazenar imagens em " +"miniatura, visualizações e arquivos temporários." diff --git a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po index 180889a74b..f99e6778a3 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -26,4 +28,6 @@ msgstr "Stocare" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Directorul temporar a folosit în server pentru a stoca miniaturi, previzualizări și fișiere temporare." +msgstr "" +"Directorul temporar a folosit în server pentru a stoca miniaturi, " +"previzualizări și fișiere temporare." diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index 77e1821c09..bdcd3f3795 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po index 063df93bb1..d798d1418f 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po index c8bbed4b69..4632719fd6 100644 --- a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po index 7eca307ac7..83624ef004 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po index 151f84d963..a4e0c702eb 100644 --- a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index 38fb823c36..07e5dca1b6 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po @@ -1,30 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "الكلمات الاستدلالية" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "الوثائق" @@ -44,7 +46,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -310,20 +312,21 @@ msgstr "" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "" +"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index 3b09210778..3f36d189e6 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po @@ -1,30 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Етикети" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Документи" @@ -44,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -304,14 +305,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po index e4e47b13d9..f3b9a2018f 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,23 +9,25 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tagovi" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenti" @@ -45,7 +47,7 @@ msgstr "" msgid "Tag removed from document" msgstr "Oznaka je uklonjena iz dokumenta" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Uklonite oznaku" @@ -141,13 +143,17 @@ msgstr "Ukloni tagove iz dokumenta" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Spisak primarnih ključeva dokumenata koji su odvojeni zarezom na koje će ova oznaka biti pričvršćena." +msgstr "" +"Spisak primarnih ključeva dokumenata koji su odvojeni zarezom na koje će ova " +"oznaka biti pričvršćena." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL koji pokazuje oznaku u odnosu na dokument koji je prikačen na njega. Ova URL adresa se razlikuje od URL kanonskog oznaka." +msgstr "" +"API URL koji pokazuje oznaku u odnosu na dokument koji je prikačen na njega. " +"Ova URL adresa se razlikuje od URL kanonskog oznaka." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -308,14 +314,14 @@ msgstr "Tag \"%(tag)s\" uspješno uklonjen iz dokumenta \"%(document)s\"." msgid "Select tags" msgstr "Izaberite oznake" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Oznake koje treba priložiti dokumentu" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Priloži oznaku" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Oznake koje treba ukloniti iz dokumenta" diff --git a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po index 572c6993dc..d869fb1603 100644 --- a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po @@ -1,29 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenty" @@ -43,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -309,14 +311,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po index 992534def4..97cccce2c5 100644 --- a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po @@ -1,29 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenter" @@ -43,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -303,14 +304,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po index b2b94f63d5..946777fc21 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Jesaja Everling , 2017 @@ -10,23 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumente" @@ -46,7 +47,7 @@ msgstr "Tag bearbeitet" msgid "Tag removed from document" msgstr "Tag von Dokument entfernt" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Tag entfernen" @@ -142,13 +143,17 @@ msgstr "Tags von Dokumenten entfernen" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Kommagetrennte Liste der Primärschlüssel von Dokumenten, denen dieser Tag zugeordnet werden soll." +msgstr "" +"Kommagetrennte Liste der Primärschlüssel von Dokumenten, denen dieser Tag " +"zugeordnet werden soll." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL, die auf den Tag in Beziehung auf das Dokument verweist. Diese URL ist unterschiedlich von der kanonischen Tag-URL." +msgstr "" +"API URL, die auf den Tag in Beziehung auf das Dokument verweist. Diese URL " +"ist unterschiedlich von der kanonischen Tag-URL." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -306,14 +311,14 @@ msgstr "Tag \"%(tag)s\" erfolgreich von Dokument \"%(document)s\" entfernt." msgid "Select tags" msgstr "Tags auswählen" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Tags die an das Dokument angehängt werden sollen" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Tag zuweisen" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Tags die vom Dokument entfernt werden sollen" diff --git a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po index bccc5e9a2a..8bd0b1b2cb 100644 --- a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po @@ -1,29 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Ετικέτες" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Έγγραφα" @@ -43,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "Ετικέτα αφαιρέθηκε από το έγγραφο" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Αφαίρεση ετικέτας" @@ -139,7 +140,9 @@ msgstr "Αφαίρεση ετικετών από έγγραφα" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Λίστα (χωρισμένη με κόμμα) πρωτευόντων κελιδιών εγγράφων στα οποία θα προσαρτηθεί αυτή η ετικέτα." +msgstr "" +"Λίστα (χωρισμένη με κόμμα) πρωτευόντων κελιδιών εγγράφων στα οποία θα " +"προσαρτηθεί αυτή η ετικέτα." #: serializers.py:86 msgid "" @@ -189,7 +192,8 @@ msgstr "Έγγραφο \"%(document)s\" είναι ήδη σημασμένο ω #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Ετικέτα \"%(tag)s\" επικολήθηκε με επιτυχία στο έγγραφο \"%(document)s\"." +msgstr "" +"Ετικέτα \"%(tag)s\" επικολήθηκε με επιτυχία στο έγγραφο \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -297,20 +301,21 @@ msgstr "Το έγγραφο \"%(document)s\" δεν ήταν σημασμένο #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Η ετικέτα \"%(tag)s\" αφαιρέθηκε επιτυχώς από το έγγραφο \"%(document)s\"." +msgstr "" +"Η ετικέτα \"%(tag)s\" αφαιρέθηκε επιτυχώς από το έγγραφο \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "ετικέτες που θα προστεθούν στο έγγραφο" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Προσθήκη ετικέτας" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Ετικέτες που θα αφαιρεθούν από το έγγραφο" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 04e7a0c709..6eb85acfe2 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,13 +18,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -304,14 +304,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 1410a0934e..24ba51f25e 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -10,23 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-28 19:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documentos" @@ -46,7 +47,7 @@ msgstr "Etiqueta editada" msgid "Tag removed from document" msgstr "Etiqueta retirada del documento" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Retirar etiqueta" @@ -142,13 +143,17 @@ msgstr "Retirar etiquetas de los documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Lista separada por comas de los ID primarios de documentos a los que se adjuntará esta etiqueta." +msgstr "" +"Lista separada por comas de los ID primarios de documentos a los que se " +"adjuntará esta etiqueta." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "URL de la API que apunta a una etiqueta en relación con el documento adjunto a ella. Esta URL es diferente de la URL canónica de la etiqueta." +msgstr "" +"URL de la API que apunta a una etiqueta en relación con el documento " +"adjunto a ella. Esta URL es diferente de la URL canónica de la etiqueta." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -242,7 +247,9 @@ msgstr "Editar etiqueta: %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "Las etiquetas son propiedades codificadas por colores que se pueden adjuntar o retirar de los documentos." +msgstr "" +"Las etiquetas son propiedades codificadas por colores que se pueden adjuntar " +"o retirar de los documentos." #: views.py:221 msgid "No tags available" @@ -300,20 +307,21 @@ msgstr "Documento \"%(document)s\" no esta etiquetado con \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "Seleccione etiquetas" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Etiquetas para adjuntar al documento" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Adjuntar etiqueta" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Etiquetas a retirar del documento" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index 3cccf36bca..b328275ea6 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -9,23 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "برچسب ها" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "اسناد" @@ -45,7 +46,7 @@ msgstr "" msgid "Tag removed from document" msgstr "برچسب از سند حذف شد" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "برچسب را حذف کنید" @@ -141,13 +142,16 @@ msgstr "برچسب ها را از اسناد حذف کنید" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "لیست کاملی از کلیدهای اصلی اسناد که این برچسب به آن متصل می شوند جدا شده است." +msgstr "" +"لیست کاملی از کلیدهای اصلی اسناد که این برچسب به آن متصل می شوند جدا شده است." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "URL API اشاره به یک برچسب در رابطه با سند متصل به آن. این URL متفاوت از URL تگ های کانونی است." +msgstr "" +"URL API اشاره به یک برچسب در رابطه با سند متصل به آن. این URL متفاوت از URL " +"تگ های کانونی است." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -186,7 +190,8 @@ msgstr "برچسب ها باید متصل شوند" #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "سند \"%(document)s\" در حال حاضر به عنوان \"%(tag)s\" برچسب گذاری شده است" +msgstr "" +"سند \"%(document)s\" در حال حاضر به عنوان \"%(tag)s\" برچسب گذاری شده است" #: views.py:122 #, python-format @@ -305,14 +310,14 @@ msgstr "برچسب \"%(tag)s\" با موفقیت از سند \"%(document)s\" ح msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "برچسب ها برای پیوستن به سند" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "ضمیمه برچسب" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "برچسب ها را از سند حذف کنید" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 276d1cb66d..98d402e4ce 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015,2017 # Christophe CHAUVET , 2015 @@ -13,23 +13,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Étiquettes" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documents" @@ -49,7 +50,7 @@ msgstr "Étiquette modifiée" msgid "Tag removed from document" msgstr "Étiquette retirée du document" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Retirer une étiquette" @@ -145,13 +146,17 @@ msgstr "Retirer des étiquettes des documents" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Liste séparée par des virgules des clés primaires de document auxquelles cette étiquette sera jointe." +msgstr "" +"Liste séparée par des virgules des clés primaires de document auxquelles " +"cette étiquette sera jointe." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "URL de l'API pointant vers une étiquette en relation au document qui s'y rattache. Cette URL est différente de l'URL de l'étiquette canonique." +msgstr "" +"URL de l'API pointant vers une étiquette en relation au document qui s'y " +"rattache. Cette URL est différente de l'URL de l'étiquette canonique." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -165,7 +170,8 @@ msgstr "Demande d'attachement d'une étiquette effectuée sur %(count)d document #: views.py:40 #, python-format msgid "Tag attach request performed on %(count)d documents" -msgstr "Demande d'attachement d'une étiquette effectuée sur %(count)d documents" +msgstr "" +"Demande d'attachement d'une étiquette effectuée sur %(count)d documents" #: views.py:47 msgid "Attach" @@ -195,7 +201,9 @@ msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s\"." +msgstr "" +"L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s" +"\"." #: views.py:131 msgid "Create tag" @@ -245,7 +253,9 @@ msgstr "Modifier l'étiquette : %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "Les étiquettes sont des propriétés, avec un code de couleur, pouvant être attachées ou supprimées à des documents." +msgstr "" +"Les étiquettes sont des propriétés, avec un code de couleur, pouvant être " +"attachées ou supprimées à des documents." #: views.py:221 msgid "No tags available" @@ -303,20 +313,22 @@ msgstr "Le document \"%(document)s\" n'a pas été étiquetté comme \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "L'étiquette \"%(tag)s\" à été retirée avec succès du document \"%(document)s\"." +msgstr "" +"L'étiquette \"%(tag)s\" à été retirée avec succès du document \"%(document)s" +"\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "Sélectionner les étiquettes" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Étiquettes à attacher au document" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Attacher une étiquette" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Étiquettes à retirer du document" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index 40918de5b0..c7fb3e6ab2 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -1,30 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Címkék" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumentumok" @@ -44,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Címke levétele" @@ -140,13 +141,17 @@ msgstr "Címkék levétele a dokumentumokról" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Vesszővel elválasztott lista az elsődleges dokumentum kulcsokkal amihez ez a címke hozzá lesz rendelve." +msgstr "" +"Vesszővel elválasztott lista az elsődleges dokumentum kulcsokkal amihez ez a " +"címke hozzá lesz rendelve." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "A dokumentumhoz kapcsolt címke API URL hivatkozása. Ez az URL más a kanonikus címke URL-től. " +msgstr "" +"A dokumentumhoz kapcsolt címke API URL hivatkozása. Ez az URL más a " +"kanonikus címke URL-től. " #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -190,7 +195,8 @@ msgstr "A \"%(document)s\" dokumentum már meg van címkézve mint \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "A \"%(tag)s\" címke sikeresen hozzárendelve a \"%(document)s\" dokumentumhoz." +msgstr "" +"A \"%(tag)s\" címke sikeresen hozzárendelve a \"%(document)s\" dokumentumhoz." #: views.py:131 msgid "Create tag" @@ -298,20 +304,22 @@ msgstr "A \"%(document)s\" dokumentum nem lett \"%(tag)s\"-el megcímkézve" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "A \"%(tag)s\" címke sikeresen leszedésre került a \"%(document)s\" dokumentumról." +msgstr "" +"A \"%(tag)s\" címke sikeresen leszedésre került a \"%(document)s\" " +"dokumentumról." #: wizard_steps.py:18 msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index 41bd554be4..3553220c03 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -1,29 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumen" @@ -43,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -300,14 +301,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index fe80a43de7..72a37b2429 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016-2017 @@ -11,23 +11,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etichette" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documenti" @@ -47,7 +48,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Rimuovi etichetta" @@ -143,13 +144,17 @@ msgstr "Rimuovi etichetta dal documento" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Lista separata da virgole di chiavi primarie di tipi documento da allegare a questo tag." +msgstr "" +"Lista separata da virgole di chiavi primarie di tipi documento da allegare a " +"questo tag." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL che indica un tag in relazione al documento a cui è associato. Questo URL è diverso dall'originale canonico URL." +msgstr "" +"API URL che indica un tag in relazione al documento a cui è associato. " +"Questo URL è diverso dall'originale canonico URL." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -193,7 +198,9 @@ msgstr "Il documento \"%(document)s\" è stato già etichettato come \"%(tag)s\" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "L'etichetta \"%(tag)s\" è stata allegata con successo al documento \"%(document)s\"" +msgstr "" +"L'etichetta \"%(tag)s\" è stata allegata con successo al documento " +"\"%(document)s\"" #: views.py:131 msgid "Create tag" @@ -301,20 +308,21 @@ msgstr "" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." +msgstr "" +"Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Allega etichetta" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po index 79b4e0e964..0d9897b31f 100644 --- a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po @@ -1,30 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:52+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenti" @@ -44,7 +46,7 @@ msgstr "Tag rediģēts" msgid "Tag removed from document" msgstr "Tag ir noņemta no dokumenta" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Noņemt tagu" @@ -140,13 +142,17 @@ msgstr "Noņemiet tagus no dokumentiem" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Komatu atdalītu dokumentu primāro atslēgu saraksts, kurām šī atzīme tiks pievienota." +msgstr "" +"Komatu atdalītu dokumentu primāro atslēgu saraksts, kurām šī atzīme tiks " +"pievienota." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL, kas norāda uz tagu saistībā ar tam pievienoto dokumentu. Šis URL atšķiras no kanoniskā taga URL." +msgstr "" +"API URL, kas norāda uz tagu saistībā ar tam pievienoto dokumentu. Šis URL " +"atšķiras no kanoniskā taga URL." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -186,12 +192,15 @@ msgstr "Pievienotie tagi." #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "Dokuments "%(document)s" jau ir atzīmēts kā "%(tag)s"" +msgstr "" +"Dokuments "%(document)s" jau ir atzīmēts kā "%(tag)s"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Tag "%(tag)s", kas veiksmīgi pievienots dokumentam "%(document)s"." +msgstr "" +"Tag "%(tag)s", kas veiksmīgi pievienots dokumentam "" +"%(document)s"." #: views.py:131 msgid "Create tag" @@ -242,7 +251,9 @@ msgstr "Rediģēt tagu: %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "Tags ir krāsu kodētas īpašības, kuras var pievienot vai noņemt no dokumentiem." +msgstr "" +"Tags ir krāsu kodētas īpašības, kuras var pievienot vai noņemt no " +"dokumentiem." #: views.py:221 msgid "No tags available" @@ -301,20 +312,22 @@ msgstr "Dokuments "%(document)s" netika atzīmēts kā "%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Tag "%(tag)s" veiksmīgi noņemts no dokumenta "%(document)s"." +msgstr "" +"Tag "%(tag)s" veiksmīgi noņemts no dokumenta "" +"%(document)s"." #: wizard_steps.py:18 msgid "Select tags" msgstr "Atlasiet tagus" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Dokumentam pievienotie tagi" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Pievienojiet tagu" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Atzīmes no dokumenta" diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po index 7353905e44..7958117bbc 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -1,30 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Labels" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documenten" @@ -44,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Label verwijderen" @@ -229,7 +230,8 @@ msgstr "Label \"%s\" verwijderd." #: views.py:184 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" +msgstr "" +"Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" #: views.py:199 #, python-format @@ -304,14 +306,14 @@ msgstr "Label: \"%(tag)s\" is verwijderd van document \"%(document)s\"." msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Voeg label bij" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index f979d70aab..2655d65f26 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012,2015 @@ -11,23 +11,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tagi" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenty" @@ -47,7 +50,7 @@ msgstr "" msgid "Tag removed from document" msgstr "Tag usunięty z dokumentu" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Usuń tag" @@ -143,13 +146,17 @@ msgstr "Usuń tagi z dokumentów" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Rozdzielona przecinkami lista kluczy głównych dokumentu, do którego ten tag zostanie dołączony." +msgstr "" +"Rozdzielona przecinkami lista kluczy głównych dokumentu, do którego ten tag " +"zostanie dołączony." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL wskazujący na tag w relacji do dokumentu, do którego został dołączony. URL ten różni się od kanonicznego URL-a taga." +msgstr "" +"API URL wskazujący na tag w relacji do dokumentu, do którego został " +"dołączony. URL ten różni się od kanonicznego URL-a taga." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -313,14 +320,14 @@ msgstr "Tag \"%(tag)s\" usunięty z dokumentu \"%(document)s\"." msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Tagi do załączenia do dokumentu" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Dołącz tag" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Tagi do usunięcia z dokumentu" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 31db189d65..f251686c63 100644 --- a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Roberto Rosario, 2012 @@ -10,23 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documentos" @@ -46,7 +47,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -306,14 +307,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po index 008235e373..0f02f7a338 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -11,23 +11,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documentos" @@ -47,7 +48,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Remover Etiqueta" @@ -143,13 +144,18 @@ msgstr "Remover etiquetas de documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Lista separada por vírgulas das chaves primárias do documento para as quais essa etiqueta será anexada." +msgstr "" +"Lista separada por vírgulas das chaves primárias do documento para as quais " +"essa etiqueta será anexada." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL que aponta para uma tag em relação ao documento anexado a ela. Esse URL é diferente do URL da etiqueta que está de acordo com as normas estabelecidas." +msgstr "" +"API URL que aponta para uma tag em relação ao documento anexado a ela. Esse " +"URL é diferente do URL da etiqueta que está de acordo com as normas " +"estabelecidas." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -193,7 +199,8 @@ msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -301,20 +308,21 @@ msgstr "Documento \"%(document)s\" não estava etiquetado como \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Anexar etiqueta" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po index 0b7d12c778..ead3f12ef3 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Abalaru Paul , 2013 # Badea Gabriel , 2013 @@ -11,23 +11,25 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etichete" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documente" @@ -47,7 +49,7 @@ msgstr "Eticheta a fost editată" msgid "Tag removed from document" msgstr "Eticheta a fost eliminată din document" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Elimină eticheta" @@ -143,13 +145,17 @@ msgstr "Îndepărtați etichetele de pe documente" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Lista separată prin virgulă de chei primare pentru documente la care va fi atașată această etichetă." +msgstr "" +"Lista separată prin virgulă de chei primare pentru documente la care va fi " +"atașată această etichetă." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "Adresă URL API care indică o etichetă în raport cu documentul atașat la aceasta. Această adresă URL este diferită de adresa URL a etichetei canonice." +msgstr "" +"Adresă URL API care indică o etichetă în raport cu documentul atașat la " +"aceasta. Această adresă URL este diferită de adresa URL a etichetei canonice." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -194,7 +200,8 @@ msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." +msgstr "" +"Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -245,7 +252,9 @@ msgstr "Modifică eticheta: %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "Etichetele sunt proprietăți codate în culori care pot fi atașate sau eliminate din documente." +msgstr "" +"Etichetele sunt proprietăți codate în culori care pot fi atașate sau " +"eliminate din documente." #: views.py:221 msgid "No tags available" @@ -304,20 +313,22 @@ msgstr "Documentul \"%(document)s\" nu a fost etichetat ca \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." +msgstr "" +"Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s" +"\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "Selectați etichete" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Etichete care se atașează la document" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Atașează etichetă" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Etichete pentru a fi eliminate din document" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 4a0ba427ff..50031cc24a 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -1,30 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Метки" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Документы" @@ -44,7 +47,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Снять метку" @@ -310,14 +313,14 @@ msgstr "Метка \"%(tag)s\" снята с документа \"%(document)s\" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Прикрепить метку" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po index 6b488273f5..65c726b76e 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po @@ -1,30 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # kontrabant , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Oznake" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenti" @@ -44,7 +46,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -310,14 +312,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po index 8eadcd0802..aed81cc7f3 100644 --- a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -9,23 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiketler" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Belgeler" @@ -45,7 +46,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Etiketi kaldır" @@ -141,13 +142,16 @@ msgstr "Dokümanlardan etiketleri kaldır" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Bu etiketin ekleneceği birincil anahtarların virgülle ayrılmış listesi." +msgstr "" +"Bu etiketin ekleneceği birincil anahtarların virgülle ayrılmış listesi." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "Eklenmiş belgeyle ilişkili olarak bir etiketi işaret eden API URL'si. Bu URL, kanuni etiket URL'sinden farklı." +msgstr "" +"Eklenmiş belgeyle ilişkili olarak bir etiketi işaret eden API URL'si. Bu " +"URL, kanuni etiket URL'sinden farklı." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -299,20 +303,21 @@ msgstr "\"%(document)s\" dokümanı \"%(tag)s\" olarak etiketlenemedi" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "\"%(tag)s\" Etiketi \"%(document)s\" dokümanından başarıyla kaldırıldı." +msgstr "" +"\"%(tag)s\" Etiketi \"%(document)s\" dokümanından başarıyla kaldırıldı." #: wizard_steps.py:18 msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Etiket ekle" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po index 35c7031b29..4a638e1356 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po @@ -1,30 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Tài liệu" @@ -44,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -301,14 +302,14 @@ msgstr "Tag \"%(tag)s\" đã được xóa thành công từ tài liệu \"%(doc msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po index 535b985124..09dc34cd7c 100644 --- a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po @@ -1,30 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "标签" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "文档" @@ -44,7 +45,7 @@ msgstr "标签已编辑" msgid "Tag removed from document" msgstr "标签已从文档中删除" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "删除标签" @@ -301,14 +302,14 @@ msgstr "标签“%(tag)s”已从文档“%(document)s”中成功删除。" msgid "Select tags" msgstr "选择标签" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "要附加到文档的标签" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "附加标签" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "要从文档中删除的标签" diff --git a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po index 506d89b144..5edce3e796 100644 --- a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Yaman Sanobar , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po index 4cf93fbc88..3fafbe642f 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po index ee4a4f3d91..517819a479 100644 --- a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -2,27 +2,29 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # www.ping.ba , 2017 # Ilvana Dollaroviq , 2018 # Atdhe Tabaku , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po index d175d81193..ab68e276a1 100644 --- a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po index 01875a4a5a..05b3995307 100644 --- a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" +"teams/13584/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po index dd46b17727..f38d1fa562 100644 --- a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Felix , 2018 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po index 5bdb5f9aed..5affd50dfb 100644 --- a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po index cbbc93fa06..8847da676e 100644 --- a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po index 93ba00ae84..238d5d497b 100644 --- a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po index a549442f4e..ce60c4929a 100644 --- a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po @@ -2,24 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mehdi Amani , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po index 851050783f..9338af2ace 100644 --- a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po @@ -2,25 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Thierry Schott , 2017 # Christophe CHAUVET , 2017 # Yves Dubois , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yves Dubois , 2018\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po index 2a55f4ab16..65bf8f6381 100644 --- a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # molnars , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: molnars , 2017\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po index 77ed737602..5e5adf6c9c 100644 --- a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po index 61a74b1f3d..f02910a48e 100644 --- a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po @@ -2,26 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pierpaolo Baldan , 2017 # Roberto Rosario, 2017 # Giovanni Tricarico , 2017 # Marco Camplese , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Marco Camplese , 2017\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po index 43a654b00f..3a9af79eb1 100644 --- a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po index c995241d93..eabcf11e8c 100644 --- a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -2,24 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2017 # Lucas Weel , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Lucas Weel , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po index 9ae96e4a3f..e245ae4dca 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Wojciech Warczakowski , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po index 0c37331865..97b2d66d39 100644 --- a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po @@ -2,23 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Manuela Silva , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" -"Last-Translator: Manuela Silva , 2017\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Last-Translator: Manuela Silva , " +"2017\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po index e9e07122bb..8a1fa7acaa 100644 --- a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -2,25 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jadson Ribeiro , 2017 # Aline Freitas , 2017 # Roberto Rosario, 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po index 14766f3f70..3d545d7a94 100644 --- a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefaniu Criste , 2017 # Roberto Rosario, 2017 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po index a9c0e503ab..68cbb13dbb 100644 --- a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po @@ -2,26 +2,28 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # D Muzzle , 2017 # panasoft , 2017 # lilo.panic, 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: lilo.panic, 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po index 236015837d..dc873f9d43 100644 --- a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -2,24 +2,26 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: kontrabant , 2017\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po index b38012f55c..4617c3853f 100644 --- a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: serhatcan77 , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" +"teams/13584/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po index d583c7edc8..d58f7ea64e 100644 --- a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -2,23 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po index 2fc27ae1c7..4d7aa8bbff 100644 --- a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po index 33000d124e..c6ff375cfc 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -1,79 +1,89 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "إدارة المستخدم" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "مجموعات" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "اسم" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "مستخدم" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Users" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "البريد الإلكتروني" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" @@ -257,7 +267,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po index e987d9ada7..06267cd5bd 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -1,79 +1,88 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Управление на потребители" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Групи" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Име" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Потребител" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Потребители" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Електронна поща" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" @@ -253,7 +262,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Изтриване на потребители от супер потребител и служител не е разрешено. " +"Използвайте администраторския модул за тези случаи." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po index 42d3c3680b..45933a1239 100644 --- a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -9,72 +9,86 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Upravljanje korisnicima" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupe" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Ime" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Korisnik" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Korisnici" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Korisničko ime" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Ime" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Prezime" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Ima korisnu lozinku?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Sve grupe." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Svi korisnici." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Dostupni korisnici" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Dostupne grupe" + #: events.py:12 msgid "Group created" msgstr "" @@ -177,7 +191,8 @@ msgstr "korisnik" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Lista odvojenih grupisanih primarnih ključeva za određivanje ovog korisnika." +msgstr "" +"Lista odvojenih grupisanih primarnih ključeva za određivanje ovog korisnika." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -255,7 +270,9 @@ msgstr "Izbrisati korisnike: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user i staff user brisanja nisu dozvoljena, koristite administratorski interface za takve slučajeve" +msgstr "" +"Super user i staff user brisanja nisu dozvoljena, koristite administratorski " +"interface za takve slučajeve" #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po index 6d37235a2b..672b1c2c1f 100644 --- a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po @@ -1,78 +1,88 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" +"cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po index fe3a89e3de..44bfce10a4 100644 --- a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po @@ -1,78 +1,87 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" +"edms/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Navn" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Bruger" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Brugernavn" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po index ed00d7c84e..adba4b49bd 100644 --- a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Fabian Solf , 2017 @@ -16,72 +16,85 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Benutzerverwaltung" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Gruppe" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Gruppen" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Name" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Benutzer" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Benutzer" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Benutzer" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Vorname" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Nachname" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-Mail" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Aktiv" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Verwendbares Passwort" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Alle Gruppen." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Alle Benutzer." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Group users" +msgid "Total users" +msgstr "Gruppenmitglieder" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Verfügbare Gruppen" + #: events.py:12 msgid "Group created" msgstr "Gruppe erstellt" @@ -184,11 +197,15 @@ msgstr "Benutzername" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Kommagetrennte Liste von Gruppen-Primärschlüsseln, denen der Benutzer zugeordnet werden soll." +msgstr "" +"Kommagetrennte Liste von Gruppen-Primärschlüsseln, denen der Benutzer " +"zugeordnet werden soll." #: serializers.py:64 msgid "List of group primary keys to which to add the user." -msgstr "Liste von Gruppen-Primärschlüsseln, denen der Benutzer zugeordnet werden soll." +msgstr "" +"Liste von Gruppen-Primärschlüsseln, denen der Benutzer zugeordnet werden " +"soll." #: utils.py:8 msgid "Anonymous" @@ -217,7 +234,11 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "Benutzergruppen sind Organisationseinheiten. Sie sollten die Organisationseinheiten Ihrer Organisation wiederspiegeln. Gruppen können nicht für die Zugriffskontrolle verwendet werden. Benutzen Sie Rollen für Berechtigungen und Zugriffskontrollen und fügen Sie ihnen Gruppen hinzu." +msgstr "" +"Benutzergruppen sind Organisationseinheiten. Sie sollten die " +"Organisationseinheiten Ihrer Organisation wiederspiegeln. Gruppen können " +"nicht für die Zugriffskontrolle verwendet werden. Benutzen Sie Rollen für " +"Berechtigungen und Zugriffskontrollen und fügen Sie ihnen Gruppen hinzu." #: views.py:119 msgid "There are no user groups" @@ -261,7 +282,9 @@ msgstr "Benutzer löschen: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " +"Administratoren-Oberfläche dafür." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po index 05debbbbdd..f5663280a5 100644 --- a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po @@ -1,78 +1,91 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" +"el/)\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Διαχείριση χρηστών" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Ομάδες" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Όνομα" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Χρήστης" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Χρήστες" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Όνομα χρήστη" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Όνομα" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Επώνυμο" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Λογαριασμός email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Έχει κωδικό ενεργοποίησης;" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Όλες οι ομάδες." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Όλοι οι χρήστες." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Διαθέσιμοι χρήστες" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Διαθέσιμες ομάδες" + #: events.py:12 msgid "Group created" msgstr "" @@ -252,7 +265,9 @@ msgstr "Διαγραφή χρήστη: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Η διαγραφή υπερχρήστη και προσωπικού δενεπιτρέπεται. Χρησιμοποιήστε το περιβάλλον διαχείρησης γι' αυτές τις περιπτώσεις." +msgstr "" +"Η διαγραφή υπερχρήστη και προσωπικού δενεπιτρέπεται. Χρησιμοποιήστε το " +"περιβάλλον διαχείρησης γι' αυτές τις περιπτώσεις." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po index 6a2f4bc70b..cb6d0dd925 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,62 +18,70 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po index ca5229ac74..44d49978b8 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # jmcainzos , 2015 @@ -12,72 +12,85 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:56+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Administración de usuarios" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Grupo" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupos" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nombre" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Usuario" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Usuarios" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nombre de usuario" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Nombre de pila" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Apellido" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Correo electrónico" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "¿Está activo?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "¿Tiene contraseña utilizable?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Todos los grupos." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Todos los usuarios." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Group users" +msgid "Total users" +msgstr "Usuarios del grupo" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Grupos disponibles." + #: events.py:12 msgid "Group created" msgstr "Grupo creado" @@ -180,7 +193,9 @@ msgstr "Nombre de usuario" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Lista separada por comas de llaves primarias de grupos a ser asignados a este usuario." +msgstr "" +"Lista separada por comas de llaves primarias de grupos a ser asignados a " +"este usuario." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -213,7 +228,11 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "Los grupos de usuarios son unidades organizativas. Deben reflejar las unidades organizativas de su organización. Los grupos no pueden ser utilizados para el control de acceso. Use roles para permisos y control de acceso, agregue grupos a ellos." +msgstr "" +"Los grupos de usuarios son unidades organizativas. Deben reflejar las " +"unidades organizativas de su organización. Los grupos no pueden ser " +"utilizados para el control de acceso. Use roles para permisos y control de " +"acceso, agregue grupos a ellos." #: views.py:119 msgid "There are no user groups" @@ -257,7 +276,9 @@ msgstr "Borrar usuario: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite eliminar el super usuario y usuario de personal. Use la " +"interfaz de administración para estos casos." #: views.py:212 #, python-format @@ -298,7 +319,9 @@ msgstr "Grupos de usuario: %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "Las cuentas de usuario se pueden crear desde esta vista. Después de crear una cuenta de usuario, se le pedirá que establezca una contraseña para ella." +msgstr "" +"Las cuentas de usuario se pueden crear desde esta vista. Después de crear " +"una cuenta de usuario, se le pedirá que establezca una contraseña para ella." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index 75a19d34ba..b9313e1dd3 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -1,79 +1,92 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "مدیریت کاربر" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "گروه" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "گروه ها" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "نام" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "کاربر" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "کاربران" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "نام کاربری" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "نام کوچک" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "نام خانوادگی" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "پست الکترونیک" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "رمز عبور قابل استفاده است؟" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "همه گروه ها." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "تمام کاربران" +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "کاربران موجود" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "گروه های موجود" + #: events.py:12 msgid "Group created" msgstr "" @@ -253,7 +266,9 @@ msgstr "حذف کاربر: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "حذف کاربر فوق العاده کاربر و کارکنان مجاز نیست، از رابط مدیر برای این موارد استفاده کنید." +msgstr "" +"حذف کاربر فوق العاده کاربر و کارکنان مجاز نیست، از رابط مدیر برای این موارد " +"استفاده کنید." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index cbe88c221d..d68171b9b2 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2014,2017 # Christophe CHAUVET , 2014 @@ -14,72 +14,85 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gestion des utilisateurs" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Groupe" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Groupes" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nom" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Utilisateur" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utilisateurs" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Identifiant" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Prénom" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Nom" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Courriel" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Est actif?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Possède un mot de passe utilisable ?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Tous les groupes." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Tous les utilisateurs." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Group users" +msgid "Total users" +msgstr "Groupe d'utilisateurs" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Groupes disponibles" + #: events.py:12 msgid "Group created" msgstr "Groupe créé" @@ -182,7 +195,9 @@ msgstr "utilisateur" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Liste séparée par des virgules des clés primaires de groupe pour attribuer cet utilisateur à." +msgstr "" +"Liste séparée par des virgules des clés primaires de groupe pour attribuer " +"cet utilisateur à." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -215,7 +230,11 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "Les groupes d'utilisateurs sont des unités d'organisation. Ils doivent refléter les unités organisationnelles de votre organisation. Les groupes ne peuvent pas être utilisés pour le contrôle d'accès. Utilisez les rôles pour les autorisations et le contrôle d'accès, ajoutez-leur des groupes." +msgstr "" +"Les groupes d'utilisateurs sont des unités d'organisation. Ils doivent " +"refléter les unités organisationnelles de votre organisation. Les groupes ne " +"peuvent pas être utilisés pour le contrôle d'accès. Utilisez les rôles pour " +"les autorisations et le contrôle d'accès, ajoutez-leur des groupes." #: views.py:119 msgid "There are no user groups" @@ -237,12 +256,14 @@ msgstr "Utilisateurs du groupe : %s" #: views.py:173 #, python-format msgid "User delete request performed on %(count)d user" -msgstr "Requête de suppression d'utilisateur exécutée sur %(count)d utilisateur" +msgstr "" +"Requête de suppression d'utilisateur exécutée sur %(count)d utilisateur" #: views.py:175 #, python-format msgid "User delete request performed on %(count)d users" -msgstr "Requête de suppression d'utilisateur exécutée sur %(count)d utilisateurs" +msgstr "" +"Requête de suppression d'utilisateur exécutée sur %(count)d utilisateurs" #: views.py:183 msgid "Delete user" @@ -259,7 +280,9 @@ msgstr "Supprimer l'utilisateur: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "La suppression des comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." +msgstr "" +"La suppression des comptes super utilisateur et staff n'est pas autorisée " +"ici, veuillez le faire via l'interface d'administration." #: views.py:212 #, python-format @@ -269,7 +292,8 @@ msgstr "Utilisateur \"%s\" supprimé avec succès." #: views.py:218 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" +msgstr "" +"Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" #: views.py:236 #, python-format diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index 44c2627665..613f78f15d 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -1,79 +1,90 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Felhasználó kezelés" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Csoport" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Név" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Felhasználó" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Felhasználó" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Minden csoport." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Minden felhasználó." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Elérhető csoportok" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index aa401a9440..a13ee7988d 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -1,78 +1,87 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Pengguna" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Surel" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index 25c211f5c1..378c82203f 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011 @@ -10,72 +10,85 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gestione utenti" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Gruppi" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nome " -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Utente" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utenti" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nome utente" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "La password è utilizzabile?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Tutti i gruppi" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Tutti gli utenti" +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Utenti disponibili" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Gruppi disponibili " + #: events.py:12 msgid "Group created" msgstr "" @@ -255,7 +268,9 @@ msgstr "Cancella utente: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito la cancellazione del personale, " +"utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po index 25f0e4cbb5..b26449de13 100644 --- a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po @@ -1,79 +1,93 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Lietotāju pārvaldība" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Grupa" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupas" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nosaukums" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Lietotājs" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Lietotāji" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Lietotājvārds" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Vārds" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Uzvārds" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-pasts" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Vai ir aktīvs?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Vai ir izmantojama parole?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Visas grupas." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Visi lietotāji." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Group users" +msgid "Total users" +msgstr "Grupas lietotāji" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Pieejamās grupas" + #: events.py:12 msgid "Group created" msgstr "Grupa izveidota" @@ -176,7 +190,8 @@ msgstr "lietotājvārds" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Grupu primāro taustiņu atdalīts ar komatu, lai piešķirtu šim lietotājam." +msgstr "" +"Grupu primāro taustiņu atdalīts ar komatu, lai piešķirtu šim lietotājam." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -209,7 +224,10 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "Lietotāju grupas ir organizatoriskas vienības. Tām jāatspoguļo jūsu organizācijas organizatoriskās vienības. Grupas nevar izmantot piekļuves kontrolei. Izmantojiet lomas un piekļuves kontroli, pievienojiet tām grupas." +msgstr "" +"Lietotāju grupas ir organizatoriskas vienības. Tām jāatspoguļo jūsu " +"organizācijas organizatoriskās vienības. Grupas nevar izmantot piekļuves " +"kontrolei. Izmantojiet lomas un piekļuves kontroli, pievienojiet tām grupas." #: views.py:119 msgid "There are no user groups" @@ -254,7 +272,9 @@ msgstr "Dzēst lietotāju: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super lietotājs un personāla lietotājs dzēš nav atļauts, šajos gadījumos izmantojiet admin interfeisu." +msgstr "" +"Super lietotājs un personāla lietotājs dzēš nav atļauts, šajos gadījumos " +"izmantojiet admin interfeisu." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po index 7f4b234279..91de998037 100644 --- a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 @@ -10,72 +10,85 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gebruikersbeheer" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Groepen" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Naam" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Gebruiker" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Gebruikers" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Voornaam" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Achternaam" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Heeft bruikbaar wachtwoord?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Alle groepen." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Alle gebruikers." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Beschikbare gebruikers" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Beschikbare groepen" + #: events.py:12 msgid "Group created" msgstr "" @@ -255,7 +268,9 @@ msgstr "Verwijder gebruiker: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." +msgstr "" +"Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de " +"admin gebruiker voor deze zaken." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po index 926e45faa4..fadf93c35d 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Daniel Winiarski , 2016 @@ -11,72 +11,87 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Zarządzanie użytkownikami" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupy" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nazwa" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Użytkownik" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Użytkownicy" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nazwa użytkownika" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Imię" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Nazwisko" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Posiada hasło?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Wszystkie grupy." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Wszyscy użytkownicy." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Dostępni użytkownicy" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Dostępne grupy" + #: events.py:12 msgid "Group created" msgstr "" @@ -179,7 +194,9 @@ msgstr "nazwa użytkownika" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Rozdzielona przecinkami lista kluczy głównych grup, do których użytkownik zostanie przydzielony." +msgstr "" +"Rozdzielona przecinkami lista kluczy głównych grup, do których użytkownik " +"zostanie przydzielony." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -258,7 +275,9 @@ msgstr "Usuń użytkownika: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user oraz staff user usuwanie nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." +msgstr "" +"Super user oraz staff user usuwanie nie jest możliwa , należy użyć " +"interfejsu administratora w takich przypadkach." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po index 241d937781..4f88f6b3c0 100644 --- a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 # Renata Oliveira , 2011 @@ -11,72 +11,83 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gestão de utilizadores" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupos" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nome" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Utilizador" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utilizadores" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Correio eletrónico" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Todos os grupos." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Todos os utilziadores." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Grupos disponíveis" + #: events.py:12 msgid "Group created" msgstr "" @@ -256,7 +267,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Não é permitida a eliminação de administradores ou membros da equipa, utilize a interface de administrador para estes casos." +msgstr "" +"Não é permitida a eliminação de administradores ou membros da equipa, " +"utilize a interface de administrador para estes casos." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po index b37ff67790..e7069395ee 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2013 @@ -13,72 +13,85 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gerenciar usuários" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupos" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nome" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Usuário" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Usuários" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Usuário" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-mail" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "tem senha usável?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Todos os grupos." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Todos os usuários." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Usuários disponíveis" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Grupos disponíveis" + #: events.py:12 msgid "Group created" msgstr "" @@ -181,7 +194,9 @@ msgstr "" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Lista separada por vírgulas de chaves primárias de grupo para atribuir esse usuário." +msgstr "" +"Lista separada por vírgulas de chaves primárias de grupo para atribuir esse " +"usuário." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -258,7 +273,9 @@ msgstr "Excluir usuário: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Excluir super usuário e usuário pessoal não é permitido, use a interface de " +"administração para esses casos." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po index 9a469df557..3284775e28 100644 --- a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -10,72 +10,86 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Management utilizatori" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Grup" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupuri" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nume" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "utilizator" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utilizatorii" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nume de utilizator" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Prenume" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Numele de familie" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Este activ?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Are parola utilizabilă?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Toate grupurile." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Toți utilizatorii." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Group users" +msgid "Total users" +msgstr "Utilizatori din grup" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Grupuri disponibile" + #: events.py:12 msgid "Group created" msgstr "Grupul a fost creat" @@ -178,7 +192,9 @@ msgstr "nume de utilizator" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Liste separate prin virgulă de chei primare de grup pentru a le atribui acestui utilizator." +msgstr "" +"Liste separate prin virgulă de chei primare de grup pentru a le atribui " +"acestui utilizator." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -211,7 +227,11 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "Grupurile de utilizatori sunt unități organizaționale. Ele ar trebui să reflecte unitățile organizaționale ale organizației dvs. Grupurile nu pot fi utilizate pentru controlul accesului. Utilizați roluri pentru permisiuni și control acces, adăugați grupuri la ele." +msgstr "" +"Grupurile de utilizatori sunt unități organizaționale. Ele ar trebui să " +"reflecte unitățile organizaționale ale organizației dvs. Grupurile nu pot fi " +"utilizate pentru controlul accesului. Utilizați roluri pentru permisiuni și " +"control acces, adăugați grupuri la ele." #: views.py:119 msgid "There are no user groups" @@ -233,12 +253,14 @@ msgstr "Utilizatorii din grupul: %s" #: views.py:173 #, python-format msgid "User delete request performed on %(count)d user" -msgstr "Solicitarea de ștergere a utilizatorilor efectuată pe %(count)dutilizator " +msgstr "" +"Solicitarea de ștergere a utilizatorilor efectuată pe %(count)dutilizator " #: views.py:175 #, python-format msgid "User delete request performed on %(count)d users" -msgstr "Solicitarea de ștergere a utilizatorilor efectuată pe %(count)d utilizatori" +msgstr "" +"Solicitarea de ștergere a utilizatorilor efectuată pe %(count)d utilizatori" #: views.py:183 msgid "Delete user" @@ -256,7 +278,9 @@ msgstr "Ștergeți utilizatorul: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super-utilizator și personalul ștergerea utilizator nu este permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "" +"Super-utilizator și personalul ștergerea utilizator nu este permisă, " +"utilizați interfata de administrare pentru aceste cazuri." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po index da048ec509..8198817f6d 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -1,79 +1,94 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Управление пользователями" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Группы" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Название" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Пользователь" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Пользователи" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Имя пользователя" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Есть действующий пароль?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Все группы" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Все пользователи." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Доступные пользователи" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Доступные группы" + #: events.py:12 msgid "Group created" msgstr "" @@ -255,7 +270,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Удаление суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po index f423d3ac88..2a2c2c0ca9 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -1,78 +1,88 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Skupine" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Ime" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Uporabniki" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po index 5e141f76d6..782bd064bf 100644 --- a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po @@ -1,79 +1,92 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" +"edms/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Kullanıcı yönetimi" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Gruplar" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "İsim" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Kullanıcı" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Kullanıcılar" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Kullanıcı adı" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Ad" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Soyad" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-posta" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Kullanılabilir şifre var mı?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Tüm gruplar." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Tüm kullanıcılar." +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "Kullanılabilir kullanıcılar" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "Kullanılabilir gruplar" + #: events.py:12 msgid "Group created" msgstr "" @@ -180,7 +193,8 @@ msgstr "Bu kullanıcıya atamak için virgülle ayrılmış birincil gruplar lis #: serializers.py:64 msgid "List of group primary keys to which to add the user." -msgstr "Kullanıcının hangi gruba ekleneceğini belirten birincil anahtarların listesi." +msgstr "" +"Kullanıcının hangi gruba ekleneceğini belirten birincil anahtarların listesi." #: utils.py:8 msgid "Anonymous" @@ -253,7 +267,9 @@ msgstr "Kullanıcıyı sil: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Süper kullanıcı ve çalışanların silinmesine izin verilmiyor, bu durumlarda admin arayüzünü kullanın." +msgstr "" +"Süper kullanıcı ve çalışanların silinmesine izin verilmiyor, bu durumlarda " +"admin arayüzünü kullanın." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po index 86aaa37fba..626436a975 100644 --- a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po @@ -1,79 +1,88 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Quản lý người dùng" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Tên" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Người dùng" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" @@ -252,7 +261,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po index b93c3157e4..07caf7f15f 100644 --- a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po @@ -1,79 +1,92 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:21-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "用户管理" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "用户组" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "名称" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "用户" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "用户" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "用户名" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "名字" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "姓氏" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "电子邮件" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "有可用的密码吗?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "所有用户组" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "所有用户" +#: dashboard_widgets.py:16 +#, fuzzy +#| msgid "Available users" +msgid "Total users" +msgstr "可用用户" + +#: dashboard_widgets.py:32 +#, fuzzy +#| msgid "Available groups" +msgid "Total groups" +msgstr "可用的用户组" + #: events.py:12 msgid "Group created" msgstr "" @@ -209,7 +222,9 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "用户组是组织单位。它们应反映你组织的组织单位。用户组不能用于访问控制。使用角色进行权限和访问控制,并向其中添加用户组。" +msgstr "" +"用户组是组织单位。它们应反映你组织的组织单位。用户组不能用于访问控制。使用角" +"色进行权限和访问控制,并向其中添加用户组。" #: views.py:119 msgid "There are no user groups" From e3d2fef6879ec8c2a2c62ef07592b182f420d834 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:47:05 -0400 Subject: [PATCH 12/23] Update compiled translation files Signed-off-by: Roberto Rosario --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 13 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 10 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 24 +- .../apps/acls/locale/cs/LC_MESSAGES/django.po | 13 +- .../acls/locale/da_DK/LC_MESSAGES/django.po | 10 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 44 +-- .../apps/acls/locale/el/LC_MESSAGES/django.po | 18 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 45 +-- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 18 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 37 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 10 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 10 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 37 +- .../apps/acls/locale/lv/LC_MESSAGES/django.mo | Bin 4583 -> 4769 bytes .../apps/acls/locale/lv/LC_MESSAGES/django.po | 48 +-- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 48 +-- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 29 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 10 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 37 +- .../acls/locale/ro_RO/LC_MESSAGES/django.mo | Bin 4768 -> 4926 bytes .../acls/locale/ro_RO/LC_MESSAGES/django.po | 61 +-- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 14 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 27 +- .../acls/locale/tr_TR/LC_MESSAGES/django.po | 18 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 10 +- .../apps/acls/locale/zh/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 54 +-- .../locale/bg/LC_MESSAGES/django.po | 51 +-- .../locale/bs_BA/LC_MESSAGES/django.po | 62 +-- .../locale/cs/LC_MESSAGES/django.po | 52 +-- .../locale/da_DK/LC_MESSAGES/django.po | 49 +-- .../locale/de_DE/LC_MESSAGES/django.po | 118 ++---- .../locale/el/LC_MESSAGES/django.po | 61 +-- .../locale/es/LC_MESSAGES/django.po | 124 ++---- .../locale/fa/LC_MESSAGES/django.po | 61 +-- .../locale/fr/LC_MESSAGES/django.po | 128 ++---- .../locale/hu/LC_MESSAGES/django.po | 49 +-- .../locale/id/LC_MESSAGES/django.po | 49 +-- .../locale/it/LC_MESSAGES/django.po | 109 ++---- .../locale/lv/LC_MESSAGES/django.mo | Bin 7549 -> 7612 bytes .../locale/lv/LC_MESSAGES/django.po | 118 ++---- .../locale/nl_NL/LC_MESSAGES/django.po | 62 +-- .../locale/pl/LC_MESSAGES/django.po | 61 +-- .../locale/pt/LC_MESSAGES/django.po | 49 +-- .../locale/pt_BR/LC_MESSAGES/django.po | 115 ++---- .../locale/ro_RO/LC_MESSAGES/django.po | 125 ++---- .../locale/ru/LC_MESSAGES/django.po | 72 +--- .../locale/sl_SI/LC_MESSAGES/django.po | 60 +-- .../locale/tr_TR/LC_MESSAGES/django.po | 60 +-- .../locale/vi_VN/LC_MESSAGES/django.po | 49 +-- .../locale/zh/LC_MESSAGES/django.po | 116 ++---- .../locale/ar/LC_MESSAGES/django.po | 18 +- .../locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.po | 29 +- .../locale/cs/LC_MESSAGES/django.po | 14 +- .../locale/da_DK/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 30 +- .../locale/el/LC_MESSAGES/django.po | 34 +- .../locale/es/LC_MESSAGES/django.po | 34 +- .../locale/fa/LC_MESSAGES/django.po | 23 +- .../locale/fr/LC_MESSAGES/django.po | 38 +- .../locale/hu/LC_MESSAGES/django.po | 11 +- .../locale/id/LC_MESSAGES/django.po | 14 +- .../locale/it/LC_MESSAGES/django.po | 30 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 3138 -> 3436 bytes .../locale/lv/LC_MESSAGES/django.po | 36 +- .../locale/nl_NL/LC_MESSAGES/django.po | 27 +- .../locale/pl/LC_MESSAGES/django.po | 23 +- .../locale/pt/LC_MESSAGES/django.po | 15 +- .../locale/pt_BR/LC_MESSAGES/django.po | 23 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 3275 -> 3531 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../locale/ru/LC_MESSAGES/django.po | 27 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/tr_TR/LC_MESSAGES/django.po | 23 +- .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../locale/zh/LC_MESSAGES/django.po | 11 +- .../autoadmin/locale/ar/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 19 +- .../autoadmin/locale/cs/LC_MESSAGES/django.po | 11 +- .../autoadmin/locale/da/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.po | 16 +- .../autoadmin/locale/el/LC_MESSAGES/django.po | 10 +- .../autoadmin/locale/es/LC_MESSAGES/django.po | 14 +- .../autoadmin/locale/fa/LC_MESSAGES/django.po | 10 +- .../autoadmin/locale/fr/LC_MESSAGES/django.po | 14 +- .../autoadmin/locale/hu/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/id/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/it/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/lv/LC_MESSAGES/django.po | 13 +- .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/pl/LC_MESSAGES/django.po | 17 +- .../autoadmin/locale/pt/LC_MESSAGES/django.po | 20 +- .../locale/pt_BR/LC_MESSAGES/django.po | 16 +- .../locale/ro_RO/LC_MESSAGES/django.po | 20 +- .../autoadmin/locale/ru/LC_MESSAGES/django.po | 14 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/tr_TR/LC_MESSAGES/django.po | 13 +- .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../autoadmin/locale/zh/LC_MESSAGES/django.po | 10 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/ar/LC_MESSAGES/django.po | 86 +--- .../cabinets/locale/bg/LC_MESSAGES/django.po | 63 +-- .../locale/bs_BA/LC_MESSAGES/django.po | 91 +---- .../cabinets/locale/cs/LC_MESSAGES/django.po | 84 +--- .../locale/da_DK/LC_MESSAGES/django.po | 80 +--- .../locale/de_DE/LC_MESSAGES/django.po | 86 +--- .../cabinets/locale/el/LC_MESSAGES/django.po | 79 +--- .../cabinets/locale/es/LC_MESSAGES/django.po | 79 +--- .../cabinets/locale/fa/LC_MESSAGES/django.po | 79 +--- .../cabinets/locale/fr/LC_MESSAGES/django.po | 83 +--- .../cabinets/locale/hu/LC_MESSAGES/django.po | 78 +--- .../cabinets/locale/id/LC_MESSAGES/django.po | 61 +-- .../cabinets/locale/it/LC_MESSAGES/django.po | 75 +--- .../cabinets/locale/lv/LC_MESSAGES/django.po | 88 +---- .../locale/nl_NL/LC_MESSAGES/django.po | 63 +-- .../cabinets/locale/pl/LC_MESSAGES/django.po | 87 +---- .../cabinets/locale/pt/LC_MESSAGES/django.po | 66 +--- .../locale/pt_BR/LC_MESSAGES/django.po | 94 +---- .../locale/ro_RO/LC_MESSAGES/django.po | 98 +---- .../cabinets/locale/ru/LC_MESSAGES/django.po | 68 +--- .../locale/sl_SI/LC_MESSAGES/django.po | 70 +--- .../locale/tr_TR/LC_MESSAGES/django.po | 82 +--- .../locale/vi_VN/LC_MESSAGES/django.po | 61 +-- .../cabinets/locale/zh/LC_MESSAGES/django.po | 84 +--- .../checkouts/locale/ar/LC_MESSAGES/django.po | 10 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 13 +- .../checkouts/locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../checkouts/locale/el/LC_MESSAGES/django.po | 7 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 15 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 7 +- .../checkouts/locale/fr/LC_MESSAGES/django.po | 18 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 7 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 7 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 11 +- .../checkouts/locale/lv/LC_MESSAGES/django.po | 18 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 18 +- .../checkouts/locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 15 +- .../locale/ro_RO/LC_MESSAGES/django.po | 22 +- .../checkouts/locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../checkouts/locale/zh/LC_MESSAGES/django.po | 7 +- .../common/locale/ar/LC_MESSAGES/django.mo | Bin 1357 -> 1357 bytes .../common/locale/ar/LC_MESSAGES/django.po | 87 +++-- .../common/locale/bg/LC_MESSAGES/django.mo | Bin 1254 -> 1254 bytes .../common/locale/bg/LC_MESSAGES/django.po | 84 ++-- .../common/locale/bs_BA/LC_MESSAGES/django.mo | Bin 5233 -> 5233 bytes .../common/locale/bs_BA/LC_MESSAGES/django.po | 105 +++-- .../common/locale/cs/LC_MESSAGES/django.mo | Bin 561 -> 561 bytes .../common/locale/cs/LC_MESSAGES/django.po | 87 +++-- .../common/locale/da_DK/LC_MESSAGES/django.mo | Bin 809 -> 809 bytes .../common/locale/da_DK/LC_MESSAGES/django.po | 84 ++-- .../common/locale/de_DE/LC_MESSAGES/django.mo | Bin 27459 -> 26984 bytes .../common/locale/de_DE/LC_MESSAGES/django.po | 351 ++++------------- .../common/locale/el/LC_MESSAGES/django.mo | Bin 5367 -> 5367 bytes .../common/locale/el/LC_MESSAGES/django.po | 92 +++-- .../common/locale/es/LC_MESSAGES/django.mo | Bin 28832 -> 28322 bytes .../common/locale/es/LC_MESSAGES/django.po | 368 ++++-------------- .../common/locale/fa/LC_MESSAGES/django.mo | Bin 5147 -> 5147 bytes .../common/locale/fa/LC_MESSAGES/django.po | 88 ++--- .../common/locale/fr/LC_MESSAGES/django.mo | Bin 7832 -> 7832 bytes .../common/locale/fr/LC_MESSAGES/django.po | 123 +++--- .../common/locale/hu/LC_MESSAGES/django.mo | Bin 1293 -> 1293 bytes .../common/locale/hu/LC_MESSAGES/django.po | 84 ++-- .../common/locale/id/LC_MESSAGES/django.mo | Bin 1340 -> 1340 bytes .../common/locale/id/LC_MESSAGES/django.po | 84 ++-- .../common/locale/it/LC_MESSAGES/django.mo | Bin 10362 -> 10362 bytes .../common/locale/it/LC_MESSAGES/django.po | 160 +++----- .../common/locale/lv/LC_MESSAGES/django.mo | Bin 26865 -> 27240 bytes .../common/locale/lv/LC_MESSAGES/django.po | 331 ++++------------ .../common/locale/nl_NL/LC_MESSAGES/django.mo | Bin 3335 -> 3335 bytes .../common/locale/nl_NL/LC_MESSAGES/django.po | 91 +++-- .../common/locale/pl/LC_MESSAGES/django.mo | Bin 4633 -> 4633 bytes .../common/locale/pl/LC_MESSAGES/django.po | 95 +++-- .../common/locale/pt/LC_MESSAGES/django.mo | Bin 1264 -> 1264 bytes .../common/locale/pt/LC_MESSAGES/django.po | 84 ++-- .../common/locale/pt_BR/LC_MESSAGES/django.mo | Bin 19336 -> 18841 bytes .../common/locale/pt_BR/LC_MESSAGES/django.po | 270 ++++--------- .../common/locale/ro_RO/LC_MESSAGES/django.mo | Bin 27993 -> 28315 bytes .../common/locale/ro_RO/LC_MESSAGES/django.po | 360 +++++------------ .../common/locale/ru/LC_MESSAGES/django.mo | Bin 5873 -> 5873 bytes .../common/locale/ru/LC_MESSAGES/django.po | 111 +++--- .../common/locale/sl_SI/LC_MESSAGES/django.mo | Bin 847 -> 847 bytes .../common/locale/sl_SI/LC_MESSAGES/django.po | 87 +++-- .../common/locale/tr_TR/LC_MESSAGES/django.mo | Bin 4225 -> 4225 bytes .../common/locale/tr_TR/LC_MESSAGES/django.po | 94 +++-- .../common/locale/vi_VN/LC_MESSAGES/django.mo | Bin 1155 -> 1155 bytes .../common/locale/vi_VN/LC_MESSAGES/django.po | 84 ++-- .../common/locale/zh/LC_MESSAGES/django.mo | Bin 16954 -> 16493 bytes .../common/locale/zh/LC_MESSAGES/django.po | 185 +++------ .../converter/locale/ar/LC_MESSAGES/django.po | 10 +- .../converter/locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../converter/locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 33 +- .../converter/locale/el/LC_MESSAGES/django.po | 17 +- .../converter/locale/es/LC_MESSAGES/django.po | 29 +- .../converter/locale/fa/LC_MESSAGES/django.po | 15 +- .../converter/locale/fr/LC_MESSAGES/django.po | 36 +- .../converter/locale/hu/LC_MESSAGES/django.po | 7 +- .../converter/locale/id/LC_MESSAGES/django.po | 7 +- .../converter/locale/it/LC_MESSAGES/django.po | 21 +- .../converter/locale/lv/LC_MESSAGES/django.mo | Bin 4242 -> 4202 bytes .../converter/locale/lv/LC_MESSAGES/django.po | 39 +- .../locale/nl_NL/LC_MESSAGES/django.po | 18 +- .../converter/locale/pl/LC_MESSAGES/django.po | 19 +- .../converter/locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 19 +- .../locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../converter/locale/ru/LC_MESSAGES/django.po | 23 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../converter/locale/zh/LC_MESSAGES/django.po | 7 +- .../locale/ar/LC_MESSAGES/django.po | 7 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 7 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/el/LC_MESSAGES/django.po | 6 +- .../locale/es/LC_MESSAGES/django.po | 6 +- .../locale/fa/LC_MESSAGES/django.po | 6 +- .../locale/fr/LC_MESSAGES/django.po | 6 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 7 +- .../locale/it/LC_MESSAGES/django.po | 6 +- .../locale/lv/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 10 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 12 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 10 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 6 +- .../locale/ar/LC_MESSAGES/django.po | 13 +- .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/cs/LC_MESSAGES/django.po | 13 +- .../locale/da_DK/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/el/LC_MESSAGES/django.po | 10 +- .../locale/es/LC_MESSAGES/django.po | 30 +- .../locale/fa/LC_MESSAGES/django.po | 10 +- .../locale/fr/LC_MESSAGES/django.po | 14 +- .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.po | 10 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 4409 -> 6778 bytes .../locale/lv/LC_MESSAGES/django.po | 39 +- .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../locale/pl/LC_MESSAGES/django.po | 14 +- .../locale/pt/LC_MESSAGES/django.po | 16 +- .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 4764 -> 7049 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 35 +- .../locale/ru/LC_MESSAGES/django.po | 14 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.po | 13 +- .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh/LC_MESSAGES/django.po | 10 +- .../locale/ar/LC_MESSAGES/django.po | 18 +- .../locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.po | 22 +- .../locale/cs/LC_MESSAGES/django.po | 18 +- .../locale/da_DK/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.po | 39 +- .../locale/el/LC_MESSAGES/django.po | 26 +- .../locale/es/LC_MESSAGES/django.po | 43 +- .../locale/fa/LC_MESSAGES/django.po | 15 +- .../locale/fr/LC_MESSAGES/django.po | 38 +- .../locale/hu/LC_MESSAGES/django.po | 15 +- .../locale/id/LC_MESSAGES/django.po | 15 +- .../locale/it/LC_MESSAGES/django.po | 23 +- .../locale/lv/LC_MESSAGES/django.po | 39 +- .../locale/nl_NL/LC_MESSAGES/django.po | 19 +- .../locale/pl/LC_MESSAGES/django.po | 26 +- .../locale/pt/LC_MESSAGES/django.po | 19 +- .../locale/pt_BR/LC_MESSAGES/django.po | 33 +- .../locale/ro_RO/LC_MESSAGES/django.po | 40 +- .../locale/ru/LC_MESSAGES/django.po | 23 +- .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/tr_TR/LC_MESSAGES/django.po | 18 +- .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../locale/zh/LC_MESSAGES/django.po | 19 +- .../locale/ar/LC_MESSAGES/django.po | 10 +- .../locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/el/LC_MESSAGES/django.po | 7 +- .../locale/es/LC_MESSAGES/django.po | 11 +- .../locale/fa/LC_MESSAGES/django.po | 7 +- .../locale/fr/LC_MESSAGES/django.po | 11 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 7 +- .../locale/it/LC_MESSAGES/django.po | 7 +- .../locale/lv/LC_MESSAGES/django.po | 14 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../locale/pl/LC_MESSAGES/django.po | 11 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 7 +- .../locale/ar/LC_MESSAGES/django.po | 26 +- .../locale/bg/LC_MESSAGES/django.po | 22 +- .../locale/bs_BA/LC_MESSAGES/django.po | 40 +- .../locale/cs/LC_MESSAGES/django.po | 21 +- .../locale/da_DK/LC_MESSAGES/django.po | 18 +- .../locale/de_DE/LC_MESSAGES/django.po | 65 +--- .../locale/el/LC_MESSAGES/django.po | 38 +- .../locale/es/LC_MESSAGES/django.po | 67 +--- .../locale/fa/LC_MESSAGES/django.po | 32 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 6887 -> 7180 bytes .../locale/fr/LC_MESSAGES/django.po | 52 +-- .../locale/hu/LC_MESSAGES/django.po | 18 +- .../locale/id/LC_MESSAGES/django.po | 18 +- .../locale/it/LC_MESSAGES/django.po | 37 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 7637 -> 7839 bytes .../locale/lv/LC_MESSAGES/django.po | 64 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 31 +- .../locale/pl/LC_MESSAGES/django.po | 38 +- .../locale/pt/LC_MESSAGES/django.po | 30 +- .../locale/pt_BR/LC_MESSAGES/django.po | 60 +-- .../locale/ro_RO/LC_MESSAGES/django.po | 77 ++-- .../locale/ru/LC_MESSAGES/django.po | 31 +- .../locale/sl_SI/LC_MESSAGES/django.po | 21 +- .../locale/tr_TR/LC_MESSAGES/django.po | 32 +- .../locale/vi_VN/LC_MESSAGES/django.po | 18 +- .../locale/zh/LC_MESSAGES/django.po | 30 +- .../locale/ar/LC_MESSAGES/django.po | 15 +- .../locale/bg/LC_MESSAGES/django.po | 12 +- .../locale/bs_BA/LC_MESSAGES/django.po | 15 +- .../locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 12 +- .../locale/de_DE/LC_MESSAGES/django.po | 12 +- .../locale/el/LC_MESSAGES/django.po | 9 +- .../locale/es/LC_MESSAGES/django.po | 12 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 21 +- .../locale/hu/LC_MESSAGES/django.po | 12 +- .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 4266 -> 4526 bytes .../locale/lv/LC_MESSAGES/django.po | 20 +- .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../locale/pl/LC_MESSAGES/django.po | 13 +- .../locale/pt/LC_MESSAGES/django.po | 12 +- .../locale/pt_BR/LC_MESSAGES/django.po | 15 +- .../locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../locale/ru/LC_MESSAGES/django.po | 17 +- .../locale/sl_SI/LC_MESSAGES/django.po | 15 +- .../locale/tr_TR/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 12 +- .../locale/zh/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 28 +- .../locale/el/LC_MESSAGES/django.po | 11 +- .../locale/es/LC_MESSAGES/django.po | 24 +- .../locale/fa/LC_MESSAGES/django.po | 11 +- .../locale/fr/LC_MESSAGES/django.po | 24 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 11 +- .../locale/it/LC_MESSAGES/django.po | 11 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 6324 -> 6304 bytes .../locale/lv/LC_MESSAGES/django.po | 31 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../locale/pl/LC_MESSAGES/django.po | 11 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 19 +- .../locale/ro_RO/LC_MESSAGES/django.po | 30 +- .../locale/ru/LC_MESSAGES/django.po | 15 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 11 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 952 -> 952 bytes .../locale/ar/LC_MESSAGES/django.po | 42 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 801 -> 801 bytes .../locale/bg/LC_MESSAGES/django.po | 39 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 11555 -> 11555 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 83 ++-- .../locale/cs/LC_MESSAGES/django.mo | Bin 596 -> 596 bytes .../locale/cs/LC_MESSAGES/django.po | 42 +- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 782 -> 782 bytes .../locale/da_DK/LC_MESSAGES/django.po | 39 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15876 -> 15876 bytes .../locale/de_DE/LC_MESSAGES/django.po | 137 ++----- .../locale/el/LC_MESSAGES/django.mo | Bin 11351 -> 11351 bytes .../locale/el/LC_MESSAGES/django.po | 60 ++- .../locale/es/LC_MESSAGES/django.mo | Bin 18186 -> 18186 bytes .../locale/es/LC_MESSAGES/django.po | 149 +++---- .../locale/fa/LC_MESSAGES/django.mo | Bin 12981 -> 12981 bytes .../locale/fa/LC_MESSAGES/django.po | 75 ++-- .../locale/fr/LC_MESSAGES/django.mo | Bin 15256 -> 16587 bytes .../locale/fr/LC_MESSAGES/django.po | 147 +++---- .../locale/hu/LC_MESSAGES/django.mo | Bin 1337 -> 1337 bytes .../locale/hu/LC_MESSAGES/django.po | 39 +- .../locale/id/LC_MESSAGES/django.mo | Bin 4776 -> 4776 bytes .../locale/id/LC_MESSAGES/django.po | 39 +- .../locale/it/LC_MESSAGES/django.mo | Bin 4461 -> 4461 bytes .../locale/it/LC_MESSAGES/django.po | 47 ++- .../locale/lv/LC_MESSAGES/django.mo | Bin 16207 -> 17027 bytes .../locale/lv/LC_MESSAGES/django.po | 148 +++---- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2812 -> 2812 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 39 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 2682 -> 2682 bytes .../locale/pl/LC_MESSAGES/django.po | 43 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 810 -> 810 bytes .../locale/pt/LC_MESSAGES/django.po | 39 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 16245 -> 16245 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 139 ++----- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 18059 -> 18170 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 148 +++---- .../locale/ru/LC_MESSAGES/django.mo | Bin 1927 -> 1927 bytes .../locale/ru/LC_MESSAGES/django.po | 43 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 844 -> 844 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 42 +- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 7642 -> 7642 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 63 ++- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 669 -> 669 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 39 +- .../locale/zh/LC_MESSAGES/django.mo | Bin 14037 -> 14037 bytes .../locale/zh/LC_MESSAGES/django.po | 62 ++- .../documents/locale/ar/LC_MESSAGES/django.po | 66 ++-- .../documents/locale/bg/LC_MESSAGES/django.po | 86 ++-- .../locale/bs_BA/LC_MESSAGES/django.po | 126 +++--- .../documents/locale/cs/LC_MESSAGES/django.po | 58 +-- .../locale/da_DK/LC_MESSAGES/django.po | 55 +-- .../locale/de_DE/LC_MESSAGES/django.po | 217 ++++------- .../documents/locale/el/LC_MESSAGES/django.po | 127 +++--- .../documents/locale/es/LC_MESSAGES/django.po | 264 ++++--------- .../documents/locale/fa/LC_MESSAGES/django.po | 99 ++--- .../documents/locale/fr/LC_MESSAGES/django.mo | Bin 32010 -> 32290 bytes .../documents/locale/fr/LC_MESSAGES/django.po | 280 ++++--------- .../documents/locale/hu/LC_MESSAGES/django.po | 89 ++--- .../documents/locale/id/LC_MESSAGES/django.po | 97 ++--- .../documents/locale/it/LC_MESSAGES/django.po | 108 ++--- .../documents/locale/lv/LC_MESSAGES/django.mo | Bin 31621 -> 32107 bytes .../documents/locale/lv/LC_MESSAGES/django.po | 231 ++++------- .../locale/nl_NL/LC_MESSAGES/django.po | 74 ++-- .../documents/locale/pl/LC_MESSAGES/django.po | 124 +++--- .../documents/locale/pt/LC_MESSAGES/django.po | 75 ++-- .../locale/pt_BR/LC_MESSAGES/django.po | 149 +++---- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 33080 -> 33294 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 264 ++++--------- .../documents/locale/ru/LC_MESSAGES/django.po | 97 ++--- .../locale/sl_SI/LC_MESSAGES/django.po | 84 ++-- .../locale/tr_TR/LC_MESSAGES/django.po | 120 +++--- .../locale/vi_VN/LC_MESSAGES/django.po | 62 ++- .../documents/locale/zh/LC_MESSAGES/django.po | 110 ++---- .../locale/ar/LC_MESSAGES/django.po | 10 +- .../locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 15 +- .../locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 12 +- .../locale/el/LC_MESSAGES/django.po | 12 +- .../locale/es/LC_MESSAGES/django.po | 12 +- .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.po | 12 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 7 +- .../locale/it/LC_MESSAGES/django.po | 7 +- .../locale/lv/LC_MESSAGES/django.po | 15 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 12 +- .../locale/ro_RO/LC_MESSAGES/django.po | 15 +- .../locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 11 +- .../events/locale/ar/LC_MESSAGES/django.po | 10 +- .../events/locale/bg/LC_MESSAGES/django.po | 7 +- .../events/locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../events/locale/cs/LC_MESSAGES/django.po | 10 +- .../events/locale/da_DK/LC_MESSAGES/django.po | 7 +- .../events/locale/de_DE/LC_MESSAGES/django.po | 15 +- .../events/locale/el/LC_MESSAGES/django.po | 7 +- .../events/locale/es/LC_MESSAGES/django.po | 14 +- .../events/locale/fa/LC_MESSAGES/django.po | 7 +- .../events/locale/fr/LC_MESSAGES/django.po | 15 +- .../events/locale/hu/LC_MESSAGES/django.po | 7 +- .../events/locale/id/LC_MESSAGES/django.po | 7 +- .../events/locale/it/LC_MESSAGES/django.po | 7 +- .../events/locale/lv/LC_MESSAGES/django.mo | Bin 3215 -> 3217 bytes .../events/locale/lv/LC_MESSAGES/django.po | 16 +- .../events/locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../events/locale/pl/LC_MESSAGES/django.po | 11 +- .../events/locale/pt/LC_MESSAGES/django.po | 7 +- .../events/locale/pt_BR/LC_MESSAGES/django.po | 7 +- .../events/locale/ro_RO/LC_MESSAGES/django.po | 17 +- .../events/locale/ru/LC_MESSAGES/django.po | 11 +- .../events/locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../events/locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../events/locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../events/locale/zh/LC_MESSAGES/django.po | 7 +- .../locale/ar/LC_MESSAGES/django.po | 13 +- .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/cs/LC_MESSAGES/django.po | 13 +- .../locale/da_DK/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.po | 16 +- .../locale/el/LC_MESSAGES/django.po | 10 +- .../locale/es/LC_MESSAGES/django.po | 20 +- .../locale/fa/LC_MESSAGES/django.po | 10 +- .../locale/fr/LC_MESSAGES/django.po | 14 +- .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.po | 10 +- .../locale/lv/LC_MESSAGES/django.po | 17 +- .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../locale/pl/LC_MESSAGES/django.po | 14 +- .../locale/pt/LC_MESSAGES/django.po | 16 +- .../locale/pt_BR/LC_MESSAGES/django.po | 16 +- .../locale/ro_RO/LC_MESSAGES/django.po | 33 +- .../locale/ru/LC_MESSAGES/django.po | 14 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.po | 13 +- .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh/LC_MESSAGES/django.po | 10 +- .../linking/locale/ar/LC_MESSAGES/django.po | 19 +- .../linking/locale/bg/LC_MESSAGES/django.po | 16 +- .../locale/bs_BA/LC_MESSAGES/django.po | 27 +- .../linking/locale/cs/LC_MESSAGES/django.po | 19 +- .../locale/da_DK/LC_MESSAGES/django.po | 14 +- .../locale/de_DE/LC_MESSAGES/django.po | 41 +- .../linking/locale/el/LC_MESSAGES/django.po | 24 +- .../linking/locale/es/LC_MESSAGES/django.po | 45 +-- .../linking/locale/fa/LC_MESSAGES/django.po | 21 +- .../linking/locale/fr/LC_MESSAGES/django.mo | Bin 5688 -> 7300 bytes .../linking/locale/fr/LC_MESSAGES/django.po | 37 +- .../linking/locale/hu/LC_MESSAGES/django.po | 14 +- .../linking/locale/id/LC_MESSAGES/django.po | 14 +- .../linking/locale/it/LC_MESSAGES/django.po | 25 +- .../linking/locale/lv/LC_MESSAGES/django.mo | Bin 6923 -> 6885 bytes .../linking/locale/lv/LC_MESSAGES/django.po | 49 +-- .../locale/nl_NL/LC_MESSAGES/django.po | 14 +- .../linking/locale/pl/LC_MESSAGES/django.po | 22 +- .../linking/locale/pt/LC_MESSAGES/django.po | 14 +- .../locale/pt_BR/LC_MESSAGES/django.po | 25 +- .../locale/ro_RO/LC_MESSAGES/django.po | 48 +-- .../linking/locale/ru/LC_MESSAGES/django.po | 18 +- .../locale/sl_SI/LC_MESSAGES/django.po | 17 +- .../locale/tr_TR/LC_MESSAGES/django.po | 21 +- .../locale/vi_VN/LC_MESSAGES/django.po | 14 +- .../linking/locale/zh/LC_MESSAGES/django.po | 25 +- .../locale/ar/LC_MESSAGES/django.po | 10 +- .../locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../locale/el/LC_MESSAGES/django.po | 7 +- .../locale/es/LC_MESSAGES/django.po | 14 +- .../locale/fa/LC_MESSAGES/django.po | 7 +- .../locale/fr/LC_MESSAGES/django.po | 15 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 7 +- .../locale/it/LC_MESSAGES/django.po | 7 +- .../locale/lv/LC_MESSAGES/django.po | 17 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../locale/pl/LC_MESSAGES/django.po | 11 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 7 +- .../locale/ro_RO/LC_MESSAGES/django.po | 18 +- .../locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 7 +- .../mailer/locale/ar/LC_MESSAGES/django.mo | Bin 692 -> 692 bytes .../mailer/locale/ar/LC_MESSAGES/django.po | 28 +- .../mailer/locale/bg/LC_MESSAGES/django.mo | Bin 1286 -> 1286 bytes .../mailer/locale/bg/LC_MESSAGES/django.po | 25 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.mo | Bin 8082 -> 8036 bytes .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 75 ++-- .../mailer/locale/cs/LC_MESSAGES/django.mo | Bin 596 -> 596 bytes .../mailer/locale/cs/LC_MESSAGES/django.po | 28 +- .../mailer/locale/da_DK/LC_MESSAGES/django.mo | Bin 715 -> 715 bytes .../mailer/locale/da_DK/LC_MESSAGES/django.po | 25 +- .../mailer/locale/de_DE/LC_MESSAGES/django.mo | Bin 8987 -> 8921 bytes .../mailer/locale/de_DE/LC_MESSAGES/django.po | 89 ++--- .../mailer/locale/el/LC_MESSAGES/django.mo | Bin 10135 -> 10061 bytes .../mailer/locale/el/LC_MESSAGES/django.po | 78 ++-- .../mailer/locale/es/LC_MESSAGES/django.mo | Bin 9643 -> 9586 bytes .../mailer/locale/es/LC_MESSAGES/django.po | 108 ++--- .../mailer/locale/fa/LC_MESSAGES/django.mo | Bin 2057 -> 2057 bytes .../mailer/locale/fa/LC_MESSAGES/django.po | 25 +- .../mailer/locale/fr/LC_MESSAGES/django.mo | Bin 9396 -> 9347 bytes .../mailer/locale/fr/LC_MESSAGES/django.po | 90 ++--- .../mailer/locale/hu/LC_MESSAGES/django.mo | Bin 1034 -> 1034 bytes .../mailer/locale/hu/LC_MESSAGES/django.po | 25 +- .../mailer/locale/id/LC_MESSAGES/django.mo | Bin 681 -> 681 bytes .../mailer/locale/id/LC_MESSAGES/django.po | 25 +- .../mailer/locale/it/LC_MESSAGES/django.mo | Bin 3191 -> 3191 bytes .../mailer/locale/it/LC_MESSAGES/django.po | 41 +- .../mailer/locale/lv/LC_MESSAGES/django.mo | Bin 9060 -> 8944 bytes .../mailer/locale/lv/LC_MESSAGES/django.po | 76 ++-- .../mailer/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1481 -> 1481 bytes .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 25 +- .../mailer/locale/pl/LC_MESSAGES/django.mo | Bin 3227 -> 3227 bytes .../mailer/locale/pl/LC_MESSAGES/django.po | 38 +- .../mailer/locale/pt/LC_MESSAGES/django.mo | Bin 1432 -> 1432 bytes .../mailer/locale/pt/LC_MESSAGES/django.po | 29 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.mo | Bin 3144 -> 3144 bytes .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 38 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.mo | Bin 9672 -> 9627 bytes .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 102 ++--- .../mailer/locale/ru/LC_MESSAGES/django.mo | Bin 2101 -> 2101 bytes .../mailer/locale/ru/LC_MESSAGES/django.po | 29 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.mo | Bin 554 -> 554 bytes .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 28 +- .../mailer/locale/tr_TR/LC_MESSAGES/django.mo | Bin 7483 -> 7434 bytes .../mailer/locale/tr_TR/LC_MESSAGES/django.po | 70 +--- .../mailer/locale/vi_VN/LC_MESSAGES/django.mo | Bin 500 -> 500 bytes .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 25 +- .../mailer/locale/zh/LC_MESSAGES/django.mo | Bin 7799 -> 7747 bytes .../mailer/locale/zh/LC_MESSAGES/django.po | 53 +-- .../locale/ar/LC_MESSAGES/django.po | 10 +- .../locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/el/LC_MESSAGES/django.po | 7 +- .../locale/es/LC_MESSAGES/django.po | 7 +- .../locale/fa/LC_MESSAGES/django.po | 7 +- .../locale/fr/LC_MESSAGES/django.po | 7 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 7 +- .../locale/it/LC_MESSAGES/django.po | 7 +- .../locale/lv/LC_MESSAGES/django.po | 10 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../locale/pl/LC_MESSAGES/django.po | 11 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 7 +- .../locale/ro_RO/LC_MESSAGES/django.po | 13 +- .../locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 7 +- .../metadata/locale/ar/LC_MESSAGES/django.po | 31 +- .../metadata/locale/bg/LC_MESSAGES/django.po | 22 +- .../locale/bs_BA/LC_MESSAGES/django.po | 51 +-- .../metadata/locale/cs/LC_MESSAGES/django.po | 25 +- .../locale/da_DK/LC_MESSAGES/django.po | 22 +- .../locale/de_DE/LC_MESSAGES/django.po | 88 ++--- .../metadata/locale/el/LC_MESSAGES/django.po | 22 +- .../metadata/locale/es/LC_MESSAGES/django.po | 91 ++--- .../metadata/locale/fa/LC_MESSAGES/django.po | 38 +- .../metadata/locale/fr/LC_MESSAGES/django.po | 82 ++-- .../metadata/locale/hu/LC_MESSAGES/django.po | 22 +- .../metadata/locale/id/LC_MESSAGES/django.po | 22 +- .../metadata/locale/it/LC_MESSAGES/django.po | 50 +-- .../metadata/locale/lv/LC_MESSAGES/django.mo | Bin 11847 -> 11807 bytes .../metadata/locale/lv/LC_MESSAGES/django.po | 88 ++--- .../locale/nl_NL/LC_MESSAGES/django.po | 22 +- .../metadata/locale/pl/LC_MESSAGES/django.po | 43 +- .../metadata/locale/pt/LC_MESSAGES/django.po | 27 +- .../locale/pt_BR/LC_MESSAGES/django.po | 51 +-- .../locale/ro_RO/LC_MESSAGES/django.po | 91 ++--- .../metadata/locale/ru/LC_MESSAGES/django.po | 48 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 25 +- .../locale/tr_TR/LC_MESSAGES/django.po | 48 +-- .../locale/vi_VN/LC_MESSAGES/django.po | 22 +- .../metadata/locale/zh/LC_MESSAGES/django.po | 45 +-- .../mirroring/locale/ar/LC_MESSAGES/django.po | 10 +- .../mirroring/locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../mirroring/locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/el/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 7 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 13 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 7 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 7 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 14 +- .../mirroring/locale/lv/LC_MESSAGES/django.po | 12 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 13 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 17 +- .../locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../mirroring/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/zh/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 10 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 7 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../apps/motd/locale/cs/LC_MESSAGES/django.po | 10 +- .../motd/locale/da_DK/LC_MESSAGES/django.po | 7 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/el/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/es/LC_MESSAGES/django.po | 15 +- .../apps/motd/locale/fa/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/fr/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/hu/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/id/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/it/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/lv/LC_MESSAGES/django.po | 15 +- .../motd/locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/pl/LC_MESSAGES/django.po | 11 +- .../apps/motd/locale/pt/LC_MESSAGES/django.po | 7 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 7 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 15 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 11 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../motd/locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../motd/locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../apps/motd/locale/zh/LC_MESSAGES/django.po | 11 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 14 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 11 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../apps/ocr/locale/cs/LC_MESSAGES/django.po | 14 +- .../ocr/locale/da_DK/LC_MESSAGES/django.po | 11 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 23 +- .../apps/ocr/locale/el/LC_MESSAGES/django.po | 21 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 15 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 14 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 18 +- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 11 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 11 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 15 +- .../apps/ocr/locale/lv/LC_MESSAGES/django.po | 22 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 15 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 11 +- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 25 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 19 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../ocr/locale/tr_TR/LC_MESSAGES/django.po | 15 +- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../apps/ocr/locale/zh/LC_MESSAGES/django.po | 11 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 1072 -> 1072 bytes .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 1039 -> 1039 bytes .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2245 -> 2245 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 24 +- .../locale/cs/LC_MESSAGES/django.mo | Bin 657 -> 639 bytes .../locale/cs/LC_MESSAGES/django.po | 14 +- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 669 -> 669 bytes .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3479 -> 3461 bytes .../locale/de_DE/LC_MESSAGES/django.po | 39 +- .../locale/el/LC_MESSAGES/django.mo | Bin 2473 -> 2473 bytes .../locale/el/LC_MESSAGES/django.po | 21 +- .../locale/es/LC_MESSAGES/django.mo | Bin 3348 -> 3348 bytes .../locale/es/LC_MESSAGES/django.po | 36 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 2246 -> 2246 bytes .../locale/fa/LC_MESSAGES/django.po | 20 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 3571 -> 3550 bytes .../locale/fr/LC_MESSAGES/django.po | 39 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 2184 -> 2184 bytes .../locale/hu/LC_MESSAGES/django.po | 21 +- .../locale/id/LC_MESSAGES/django.mo | Bin 499 -> 504 bytes .../locale/id/LC_MESSAGES/django.po | 11 +- .../locale/it/LC_MESSAGES/django.mo | Bin 1961 -> 1961 bytes .../locale/it/LC_MESSAGES/django.po | 17 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 3351 -> 3325 bytes .../locale/lv/LC_MESSAGES/django.po | 38 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1743 -> 1743 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 1776 -> 1776 bytes .../locale/pl/LC_MESSAGES/django.po | 17 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 995 -> 995 bytes .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 2013 -> 2013 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 21 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 3518 -> 3521 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 41 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 1951 -> 1951 bytes .../locale/ru/LC_MESSAGES/django.po | 17 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 1014 -> 1014 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 1948 -> 1948 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 17 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 669 -> 669 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh/LC_MESSAGES/django.mo | Bin 3012 -> 3012 bytes .../locale/zh/LC_MESSAGES/django.po | 17 +- .../platform/locale/ar/LC_MESSAGES/django.po | 9 +- .../platform/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../platform/locale/cs/LC_MESSAGES/django.po | 7 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../platform/locale/el/LC_MESSAGES/django.po | 4 +- .../platform/locale/es/LC_MESSAGES/django.po | 6 +- .../platform/locale/fa/LC_MESSAGES/django.po | 6 +- .../platform/locale/fr/LC_MESSAGES/django.po | 6 +- .../platform/locale/hu/LC_MESSAGES/django.po | 7 +- .../platform/locale/id/LC_MESSAGES/django.po | 7 +- .../platform/locale/it/LC_MESSAGES/django.po | 6 +- .../platform/locale/lv/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../platform/locale/pl/LC_MESSAGES/django.po | 10 +- .../platform/locale/pt/LC_MESSAGES/django.po | 12 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../platform/locale/ru/LC_MESSAGES/django.po | 10 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../platform/locale/zh/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 10 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../rest_api/locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 7 +- .../rest_api/locale/el/LC_MESSAGES/django.po | 7 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 7 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 7 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/lv/LC_MESSAGES/django.po | 12 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 13 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/zh/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 10 +- .../locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/el/LC_MESSAGES/django.po | 7 +- .../locale/es/LC_MESSAGES/django.po | 11 +- .../locale/fa/LC_MESSAGES/django.po | 7 +- .../locale/fr/LC_MESSAGES/django.po | 11 +- .../locale/hu/LC_MESSAGES/django.po | 7 +- .../locale/id/LC_MESSAGES/django.po | 7 +- .../locale/it/LC_MESSAGES/django.po | 7 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 1917 -> 1907 bytes .../locale/lv/LC_MESSAGES/django.po | 18 +- .../locale/nl_NL/LC_MESSAGES/django.po | 7 +- .../locale/pl/LC_MESSAGES/django.po | 11 +- .../locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 7 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../locale/zh/LC_MESSAGES/django.po | 7 +- .../sources/locale/ar/LC_MESSAGES/django.mo | Bin 2731 -> 2731 bytes .../sources/locale/ar/LC_MESSAGES/django.po | 16 +- .../sources/locale/bg/LC_MESSAGES/django.mo | Bin 1561 -> 1561 bytes .../sources/locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 11551 -> 11170 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 76 +--- .../sources/locale/cs/LC_MESSAGES/django.mo | Bin 596 -> 596 bytes .../sources/locale/cs/LC_MESSAGES/django.po | 16 +- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 1978 -> 1978 bytes .../locale/da_DK/LC_MESSAGES/django.po | 17 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15715 -> 15325 bytes .../locale/de_DE/LC_MESSAGES/django.po | 123 ++---- .../sources/locale/el/LC_MESSAGES/django.mo | Bin 10829 -> 10808 bytes .../sources/locale/el/LC_MESSAGES/django.po | 55 +-- .../sources/locale/es/LC_MESSAGES/django.mo | Bin 16293 -> 15860 bytes .../sources/locale/es/LC_MESSAGES/django.po | 131 ++----- .../sources/locale/fa/LC_MESSAGES/django.mo | Bin 13056 -> 12559 bytes .../sources/locale/fa/LC_MESSAGES/django.po | 66 +--- .../sources/locale/fr/LC_MESSAGES/django.mo | Bin 13627 -> 13180 bytes .../sources/locale/fr/LC_MESSAGES/django.po | 93 ++--- .../sources/locale/hu/LC_MESSAGES/django.mo | Bin 2149 -> 2149 bytes .../sources/locale/hu/LC_MESSAGES/django.po | 13 +- .../sources/locale/id/LC_MESSAGES/django.mo | Bin 1937 -> 1942 bytes .../sources/locale/id/LC_MESSAGES/django.po | 19 +- .../sources/locale/it/LC_MESSAGES/django.mo | Bin 8924 -> 8487 bytes .../sources/locale/it/LC_MESSAGES/django.po | 57 +-- .../sources/locale/lv/LC_MESSAGES/django.mo | Bin 15838 -> 15335 bytes .../sources/locale/lv/LC_MESSAGES/django.po | 135 ++----- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 3943 -> 3943 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 23 +- .../sources/locale/pl/LC_MESSAGES/django.mo | Bin 2850 -> 2850 bytes .../sources/locale/pl/LC_MESSAGES/django.po | 17 +- .../sources/locale/pt/LC_MESSAGES/django.mo | Bin 2479 -> 2479 bytes .../sources/locale/pt/LC_MESSAGES/django.po | 17 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 9069 -> 8652 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 58 +-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 16323 -> 15909 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 127 ++---- .../sources/locale/ru/LC_MESSAGES/django.mo | Bin 9168 -> 9173 bytes .../sources/locale/ru/LC_MESSAGES/django.po | 43 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 725 -> 725 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 11527 -> 11166 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 73 +--- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1618 -> 1618 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../sources/locale/zh/LC_MESSAGES/django.mo | Bin 12424 -> 12072 bytes .../sources/locale/zh/LC_MESSAGES/django.po | 40 +- .../storage/locale/ar/LC_MESSAGES/django.po | 10 +- .../storage/locale/bg/LC_MESSAGES/django.po | 7 +- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../storage/locale/cs/LC_MESSAGES/django.po | 10 +- .../locale/da_DK/LC_MESSAGES/django.po | 7 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../storage/locale/el/LC_MESSAGES/django.po | 11 +- .../storage/locale/es/LC_MESSAGES/django.po | 11 +- .../storage/locale/fa/LC_MESSAGES/django.po | 11 +- .../storage/locale/fr/LC_MESSAGES/django.po | 11 +- .../storage/locale/hu/LC_MESSAGES/django.po | 7 +- .../storage/locale/id/LC_MESSAGES/django.po | 7 +- .../storage/locale/it/LC_MESSAGES/django.po | 11 +- .../storage/locale/lv/LC_MESSAGES/django.po | 14 +- .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../storage/locale/pl/LC_MESSAGES/django.po | 15 +- .../storage/locale/pt/LC_MESSAGES/django.po | 7 +- .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../storage/locale/ru/LC_MESSAGES/django.po | 11 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 7 +- .../locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../storage/locale/zh/LC_MESSAGES/django.po | 7 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 13 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 7 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/cs/LC_MESSAGES/django.po | 10 +- .../tags/locale/da_DK/LC_MESSAGES/django.po | 7 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/el/LC_MESSAGES/django.po | 17 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 22 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 17 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 30 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 22 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 7 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 22 +- .../apps/tags/locale/lv/LC_MESSAGES/django.mo | Bin 5778 -> 6070 bytes .../apps/tags/locale/lv/LC_MESSAGES/django.po | 73 ++-- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 10 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 19 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 7 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 22 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 29 +- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 11 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../tags/locale/tr_TR/LC_MESSAGES/django.po | 17 +- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 7 +- .../apps/tags/locale/zh/LC_MESSAGES/django.po | 7 +- .../locale/ar/LC_MESSAGES/django.po | 9 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/cs/LC_MESSAGES/django.po | 9 +- .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/el/LC_MESSAGES/django.po | 6 +- .../locale/es/LC_MESSAGES/django.po | 6 +- .../locale/fa/LC_MESSAGES/django.po | 6 +- .../locale/fr/LC_MESSAGES/django.po | 6 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 6 +- .../locale/lv/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 10 +- .../locale/pt/LC_MESSAGES/django.po | 12 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 10 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 9 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh/LC_MESSAGES/django.po | 6 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 2050 -> 2050 bytes .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 2317 -> 2317 bytes .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 3680 -> 3680 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 27 +- .../locale/cs/LC_MESSAGES/django.mo | Bin 563 -> 563 bytes .../locale/cs/LC_MESSAGES/django.po | 12 +- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 636 -> 636 bytes .../locale/da_DK/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 5088 -> 5088 bytes .../locale/de_DE/LC_MESSAGES/django.po | 35 +- .../locale/el/LC_MESSAGES/django.mo | Bin 4531 -> 4531 bytes .../locale/el/LC_MESSAGES/django.po | 21 +- .../locale/es/LC_MESSAGES/django.mo | Bin 5466 -> 5466 bytes .../locale/es/LC_MESSAGES/django.po | 35 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 4019 -> 4019 bytes .../locale/fa/LC_MESSAGES/django.po | 21 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 5547 -> 5864 bytes .../locale/fr/LC_MESSAGES/django.po | 42 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 1014 -> 1014 bytes .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.mo | Bin 645 -> 645 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 2792 -> 2792 bytes .../locale/it/LC_MESSAGES/django.po | 21 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 5303 -> 5542 bytes .../locale/lv/LC_MESSAGES/django.po | 38 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 3032 -> 3032 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 21 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 3817 -> 3817 bytes .../locale/pl/LC_MESSAGES/django.po | 29 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 2352 -> 2352 bytes .../locale/pt/LC_MESSAGES/django.po | 17 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3405 -> 3405 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 27 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 5524 -> 5817 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 44 +-- .../locale/ru/LC_MESSAGES/django.mo | Bin 3777 -> 3777 bytes .../locale/ru/LC_MESSAGES/django.po | 27 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 622 -> 622 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 3661 -> 3661 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 26 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1629 -> 1629 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../locale/zh/LC_MESSAGES/django.mo | Bin 4179 -> 4179 bytes .../locale/zh/LC_MESSAGES/django.po | 23 +- 1055 files changed, 8919 insertions(+), 17069 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index f7c74f6733..266f7c0345 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -171,7 +169,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index 89b7f558f0..c63866b825 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -170,7 +169,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po index c5c1174560..106436b792 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -92,9 +90,7 @@ msgstr "API URL ukazujući na listu dozvola za ovu listu kontrole pristupa." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL API koji ukazuje na dozvolu u vezi sa listom kontrole pristupa kojoj je " -"priložena. Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." +msgstr "URL API koji ukazuje na dozvolu u vezi sa listom kontrole pristupa kojoj je priložena. Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -109,9 +105,7 @@ msgstr "Nema takve dozvole: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Lista odvojenih primarnih ključeva za razdvajanje sa komandom dodeljuje se " -"ovoj listi kontrola pristupa." +msgstr "Lista odvojenih primarnih ključeva za razdvajanje sa komandom dodeljuje se ovoj listi kontrola pristupa." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -176,7 +170,8 @@ msgid "Object ID" msgstr "ID objekta" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Numerički identifikator objekta za koji će se pristup mijenjati." #: workflow_actions.py:43 workflow_actions.py:158 @@ -190,8 +185,7 @@ msgstr "Uloge čiji će pristup biti modifikovan." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Dozvole za dodeljivanje / poništavanje / od uloge za gore izabrani objekat." +msgstr "Dozvole za dodeljivanje / poništavanje / od uloge za gore izabrani objekat." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po index df870873dd..1aa27dae94 100644 --- a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jiri Fait , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -172,7 +170,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po index 81c991375d..16cfec73c6 100644 --- a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -171,7 +170,8 @@ msgid "Object ID" msgstr "Objekt ID" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po index a9d80a709d..a6463d208f 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -57,9 +56,7 @@ msgstr "Berechtigungen" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "" -"Objekt \"%s\" ist kein Modell und kann nicht auf Zugriffsberechtigungen " -"überprüft werden." +msgstr "Objekt \"%s\" ist kein Modell und kann nicht auf Zugriffsberechtigungen überprüft werden." #: managers.py:236 #, python-format @@ -96,15 +93,11 @@ msgstr "API URL für die Liste der Berechtigungen dieser ACL" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL für die Berechtigung in Beziehung zur Zugriffsberechtigungsliste der " -"sie zugeordnet ist. Diese URL unterscheidet sich von der normalen Workflow " -"URL." +msgstr "API URL für die Berechtigung in Beziehung zur Zugriffsberechtigungsliste der sie zugeordnet ist. Diese URL unterscheidet sich von der normalen Workflow URL." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Primärschlüssel der neuen Berechtigung für die Zugriffsberechtigungsliste." +msgstr "Primärschlüssel der neuen Berechtigung für die Zugriffsberechtigungsliste." #: serializers.py:115 serializers.py:191 #, python-format @@ -115,14 +108,11 @@ msgstr "Keine solche Berechtigung: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Durch Komma getrennte Liste von Primärschlüsseln der zu dieser " -"Zugriffsberechtigungsliste hinzuzufügenden Berechtigungen." +msgstr "Durch Komma getrennte Liste von Primärschlüsseln der zu dieser Zugriffsberechtigungsliste hinzuzufügenden Berechtigungen." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Primärschlüssel der Rolle die dieser Zugriffsberechtigung zugeordnet ist." +msgstr "Primärschlüssel der Rolle die dieser Zugriffsberechtigung zugeordnet ist." #: views.py:62 #, python-format @@ -142,9 +132,7 @@ msgstr "Keine Zugriffsberechtigungen für dieses Objekt verfügbar" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"Über Zugriffsberechtigungen wird der Zugriff von Benutzern zu Systemobjekten " -"kontrolliert." +msgstr "Über Zugriffsberechtigungen wird der Zugriff von Benutzern zu Systemobjekten kontrolliert." #: views.py:154 #, python-format @@ -170,12 +158,7 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "" -"Unzureichende Berechtigungen werden durch ein übergeordnetes Objekt vererbt " -"oder direkt an die Rolle erteilt. Sie können nicht direkt auf diesem " -"Formular bearbeitet werden. Vererbte Berechtigungen müssen auf dem " -"übergeordneten Objekt oder für die Rolle über das Einrichtungsmenü " -"eingestellt werden." +msgstr "Unzureichende Berechtigungen werden durch ein übergeordnetes Objekt vererbt oder direkt an die Rolle erteilt. Sie können nicht direkt auf diesem Formular bearbeitet werden. Vererbte Berechtigungen müssen auf dem übergeordneten Objekt oder für die Rolle über das Einrichtungsmenü eingestellt werden." #: workflow_actions.py:26 msgid "Object type" @@ -190,7 +173,8 @@ msgid "Object ID" msgstr "Objekt ID" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Numerischer Identifikator des Objekts" #: workflow_actions.py:43 workflow_actions.py:158 @@ -204,9 +188,7 @@ msgstr "Rollen deren Zugang bearbeitet wird." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Berechtigungen, die der Rolle für das ausgewählte Objekt erteilt oder " -"entzogen werden." +msgstr "Berechtigungen, die der Rolle für das ausgewählte Objekt erteilt oder entzogen werden." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po index 4d336f1837..2a203bec79 100644 --- a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -170,10 +169,9 @@ msgid "Object ID" msgstr "Αναγνωριστικό αντικειμένου" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." -msgstr "" -"Αριθμητικό αναγνωριστικό του αντικειμένου για το οποίο η πρόσβαση θα " -"τροποποιηθεί." +msgid "" +"Numeric identifier of the object for which the access will be modified." +msgstr "Αριθμητικό αναγνωριστικό του αντικειμένου για το οποίο η πρόσβαση θα τροποποιηθεί." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -186,9 +184,7 @@ msgstr "Ρόλοι των οποιων η πρόσβαση θα τροποποι #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Δικαιώματα προς χορήγηση/ανάληση προς/από τον ρόλο για το ανωτέρω επιλεγμένο " -"αντικείμενο." +msgstr "Δικαιώματα προς χορήγηση/ανάληση προς/από τον ρόλο για το ανωτέρω επιλεγμένο αντικείμενο." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index 0498902c5e..da325b1542 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2015 # Roberto Rosario, 2015 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -87,24 +86,17 @@ msgstr "Ver LCAs" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "" -"URL de la API que apunta a la lista de permisos para esta lista de control " -"de acceso." +msgstr "URL de la API que apunta a la lista de permisos para esta lista de control de acceso." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL de la API que apunta a un permiso en relación con la lista de control " -"de acceso a la que está conectado. Esta URL es diferente de la URL canónica " -"de flujo de trabajo." +msgstr "URL de la API que apunta a un permiso en relación con la lista de control de acceso a la que está conectado. Esta URL es diferente de la URL canónica de flujo de trabajo." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Llave primaria del nuevo permiso para conceder a la lista de control de " -"acceso." +msgstr "Llave primaria del nuevo permiso para conceder a la lista de control de acceso." #: serializers.py:115 serializers.py:191 #, python-format @@ -115,15 +107,11 @@ msgstr "No existe el permiso: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Lista separada por comas de las llaves primarias de permisos para conceder a " -"esta lista de control de acceso." +msgstr "Lista separada por comas de las llaves primarias de permisos para conceder a esta lista de control de acceso." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Las llaves primarias de los roles a los que se vincula esta lista de control " -"de acceso." +msgstr "Las llaves primarias de los roles a los que se vincula esta lista de control de acceso." #: views.py:62 #, python-format @@ -143,9 +131,7 @@ msgstr "No hay LCAs para este objeto" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"LCA significa Lista de Control de Acceso y es un método preciso para " -"controlar el acceso de los usuarios a los objetos en el sistema." +msgstr "LCA significa Lista de Control de Acceso y es un método preciso para controlar el acceso de los usuarios a los objetos en el sistema." #: views.py:154 #, python-format @@ -171,11 +157,7 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "" -"Los permisos deshabilitados se heredan de un objeto principal o se otorgan " -"directamente al rol y no se pueden eliminar de esta vista. Los permisos " -"heredados deben eliminarse de la LCA del objeto principal o de su rol a " -"través del menú de Configuración." +msgstr "Los permisos deshabilitados se heredan de un objeto principal o se otorgan directamente al rol y no se pueden eliminar de esta vista. Los permisos heredados deben eliminarse de la LCA del objeto principal o de su rol a través del menú de Configuración." #: workflow_actions.py:26 msgid "Object type" @@ -190,7 +172,8 @@ msgid "Object ID" msgstr "ID de objeto" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Identificador numérico del objeto para el que se modificará el acceso." #: workflow_actions.py:43 workflow_actions.py:158 @@ -204,9 +187,7 @@ msgstr "Roles cuyo acceso será modificado." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Permisos para otorgar/revocar a los roles para el objeto seleccionado " -"anteriormente." +msgstr "Permisos para otorgar/revocar a los roles para el objeto seleccionado anteriormente." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index f6537ee7d6..89a25cfd42 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Nima Towhidi , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -92,9 +91,7 @@ msgstr "API URL اشاره گر به لیست اجازه های این دستر msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL API اشاره به اجازه در رابطه با لیست کنترل دسترسی که به آن متصل است. این " -"URL متفاوت از URL کارآفرینی کانونی است." +msgstr "URL API اشاره به اجازه در رابطه با لیست کنترل دسترسی که به آن متصل است. این URL متفاوت از URL کارآفرینی کانونی است." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -109,9 +106,7 @@ msgstr "این اجازه ئوجود ندارد: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"لیست مجوز از کلیدهای مجاز مجاز برای حذف این لیست کنترل دسترسی جداگانه را از " -"یکدیگر جدا کنید." +msgstr "لیست مجوز از کلیدهای مجاز مجاز برای حذف این لیست کنترل دسترسی جداگانه را از یکدیگر جدا کنید." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -176,7 +171,8 @@ msgid "Object ID" msgstr "شناسه اشیاء" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "شناسه عددی شئی که دسترسی به آن تغییر خواهد کرد." #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index 6d1fd6bad1..7946f444fa 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2016-2017 # Christophe CHAUVET , 2015 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -88,24 +87,17 @@ msgstr "Voir les droits" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "" -"URL de l'API pointant vers la liste des autorisations pour cette liste de " -"contrôle d'accès." +msgstr "URL de l'API pointant vers la liste des autorisations pour cette liste de contrôle d'accès." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL de l'API pointant vers une autorisation en relation avec la liste de " -"contrôle d'accès à laquelle elle est attachée. Cette URL est différente de " -"l'URL du flux de travail canonique." +msgstr "URL de l'API pointant vers une autorisation en relation avec la liste de contrôle d'accès à laquelle elle est attachée. Cette URL est différente de l'URL du flux de travail canonique." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Clé principale de la nouvelle autorisation à accorder à la liste de contrôle " -"d'accès." +msgstr "Clé principale de la nouvelle autorisation à accorder à la liste de contrôle d'accès." #: serializers.py:115 serializers.py:191 #, python-format @@ -116,14 +108,11 @@ msgstr "Aucune autorisation de ce genre : %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Liste séparée par des virgules des clés primaires d'autorisation à accorder " -"à cette liste de contrôle d'accès." +msgstr "Liste séparée par des virgules des clés primaires d'autorisation à accorder à cette liste de contrôle d'accès." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Clés primaires du rôle auquel cette liste de contrôle d'accès se rattache." +msgstr "Clés primaires du rôle auquel cette liste de contrôle d'accès se rattache." #: views.py:62 #, python-format @@ -184,10 +173,9 @@ msgid "Object ID" msgstr "Identifiant de l'objet" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." -msgstr "" -"Identifiant numérique de l'objet pour lequel les droits d'accès vont être " -"modifiés." +msgid "" +"Numeric identifier of the object for which the access will be modified." +msgstr "Identifiant numérique de l'objet pour lequel les droits d'accès vont être modifiés." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -200,8 +188,7 @@ msgstr "Rôles pour lesquels les droits d'accès vont être modifiés." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Autorisations à accorder/révoquer au rôle pour l'objet sélectionné ci-dessus." +msgstr "Autorisations à accorder/révoquer au rôle pour l'objet sélectionné ci-dessus." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index 4ea18eb29f..d9b1915d55 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -170,7 +169,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index 28e4f6f7f1..f05b38b412 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:44 @@ -170,7 +169,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 5a63d4b324..05002f4535 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniele Bortoluzzi , 2019 # Marco Camplese , 2016-2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -55,9 +54,7 @@ msgstr "Permessi" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "" -"L'oggetto \"%s\" non è un modello e su di esso non si può eseguire un " -"controllo accessi." +msgstr "L'oggetto \"%s\" non è un modello e su di esso non si può eseguire un controllo accessi." #: managers.py:236 #, python-format @@ -94,10 +91,7 @@ msgstr "URL delle API che punta alla lista controllo accessi" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL che indica una autorizzazione in relazione all'elenco di controllo " -"di accesso a cui è associato. Questo URL è diverso dall'originale canonico " -"URL." +msgstr "API URL che indica una autorizzazione in relazione all'elenco di controllo di accesso a cui è associato. Questo URL è diverso dall'originale canonico URL." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -112,9 +106,7 @@ msgstr "Nessun permesso: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Lista separata da virgole delle chiavi primarie dei permessi per garantire " -"l'accesso alle liste di controllo" +msgstr "Lista separata da virgole delle chiavi primarie dei permessi per garantire l'accesso alle liste di controllo" #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -138,10 +130,7 @@ msgstr "Non ci sono ACL per questo oggetto" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"ACL sta per Access Control List (lista di controllo degli accessi) ed è un " -"metodo preciso per controllare l'accesso dell'utente agli oggetti nel " -"sistema." +msgstr "ACL sta per Access Control List (lista di controllo degli accessi) ed è un metodo preciso per controllare l'accesso dell'utente agli oggetti nel sistema." #: views.py:154 #, python-format @@ -167,11 +156,7 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "" -"I permessi disabilitati sono ereditati da un oggetto padre o direttamente " -"concessi al ruolo e non possono essere rimossi da questa schermata. I " -"permessi ereditati vanno rimossi dalle ACL dell'oggetto padre o del ruolo " -"tramite il menù Setup." +msgstr "I permessi disabilitati sono ereditati da un oggetto padre o direttamente concessi al ruolo e non possono essere rimossi da questa schermata. I permessi ereditati vanno rimossi dalle ACL dell'oggetto padre o del ruolo tramite il menù Setup." #: workflow_actions.py:26 msgid "Object type" @@ -186,9 +171,9 @@ msgid "Object ID" msgstr "ID dell'oggetto" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." -msgstr "" -"Identificativo numerico dell'oggetto per il quale l'accesso sarà modificato" +msgid "" +"Numeric identifier of the object for which the access will be modified." +msgstr "Identificativo numerico dell'oggetto per il quale l'accesso sarà modificato" #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.mo index dd3ff3b865fc714cd2f73c008c5507dff21ed908..89d6babdf5b5a6feaea433d5c26cae4fc5e5b515 100644 GIT binary patch delta 1127 zcmZwGJ7`l;9LMp0nzl)!#y)-2sMpr2ttL$(zG_iROIwK|VmpX9T20^8vAe-SKvp~0hf@;iI-9Q*nk1-LEcqHaWm#{6W+vq_yqaM z65TZEI*3uno#8FKJYVjzaRuj*R3*Z6r|=jK;wM~>JGrYJkE13qR`x1tKjjCC(hzpe1)3OSJav9sx7UF6zV6s zgnHj)Jc!ru6u!ih=&vJXJx`}=?M5BnUn70U0e#S84B}_hNPYFCNLx@77(l(wLc)?s zB+=q*;cw~7=wj9NqRD8r&@>I+rT95@JY9dq(%ETgylZHTE3Gt*OG`hCRvS%c$WoAI z8bK6GQ~Xl~8~XkKt!?EUO<5D}py}fE?V!_{>TL8Mrwd5G?N-_rnx;b-#c~xA&OWEh zIGY;DCal7(YIlX#%B5mf`AE_(OuHkF!SG%q6zU4?-X5epN6d`vA4;3aOx(0n=`Q2w z!gxBGF@~&YZecu`F}f2b`vIGME;@8BVMgPDkyPS9q1ki4vdI{YTCs(>Y%a=UVmvr$ fn~B0xZ?D7AIZ;#l-PdDh%xuj5?{yQuYQOvjdP0fc delta 984 zcmXxjUu;WZ7{~GFXgk)iw)1yv9M&;pYbPt+;zE%jTOtvJaC62IVwARtE9oVXNMy?< zm`HCVG9k-Za48{i<6?0qYg{d{aD}+Q628BtebT3&)AyY7p67ke+fw_Nw&Lfe;J6VT zWD9xLF-zg(626G50ka0YhGD#cBX|pg_zUmhA3TDi46ed5YQFE-h>an$<=Bd=aR;6- zE80E|>KK?nUHAwW@EO+QI45=EV_d0m+<b(3yRqUMY9 zbS-cf-o^|Dc)oq$-~rC!VZ6k0TX6=r<44rW7pq2@O)ZY&b?ikJZ_}s;yv9%X9{E^_ zL0$g>*Wx?eh-ECQ(!U%eFcdLs#uTa}M^P)9K)w4}qz0Qq-M4@l{DEh%Cu(*Y?_vzU zqB^*U33M1tVmGRTLoxcV7G7XLE53uea0+RL%^@AERI37X?K)DSm1z>Sp1oJ;5ZHQ> zdaRAqMpLMWTJW|jUC;uW_5N!?6O2NwsXCwn)K+S+O{6wgE!YC)lG=!hc5)lpp&x|) zJlg&0mKLViLT)AXDlBtg&^?zM_WbEUI^h4S`|bFV`u$EFY`FOcLQiFJI_9 vp7XBcN4!Ed*XJI~4h`oDS, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:14-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-28 11:16+0000\n" +"Last-Translator: Māris Teivāns \n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -92,15 +90,11 @@ msgstr "API URL, kas norāda uz piekļuves kontroles saraksta atļauju sarakstu. msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL, kas norāda uz atļauju saistībā ar piekļuves kontroles sarakstu, " -"kuram tas ir pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." +msgstr "API URL, kas norāda uz atļauju saistībā ar piekļuves kontroles sarakstu, kuram tas ir pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Primārā atslēga priekš jaunās atļaujas, ko piešķirt piekļuves kontroles " -"sarakstam." +msgstr "Primārā atslēga priekš jaunās atļaujas, ko piešķirt piekļuves kontroles sarakstam." #: serializers.py:115 serializers.py:191 #, python-format @@ -111,15 +105,11 @@ msgstr "Šādas atļaujas nav: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Ar komatu atdalīts saraksts ar atļauju primārajām atslēgām, kuras piešķirt " -"šim piekļuves kontroles sarakstam." +msgstr "Ar komatu atdalīts saraksts ar atļauju primārajām atslēgām, kuras piešķirt šim piekļuves kontroles sarakstam." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Primārās atslēgas lomai, pie kuras šis piekļuves kontroles saraksts ir " -"piesaistīts." +msgstr "Primārās atslēgas lomai, pie kuras šis piekļuves kontroles saraksts ir piesaistīts." #: views.py:62 #, python-format @@ -139,9 +129,7 @@ msgstr "Šim objektam nav neviens PKS" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"PKS apzīmē Piekļuves Kontroles Sarakstu un tā ir precīza metode, lai " -"kontrolētu lietotāja piekļuvi sistēmā esošajiem objektiem." +msgstr "PKS apzīmē Piekļuves Kontroles Sarakstu un tā ir precīza metode, lai kontrolētu lietotāja piekļuvi sistēmā esošajiem objektiem." #: views.py:154 #, python-format @@ -167,10 +155,7 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "" -"Atspējotas atļaujas tiek mantotas no mātes objekta vai tieši piešķirtas " -"lomai, un tās nevar noņemt no šī skata. Mantotās atļaujas ir jānoņem no " -"mātes objekta PKS vai no lomas, izmantojot Setup izvēlni." +msgstr "Atspējotas atļaujas tiek mantotas no mātes objekta vai tieši piešķirtas lomai, un tās nevar noņemt no šī skata. Mantotās atļaujas ir jānoņem no mātes objekta PKS vai no lomas, izmantojot Setup izvēlni." #: workflow_actions.py:26 msgid "Object type" @@ -185,7 +170,8 @@ msgid "Object ID" msgstr "Objekta ID" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Objekta, kuram tiks rediģēta piekļuve, skaitliskais identifikators." #: workflow_actions.py:43 workflow_actions.py:158 @@ -199,7 +185,7 @@ msgstr "Lomas, kuru piekļuve tiks mainīta." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Atļaujas piešķirt / atsaukt iepriekš atlasītā objekta lomu." +msgstr "Atļaujas piešķirt/atsaukt iepriekš atlasītā objekta lomu." #: workflow_actions.py:60 msgid "Grant access" @@ -211,8 +197,8 @@ msgstr "Atsaukt piekļuvi" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Piešķirt piekļuvi dokumentam" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Atsaukt piekļuvi dokumentam" diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po index 7917d4136b..43f782289e 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -56,8 +55,7 @@ msgstr "Permissies" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "" -"Voorwerp \"%s\" is geen model en kan niet aangevinkt worden voor toegang" +msgstr "Voorwerp \"%s\" is geen model en kan niet aangevinkt worden voor toegang" #: managers.py:236 #, python-format @@ -94,37 +92,26 @@ msgstr "UPI URL wijzend naar de permissielijst voor deze toegangscontrolelijst" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"UPI URL wijzend naar een permissie gerelateerd aan de toegangscontrolelijst " -"waarvan het een aanhangsel is. Dit URL is anders dan de canonical Workflow " -"URL" +msgstr "UPI URL wijzend naar een permissie gerelateerd aan de toegangscontrolelijst waarvan het een aanhangsel is. Dit URL is anders dan de canonical Workflow URL" #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Primaire sleutel van de nieuwe permissie om toegang te geven tot de " -"toeganscontrolelijst" +msgstr "Primaire sleutel van de nieuwe permissie om toegang te geven tot de toeganscontrolelijst" #: serializers.py:115 serializers.py:191 #, python-format msgid "No such permission: %s" -msgstr "" -"Permissie niet gevonden: %s\n" -"\n" -"Alternative translation: Permissie bestaat niet (Permission does not exist)" +msgstr "Permissie niet gevonden: %s\n\nAlternative translation: Permissie bestaat niet (Permission does not exist)" #: serializers.py:130 msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Kommagescheiden lijst van primaire permissie sleutels om toegang te geven " -"tot deze toegangscontrole lijst" +msgstr "Kommagescheiden lijst van primaire permissie sleutels om toegang te geven tot deze toegangscontrole lijst" #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Primaire Sleutel van de rol waar deze togangscontrolelijst aan gekoppeld is. " +msgstr "Primaire Sleutel van de rol waar deze togangscontrolelijst aan gekoppeld is. " #: views.py:62 #, python-format @@ -144,9 +131,7 @@ msgstr "Er zijn geen toegangscontrolelijsten voor dit onderwerp" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"ACL betekent Toegangscontrolelijst en is een precieze methode om " -"gebruikerstoegang te geven of verwijderen voor objecten in het systeem" +msgstr "ACL betekent Toegangscontrolelijst en is een precieze methode om gebruikerstoegang te geven of verwijderen voor objecten in het systeem" #: views.py:154 #, python-format @@ -172,11 +157,7 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "" -"Onbeschikbare of uitgeschakelde rechten zijn geërfd van een hoger niveau of " -"direct geven aan de gebruikersrol en kunnen hier niet verwijderd worden. " -"Geërfde rechten moeten verwijderd worden vanaf het hogere niveau of via de " -"gebruikersrol via het Instellingen menu. " +msgstr "Onbeschikbare of uitgeschakelde rechten zijn geërfd van een hoger niveau of direct geven aan de gebruikersrol en kunnen hier niet verwijderd worden. Geërfde rechten moeten verwijderd worden vanaf het hogere niveau of via de gebruikersrol via het Instellingen menu. " #: workflow_actions.py:26 msgid "Object type" @@ -191,7 +172,8 @@ msgid "Object ID" msgstr "voorwerp identificatie" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Nummer van het voorwerp waarvoor de toegang wordt gewijzigd" #: workflow_actions.py:43 workflow_actions.py:158 @@ -205,9 +187,7 @@ msgstr "Gebruikersrol waarvoor de toegang wordt gewijzigd" #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Permissies to geven/verwijderen naar/van de rol voor het geselecteerde " -"object hierboven " +msgstr "Permissies to geven/verwijderen naar/van de rol voor het geselecteerde object hierboven " #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index c0dde75f81..cdad323055 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniel Winiarski , 2017 # Wojciech Warczakowski , 2016 @@ -13,15 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -95,15 +92,11 @@ msgstr "API URL prowadzący do listy uprawnień dla listy kontroli dostępu." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL prowadzący do uprawnienia w liście kontroli dostępu, w której " -"uprawnienie występuje. " +msgstr "API URL prowadzący do uprawnienia w liście kontroli dostępu, w której uprawnienie występuje. " #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Klucz główny nowego uprawnienia dla udzielenia dostępu do listy kontroli " -"dostępu." +msgstr "Klucz główny nowego uprawnienia dla udzielenia dostępu do listy kontroli dostępu." #: serializers.py:115 serializers.py:191 #, python-format @@ -114,9 +107,7 @@ msgstr "Brak uprawnienia: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Rozdzielona przecinkami lista uprawnień kluczy głównych dla udzielenia " -"dostępu do listy kontroli dostępu." +msgstr "Rozdzielona przecinkami lista uprawnień kluczy głównych dla udzielenia dostępu do listy kontroli dostępu." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -181,9 +172,9 @@ msgid "Object ID" msgstr "ID obiektu" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." -msgstr "" -"Numeryczny identyfikator obiektu, dla którego dostęp zostanie zmodyfikowany." +msgid "" +"Numeric identifier of the object for which the access will be modified." +msgstr "Numeryczny identyfikator obiektu, dla którego dostęp zostanie zmodyfikowany." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 11f60cc83e..56a7e901ba 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:44 @@ -170,7 +169,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po index ef7f3f79e5..3ba4681a6f 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -87,23 +86,17 @@ msgstr "Visualizar Controle de Acesso \"ACLs\"" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "" -"API URL apontando para a lista de permissões para esta lista de controle de " -"acesso." +msgstr "API URL apontando para a lista de permissões para esta lista de controle de acesso." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL apontando para uma permissão em relação à lista de controle de " -"acesso à qual ela está anexada. Esse URL é diferente do URL de fluxo de " -"trabalho canônico." +msgstr "API URL apontando para uma permissão em relação à lista de controle de acesso à qual ela está anexada. Esse URL é diferente do URL de fluxo de trabalho canônico." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Chave primária da nova permissão para aceder à lista de controle de acesso." +msgstr "Chave primária da nova permissão para aceder à lista de controle de acesso." #: serializers.py:115 serializers.py:191 #, python-format @@ -114,14 +107,11 @@ msgstr "Sem permissão: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Lista de chaves primárias de permissão separadas por vírgulas para conceder " -"a esta lista de controle de acesso." +msgstr "Lista de chaves primárias de permissão separadas por vírgulas para conceder a esta lista de controle de acesso." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"As chaves primárias da função a que esta lista de controle de acesso se liga." +msgstr "As chaves primárias da função a que esta lista de controle de acesso se liga." #: views.py:62 #, python-format @@ -141,9 +131,7 @@ msgstr "Não há Controle de Acesso \"ACLs\" para este objeto" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"ACL significa Lista de Controle de Acesso - \"Acess Control List\" - e é um " -"método preciso para controlar o acesso do usuário a objetos do sistema." +msgstr "ACL significa Lista de Controle de Acesso - \"Acess Control List\" - e é um método preciso para controlar o acesso do usuário a objetos do sistema." #: views.py:154 #, python-format @@ -184,7 +172,8 @@ msgid "Object ID" msgstr "ID do objeto" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Identificador numérico do objeto cujo acesso será modificado." #: workflow_actions.py:43 workflow_actions.py:158 @@ -198,9 +187,7 @@ msgstr "Papéis cujo acesso será modificado." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Permissões a serem concedidas/revogadas para o papel em relação ao objeto " -"selecionado acima." +msgstr "Permissões a serem concedidas/revogadas para o papel em relação ao objeto selecionado acima." #: workflow_actions.py:60 msgid "Grant access" diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo index ab3b6b4e44a06820f4a23ea5632fe397f1107160..f091bd4382a2d8e553fdaf5161967d468e30e9dc 100644 GIT binary patch delta 1100 zcmY+@OH30{6oBE=mOiXdY^jgdqJs)bwMJ+#0=ghUL?vtl6BaJUX?;#xZGpJ5OB44- zV`HKQ6G_}?gKpFq7si<2MvXfY6BZa3t_;e`{|pn!AkKKD`)4}BtQaTdckhc>>#2Fy_1#BMx_?=X&W|H^os7@<9cjW~|$@idN$ zROJdc0Uo?Z?f3~7aRJxhJTLW!pHY9ffGxO;n=uj;;gU3!f!(+PPv8-}fCupj>Ucj; z7xde)D&h}`9Opq4hwu~*;tV$7H`D=_ki|)aQ8L(qdvO4nt6ahzIE`&s!(M!WT(U$} zV|P7lqb}eMvxxJ3dCbi0hBbWT7 z(i{myowJoFj?zBswx6PYxG^TO1(Pw(pFEOY9%S*5>t*D48iVo=)j=AYQ*-s`dH%JmpEc~g6+GY7VPlo&bsR650&Y5p(=MB@c@)g52R|m}3$C`(|t$fA$+hNN7zsv1t!1D)` C2z+4x delta 982 zcmXxjKWI}?6vy$Ce~nFRV&dOw)aRenP>B>YX>A>pia{+3YDJ;T({?CEU;7fAlx)^T zhlJLl)#@mUAQ8HW=QUDh4o%Tk#@lpc|<7RlJFdNDdaJd9c5KR5A|wajCI=SkF_*O5eQ7flnY+}mghWu$FT={1QmQ*5WP zZrexGK~rcOJE4SCO(oQ){qF?TYGucqtzb7=t7NgZo2HU?f+JuKO$Sk->K&kE^+4#K zM!yfZj7a%A}6AQ2mP%azpQla{vGU diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po index fe1d9699d2..a54f03263a 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:14-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2019-06-18 15:35+0000\n" +"Last-Translator: Harald Ersch\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -55,8 +53,7 @@ msgstr "Permisiuni" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "" -"Obiectul \"%s\" nu este un model și nu poate fi verificat pentru acces." +msgstr "Obiectul \"%s\" nu este un model și nu poate fi verificat pentru acces." #: managers.py:236 #, python-format @@ -87,23 +84,17 @@ msgstr "Vezi ACL-uri" #: serializers.py:26 serializers.py:136 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "" -"Adresă URL API care indică lista permisiunilor pentru această listă de " -"control acces." +msgstr "Adresă URL API care indică lista permisiunilor pentru această listă de control acces." #: serializers.py:59 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"Adresă URL API care indică o permisiune în legătură cu lista de control al " -"accesului la care este atașată. Această adresă URL este diferită de adresa " -"URL canonică a fluxului de lucru." +msgstr "Adresă URL API care indică o permisiune în legătură cu lista de control al accesului la care este atașată. Această adresă URL este diferită de adresa URL canonică a fluxului de lucru." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Cheie primară a noii permisiuni de acordare a listei de control al accesului." +msgstr "Cheie primară a noii permisiuni de acordare a listei de control al accesului." #: serializers.py:115 serializers.py:191 #, python-format @@ -114,15 +105,11 @@ msgstr "Nu există o astfel de permisiune: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Liste separate prin virgulă de chei primare de permisiune pentru a acorda " -"această listă de control acces." +msgstr "Liste separate prin virgulă de chei primare de permisiune pentru a acorda această listă de control acces." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Cheile primare ale rolului la care se leagă această listă de control al " -"accesului." +msgstr "Cheile primare ale rolului la care se leagă această listă de control al accesului." #: views.py:62 #, python-format @@ -142,9 +129,7 @@ msgstr "Nu există ACL-uri pentru acest obiect" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" -"ACL reprezintă lista de control al accesului și este o metodă precisă de " -"control al accesului utilizatorilor la obiecte din sistem." +msgstr "ACL reprezintă lista de control al accesului și este o metodă precisă de control al accesului utilizatorilor la obiecte din sistem." #: views.py:154 #, python-format @@ -170,11 +155,7 @@ msgid "" "to the role and can't be removed from this view. Inherited permissions need " "to be removed from the parent object's ACL or from them role via the Setup " "menu." -msgstr "" -"Permisiunile dezactivate sunt moștenite de la un obiect părinte sau acordate " -"direct rolului și nu pot fi eliminate din această vizualizare. Prerogativele " -"moștenite trebuie să fie eliminate din ACL-ul obiectului părinte sau din " -"rolul acestora prin meniul Setup (Configurare)." +msgstr "Permisiunile dezactivate sunt moștenite de la un obiect părinte sau acordate direct rolului și nu pot fi eliminate din această vizualizare. Prerogativele moștenite trebuie să fie eliminate din ACL-ul obiectului părinte sau din rolul acestora prin meniul Setup (Configurare)." #: workflow_actions.py:26 msgid "Object type" @@ -189,9 +170,9 @@ msgid "Object ID" msgstr "ID obiect" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." -msgstr "" -"Identificatorul numeric al obiectului pentru care va fi modificat accesul." +msgid "" +"Numeric identifier of the object for which the access will be modified." +msgstr "Identificatorul numeric al obiectului pentru care va fi modificat accesul." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -204,9 +185,7 @@ msgstr "Roluri a căror acces va fi modificat." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "" -"Permisiuni de acordare / revocare în / a rolului pentru obiectului selectat " -"mai sus." +msgstr "Permisiuni de acordare / revocare în / a rolului pentru obiectului selectat mai sus." #: workflow_actions.py:60 msgid "Grant access" @@ -218,8 +197,8 @@ msgstr "Revocă acces" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Acordați acces la documente" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Revocați accesul la documente" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index 3363d8664b..b8494e8cc1 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -173,7 +170,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po index 11d710e210..2469b32127 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # kontrabant , 2017 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:24 links.py:44 msgid "ACLs" @@ -92,14 +90,11 @@ msgstr "URL za API, ki kaže na seznam dovoljenj za ta nadzorni seznam dostopa." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"UR API-ja, ki kaže na dovoljenae v zvezi s seznamom za nadzor dostopa, na " -"katerega je priključen. Ta URL je drugačen od kanoničnega URL-ja poteka dela." +msgstr "UR API-ja, ki kaže na dovoljenae v zvezi s seznamom za nadzor dostopa, na katerega je priključen. Ta URL je drugačen od kanoničnega URL-ja poteka dela." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" -"Primarni ključ novega dovoljenja za odobritev na seznamu za nadzor dostopa." +msgstr "Primarni ključ novega dovoljenja za odobritev na seznamu za nadzor dostopa." #: serializers.py:115 serializers.py:191 #, python-format @@ -110,14 +105,11 @@ msgstr "Neobstoječe dovoljenje: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Seznam primarnih ključev dovolilnic, ločenih z vejicami, za dodelitev tega " -"seznama za nadzor dostopa." +msgstr "Seznam primarnih ključev dovolilnic, ločenih z vejicami, za dodelitev tega seznama za nadzor dostopa." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" -"Primarni ključi vloge, na katere se ta kontrolni seznam za dostop poveže." +msgstr "Primarni ključi vloge, na katere se ta kontrolni seznam za dostop poveže." #: views.py:62 #, python-format @@ -178,7 +170,8 @@ msgid "Object ID" msgstr "ID objekta" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "Številčni identifikator predmeta, za katerega bo dostop spremenjen." #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po index ea8c83199b..94cda22a94 100644 --- a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:44 @@ -91,9 +90,7 @@ msgstr "Bu erişim kontrol listesinin izin listesine işaret eden API URL'si." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL'si, bağlı olduğu erişim kontrol listesiyle ilgili olarak bir izne " -"işaret ediyor. Bu URL, kurallı iş akışı URL'sinden farklı." +msgstr "API URL'si, bağlı olduğu erişim kontrol listesiyle ilgili olarak bir izne işaret ediyor. Bu URL, kurallı iş akışı URL'sinden farklı." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -108,9 +105,7 @@ msgstr "Böyle bir izin yok: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "" -"Bu erişim denetim listesine vermek üzere birincil anahtarların virgülle " -"ayrılmış listesi." +msgstr "Bu erişim denetim listesine vermek üzere birincil anahtarların virgülle ayrılmış listesi." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." @@ -175,7 +170,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po index 074e87c072..048e0c732d 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:44 @@ -170,7 +169,8 @@ msgid "Object ID" msgstr "" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po index 8cbcc00216..5e0145b33b 100644 --- a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:44 @@ -91,8 +90,7 @@ msgstr "API URL指向此访问控制列表的权限列表。" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL指向与其附加的访问控制列表相关的权限。此URL与规范工作流URL不同。" +msgstr "API URL指向与其附加的访问控制列表相关的权限。此URL与规范工作流URL不同。" #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." @@ -172,7 +170,8 @@ msgid "Object ID" msgstr "对象ID" #: workflow_actions.py:38 -msgid "Numeric identifier of the object for which the access will be modified." +msgid "" +"Numeric identifier of the object for which the access will be modified." msgstr "要为其修改访问权限的对象的数字标识符。" #: workflow_actions.py:43 workflow_actions.py:158 diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index 3c31191061..4b9addd8af 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:14-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -97,8 +95,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -130,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -140,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -149,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -160,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -172,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -183,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -195,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 00190ad946..f544d25f1e 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:14-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -96,8 +95,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -129,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -139,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -148,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -159,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -171,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -182,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -194,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po index d53706a0b4..4ec5537c34 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:14-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -98,11 +96,9 @@ msgstr "Greška u serveru" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Došlo je do greške. Prijavljeno je administratoru sajta putem e-pošte i " -"trebalo bi da se popravi uskoro. Hvala na strpljenju." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Došlo je do greške. Prijavljeno je administratoru sajta putem e-pošte i trebalo bi da se popravi uskoro. Hvala na strpljenju." #: templates/appearance/about.html:10 msgid "About" @@ -133,9 +129,7 @@ msgstr "Obavljeno pod licensom:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -143,8 +137,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -152,10 +145,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -163,11 +153,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -175,10 +161,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -186,11 +169,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -198,13 +177,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -264,9 +238,7 @@ msgstr "Otkazati" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s - %(end)s od %(total)s) (Strana%(page_number)s od " -"%(total_pages)s)" +msgstr "Total (%(start)s - %(end)s od %(total)s) (Strana%(page_number)s od %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po index 295955a5fc..a9fb2aed0d 100644 --- a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -97,8 +95,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -130,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -140,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -149,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -160,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -172,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -183,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -195,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po index 17f00d86dc..25d8034a9f 100644 --- a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -97,8 +96,8 @@ msgstr "Server fejl" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -130,9 +129,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -140,8 +137,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -149,10 +145,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -160,11 +153,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -172,10 +161,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -183,11 +169,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -195,13 +177,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po index 54721d5647..3ebc25d63d 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Bjoern Kowarsch , 2018 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -76,8 +75,7 @@ msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "" -"Maximale Anzahl der Zeichen, die als Titel einer Ansicht angezeigt werden." +msgstr "Maximale Anzahl der Zeichen, die als Titel einer Ansicht angezeigt werden." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -101,11 +99,9 @@ msgstr "Serverfehler" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren " -"gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." #: templates/appearance/about.html:10 msgid "About" @@ -117,10 +113,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -" %(setting_project_title)s basiert auf %(project_title)s\n" -" " +msgstr "\n %(setting_project_title)s basiert auf %(project_title)s\n " #: templates/appearance/about.html:82 msgid "Version" @@ -139,119 +132,58 @@ msgstr "Veröffentlicht unter der Lizenz:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" -" " -msgstr "" -"\n" -"%(project_title)s ist eine Freie Open-Source Software, die Ihnen mit durch Roberto Rosario und andere " -"Mitwirkende zur Verfügung gestellt wird..\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " +msgstr "\n%(project_title)s ist eine Freie Open-Source Software, die Ihnen mit durch Roberto Rosario und andere Mitwirkende zur Verfügung gestellt wird..\n " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " -msgstr "" -"\n" -"Es bedeutet einen großen Aufwand, %(project_title)s so funktionsreich zu " -"machen, wie es ist. Wir brauchen alle Hilfe, die wir bekommen können!" +msgstr "\nEs bedeutet einen großen Aufwand, %(project_title)s so funktionsreich zu machen, wie es ist. Wir brauchen alle Hilfe, die wir bekommen können!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " -msgstr "" -"\n" -"Wenn Sie %(project_title)s verwenden, erwägen Sie bitte eine Spende %(icon_social_paypal)s " -"" +msgstr "\nWenn Sie %(project_title)s verwenden, erwägen Sie bitte eine Spende %(icon_social_paypal)s " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"Eine umfassende Liste der Neuerungen ist einsehbar in den Release Notes %(icon_documentation)s oder als Kurzversionim Changelog %(icon_documentation)s." +msgstr "\nEine umfassende Liste der Neuerungen ist einsehbar in den Release Notes %(icon_documentation)s oder als Kurzversionim Changelog %(icon_documentation)s." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " -msgstr "" -"\n" -"Bei Fragen schauen Sie zunächst in die Dokumentation %(icon_documentation)s " -"oder die Wiki " -"%(icon_wiki)s." +msgstr "\nBei Fragen schauen Sie zunächst in die Dokumentation %(icon_documentation)s oder die Wiki %(icon_wiki)s." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"Sollten Sie einen Bug gefunden oder eine Idee für eine neue Funktion haben, " -"dann besuchen Sie entweder das Forum %(icon_forum)s oder erstellen Sie ein Ticket in " -"der Quellenverwaltung %(icon_source_code)s. " +msgstr "\nSollten Sie einen Bug gefunden oder eine Idee für eine neue Funktion haben, dann besuchen Sie entweder das Forum %(icon_forum)s oder erstellen Sie ein Ticket in der Quellenverwaltung %(icon_source_code)s. " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" -" " -msgstr "" -"\n" -"Machen Sie dieses Projekt bekannt. Berichten Sie Ihren Freunden und " -"Kollegen, wie angenehm die Arbeit mit %(project_title)s ist!\n" -" Folgen Sie uns auf Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, oder Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " +msgstr "\nMachen Sie dieses Projekt bekannt. Berichten Sie Ihren Freunden und Kollegen, wie angenehm die Arbeit mit %(project_title)s ist!\n Folgen Sie uns auf Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, oder Instagram %(icon_social_instagram)s\n " #: templates/appearance/base.html:32 msgid "Warning" @@ -309,9 +241,7 @@ msgstr "Abbrechen" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von " -"%(total_pages)s)" +msgstr "Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po index 2abe44cf52..84ce347e11 100644 --- a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -96,12 +95,9 @@ msgstr "Σφάλμα διακομηστή" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Παρουσιάστηκε ένα σφάλμα. Έχει αναφερθεί στον διαχειριστή του ιστότοπου μέσω " -"ηλεκτρονικού ταχυδρομείου και θα διευθετηθεί σύντομα. Ευχαριστούμε για την " -"υπομονή σας." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Παρουσιάστηκε ένα σφάλμα. Έχει αναφερθεί στον διαχειριστή του ιστότοπου μέσω ηλεκτρονικού ταχυδρομείου και θα διευθετηθεί σύντομα. Ευχαριστούμε για την υπομονή σας." #: templates/appearance/about.html:10 msgid "About" @@ -132,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -142,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -151,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -162,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -174,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -185,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -197,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -263,9 +237,7 @@ msgstr "Άκυρο" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Σύνολο (%(start)s - %(end)s από %(total)s) (Σελίδα %(page_number)s από " -"%(total_pages)s)" +msgstr "Σύνολο (%(start)s - %(end)s από %(total)s) (Σελίδα %(page_number)s από %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -289,8 +261,7 @@ msgstr "Ξεκινώντας" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Προτού μπορέσετε να χρησιμοποιήσετε πλήρως το Mayan EDMS χρειάζεστε τα εξής:" +msgstr "Προτού μπορέσετε να χρησιμοποιήσετε πλήρως το Mayan EDMS χρειάζεστε τα εξής:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index 2702c2e76d..e97af56b61 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015-2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -73,8 +72,7 @@ msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "" -"Número máximo de caracteres que se mostrarán como el título de la vista." +msgstr "Número máximo de caracteres que se mostrarán como el título de la vista." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -98,11 +96,9 @@ msgstr "Error de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Ha habido un error. Se ha informado a los administradores del sitio vía e-" -"mail y debería corregirse en breve. Gracias por su paciencia." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Ha habido un error. Se ha informado a los administradores del sitio vía e-mail y debería corregirse en breve. Gracias por su paciencia." #: templates/appearance/about.html:10 msgid "About" @@ -114,10 +110,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"                    %(setting_project_title)s se basa en %(project_title)s\n" -"                " +msgstr "\n                    %(setting_project_title)s se basa en %(project_title)s\n                " #: templates/appearance/about.html:82 msgid "Version" @@ -136,125 +129,58 @@ msgstr "Publicado bajo la licencia:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " -msgstr "" -"\n" -"                %(project_title)s es un software gratuito y de código " -"abierto realizado con por Roberto Rosario y colaboradores.\n" -"            " +msgstr "\n                %(project_title)s es un software gratuito y de código abierto realizado con por Roberto Rosario y colaboradores.\n            " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " -msgstr "" -"\n" -"                Se necesita un gran esfuerzo para hacer que " -"%(project_title)s sea tan rico en funcionalidad como lo es. ¡Necesitamos " -"toda la ayuda que podamos conseguir!\n" -"            " +msgstr "\n                Se necesita un gran esfuerzo para hacer que %(project_title)s sea tan rico en funcionalidad como lo es. ¡Necesitamos toda la ayuda que podamos conseguir!\n            " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " -msgstr "" -"\n" -"                Si usa %(project_title)s por favor considerar hacer una donación " -"%(icon_social_paypal)s\n" -"            " +msgstr "\n                Si usa %(project_title)s por favor considerar hacer una donación %(icon_social_paypal)s\n            " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"                La lista completa de cambios está disponible a través de Notas de la versión %(icon_documentation)s o la versión corta Changelog %(icon_documentation)s .\n" -"            " +msgstr "\n                La lista completa de cambios está disponible a través de Notas de la versión %(icon_documentation)s o la versión corta Changelog %(icon_documentation)s .\n            " #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " -msgstr "" -"\n" -"                Para preguntas, consulte la Documentación %(icon_documentation)s o " -" el Wiki " -"%(icon_wiki)s .\n" -"            " +msgstr "\n                Para preguntas, consulte la Documentación %(icon_documentation)s o el Wiki %(icon_wiki)s .\n            " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"                Si encontró un error o tiene una idea característica, visite " -"el Forum " -"%(icon_forum)s o abra un ticket en el Repositorio de código fuente " -"%(icon_source_code)s \n" -"            " +msgstr "\n                Si encontró un error o tiene una idea característica, visite el Forum %(icon_forum)s o abra un ticket en el Repositorio de código fuente %(icon_source_code)s \n            " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "" -"\n" -"                Riega la voz. ¡Habla con tus amigos y colegas sobre lo " -"increíble que es %(project_title)s!\n" -"                Síguenos en Twitter %(icon_social_twitter)s , Facebook " -"%(icon_social_facebook)s o Instagram %(icon_social_instagram)s \n" -"            " +msgstr "\n                Riega la voz. ¡Habla con tus amigos y colegas sobre lo increíble que es %(project_title)s!\n                Síguenos en Twitter %(icon_social_twitter)s , Facebook %(icon_social_facebook)s o Instagram %(icon_social_instagram)s \n            " #: templates/appearance/base.html:32 msgid "Warning" @@ -312,9 +238,7 @@ msgstr "Cancelar" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " -"%(total_pages)s)" +msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index ffe7071a9d..2e43200f63 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -97,11 +96,9 @@ msgstr "خطای سرور" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"یک خطا وجود دارد از طریق پست الکترونیکی به مدیران سایت گزارش شده است و باید " -"به زودی تنظیم شود. از صبر و شکیبایی شما متشکریم" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "یک خطا وجود دارد از طریق پست الکترونیکی به مدیران سایت گزارش شده است و باید به زودی تنظیم شود. از صبر و شکیبایی شما متشکریم" #: templates/appearance/about.html:10 msgid "About" @@ -132,9 +129,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -142,8 +137,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -151,10 +145,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -162,11 +153,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -174,10 +161,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -185,11 +169,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -197,13 +177,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -263,9 +238,7 @@ msgstr "لغو" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"مجموع (%(start)s - %(end)s از %(total)s) (صفحه %(page_number)s از " -"%(total_pages)s)" +msgstr "مجموع (%(start)s - %(end)s از %(total)s) (صفحه %(page_number)s از %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -289,9 +262,7 @@ msgstr "شروع کردن" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"قبل از اینکه بتوانید به طور کامل از EDMS مایان استفاده کنید، به موارد زیر " -"نیاز دارید:" +msgstr "قبل از اینکه بتوانید به طور کامل از EDMS مایان استفاده کنید، به موارد زیر نیاز دارید:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index c2f733d506..27b7bc130b 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Escudero , 2017 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -101,12 +100,9 @@ msgstr "Erreur du serveur" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Une erreur vient de se produire. Elle a été signalée aux administrateurs du " -"site par courriel et devrait être résolue rapidement. Merci de votre " -"patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Une erreur vient de se produire. Elle a été signalée aux administrateurs du site par courriel et devrait être résolue rapidement. Merci de votre patience." #: templates/appearance/about.html:10 msgid "About" @@ -118,11 +114,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -" %(setting_project_title)s est basé sur " -"%(project_title)s\n" -" " +msgstr "\n %(setting_project_title)s est basé sur %(project_title)s\n " #: templates/appearance/about.html:82 msgid "Version" @@ -141,126 +133,58 @@ msgstr "Publié sous la licence :" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" -" " -msgstr "" -"\n" -" %(project_title)s est un logiciel libre et gratuit conçu " -"pour vous par Roberto Rosario et les contributeurs.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " +msgstr "\n %(project_title)s est un logiciel libre et gratuit conçu pour vous par Roberto Rosario et les contributeurs.\n " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" -" " -msgstr "" -"\n" -" Beaucoup d'efforts ont été nécessaires pour faire" -"%(project_title)s aussi complet en terme de fonctionnalités. Nous avons " -"besoin de toute l'aide que nous pouvons obtenir!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " +msgstr "\n Beaucoup d'efforts ont été nécessaires pour faire%(project_title)s aussi complet en terme de fonctionnalités. Nous avons besoin de toute l'aide que nous pouvons obtenir!\n " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" -" " -msgstr "" -"\n" -" Si vous utilisez %(project_title)s s'il vous plaît considérez faire un don " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " +msgstr "\n Si vous utilisez %(project_title)s s'il vous plaît considérez faire un don %(icon_social_paypal)s\n " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" -" " -msgstr "" -"\n" -" La liste complète des changements est disponible dans les notes de publication %(icon_documentation)s ou en version courte dans " -"le journal des modifications %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " +msgstr "\n La liste complète des changements est disponible dans les notes de publication %(icon_documentation)s ou en version courte dans le journal des modifications %(icon_documentation)s.\n " #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" -" " -msgstr "" -"\n" -" Pour trouver des réponses à vos questions consultez la documentation " -"%(icon_documentation)s ou le wiki %(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " +msgstr "\n Pour trouver des réponses à vos questions consultez la documentation %(icon_documentation)s ou le wiki %(icon_wiki)s.\n " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" -" " -msgstr "" -"\n" -" Si vous avez trouvé un bogue ou une idée pour une nouvelle " -"fonctionnalité, visitez le forum %(icon_forum)s ou soumettez un nouveau billet " -"dans le dépôt de code source %(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " +msgstr "\n Si vous avez trouvé un bogue ou une idée pour une nouvelle fonctionnalité, visitez le forum %(icon_forum)s ou soumettez un nouveau billet dans le dépôt de code source %(icon_source_code)s.\n " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" -" " -msgstr "" -"\n" -" Faites passer le mot. Parlez à vos amis et vos collègues de " -"comment %(project_title)s est génial!\n" -" Suivez-nous sur Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s ou Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " +msgstr "\n Faites passer le mot. Parlez à vos amis et vos collègues de comment %(project_title)s est génial!\n Suivez-nous sur Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s ou Instagram %(icon_social_instagram)s\n " #: templates/appearance/base.html:32 msgid "Warning" @@ -318,9 +242,7 @@ msgstr "Annuler" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s - %(end)s sur %(total)s) (Page %(page_number)s sur " -"%(total_pages)s)" +msgstr "Total (%(start)s - %(end)s sur %(total)s) (Page %(page_number)s sur %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -344,9 +266,7 @@ msgstr "Démarrage" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont " -"nécessaires :" +msgstr "Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont nécessaires :" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index 253c3f1b68..a75c46e5bd 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -97,8 +96,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -130,9 +129,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -140,8 +137,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -149,10 +145,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -160,11 +153,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -172,10 +161,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -183,11 +169,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -195,13 +177,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index d298064a25..fbd6543a5d 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:12 settings.py:9 @@ -96,8 +95,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -129,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -139,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -148,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -159,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -171,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -182,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -194,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index c63f9e369b..ebb8335248 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Andrea Evangelisti , 2018 # Daniele Bortoluzzi , 2019 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -99,11 +98,9 @@ msgstr "Errore del server" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"C'è stato un errore. Questo è stato riportato all'amministratore del sito " -"via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "C'è stato un errore. Questo è stato riportato all'amministratore del sito via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." #: templates/appearance/about.html:10 msgid "About" @@ -115,9 +112,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"%(setting_project_title)s è basato su %(project_title)s" +msgstr "\n%(setting_project_title)s è basato su %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -136,114 +131,58 @@ msgstr "Rilasciato sotto la licenza:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " -msgstr "" -"\n" -"%(project_title)s è un software libero e open-source fatto con da Roberto " -"Rosario e altri collaboratori." +msgstr "\n%(project_title)s è un software libero e open-source fatto con da Roberto Rosario e altri collaboratori." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " -msgstr "" -"\n" -"Serve un grande sforzo per rendere %(project_title)s così ricco di " -"funzionalità. Abbiamo bisogno di tutto l'aiuto possibie!" +msgstr "\nServe un grande sforzo per rendere %(project_title)s così ricco di funzionalità. Abbiamo bisogno di tutto l'aiuto possibie!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " -msgstr "" -"\n" -"Se usi %(project_title)s puoi pensare di fare una donazione %(icon_social_paypal)s" +msgstr "\nSe usi %(project_title)s puoi pensare di fare una donazione %(icon_social_paypal)s" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"La lista completa dei cambiamenti è disponibile nelle Note di rilascio " -"%(icon_documentation)s o in versione più breve nel Changelog %(icon_documentation)s." +msgstr "\nLa lista completa dei cambiamenti è disponibile nelle Note di rilascio %(icon_documentation)s o in versione più breve nel Changelog %(icon_documentation)s." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " -msgstr "" -"\n" -"Per dubbi o domande guarda la documentazione %(icon_documentation)s o il Wiki %(icon_wiki)s." +msgstr "\nPer dubbi o domande guarda la documentazione %(icon_documentation)s o il Wiki %(icon_wiki)s." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"Se trovi un bug o hai un'idea per una nuova funzionalità, visita il Forum %(icon_forum)s o apri un ticket nel repository del codice %(icon_source_code)s." +msgstr "\nSe trovi un bug o hai un'idea per una nuova funzionalità, visita il Forum %(icon_forum)s o apri un ticket nel repository del codice %(icon_source_code)s." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "" -"\n" -"Diffondi il verbo. Dillo ai tuoi amici e colleghi quanto è bello " -"%(project_title)s!\n" -"Seguici su Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s o Instagram %(icon_social_instagram)s" +msgstr "\nDiffondi il verbo. Dillo ai tuoi amici e colleghi quanto è bello %(project_title)s!\nSeguici su Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s o Instagram %(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -301,9 +240,7 @@ msgstr "Annullare" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di " -"%(total_pages)s)" +msgstr "Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo index b2ae0646b8524dfd7117fbe6d1d37b13ec83f2f1..46be54c44630f07afc5fa8fc7f8373b788698cea 100644 GIT binary patch delta 1306 zcmYk*OGs2v9LMp$&zv#eX*pV6dzfaLnrWzH5DW%NEzB0tV-Sl8A22ht5fUjvD=?6x zC>KEwi4tQ%BBGL91!0S{MG>?prHxRFAPV~a^a>v4+|RjZ&hvlH{a5#*zVAzB{B9|42nmHmk?f9J9y#F@}4wjksyTq1@$A52F?| ziVEpH^y5qS{{+II$fe;{^r05mhzHP*THs~WIKw{TuZmk#=t zQD^rXHBmC>(S$jug`Pz9Ye$V2LPh30>T(aE?#v_9ypwsvpUv7UDm3vN?!@nIgDiTD z@Scy_Nfg!YIjY}VJc3_Q6V+~9Zr6m`;UVOD*-_L2J5b{XQR9s`6x4AP)o>h%{L;;@ z#x28xaRq(llsGIaCF_c5?;56pTt+S;YriFAElVHs>a=aui5l$Lc^}(URqIq%)m7A#R*<~SfpDa(H5BL$chV|U z=d?`shk{|JwIg_Ly1zT@G;{@cFOTp}qy1;P0>RGm_MWbN(S`Iy5B-7TTso473VbL^}!NYJ4DnTFTBL6z5b=sjSascWw_dwl|^H2#~g6z?*LB)IMrT)7yrW}V) z@B!_wP&-JliX5*%O}qnp;d7`!%TRvqEt#E_LavilLM2!awSFU%-*KpU{ZM{UO`zfi ztR1brH<445Y{uGvHln&(DsB_nifXwXsP@}{Dy<;;zvvLMqJn3o-Z6Ad11M#*T~42_ zq*C+gQA)Ti>Ai1*epLBxM|B0WqIV+EUiDbHNa=&pd)k9abdVA~+8R`KkWgaVnYJ>A z)FQjkhooNThTWC5>XhB R#D=1&>arzws=_, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-27 12:06+0000\n" +"Last-Translator: Māris Teivāns \n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -26,7 +24,7 @@ msgstr "Izskats" #: dependencies.py:10 msgid "Lato font" -msgstr "" +msgstr "Lato fonts" #: dependencies.py:14 msgid "Bootstrap" @@ -98,11 +96,9 @@ msgstr "Servera kļūda" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Radusies kļūda. Par to ir ziņots vietnes administratoriem, izmantojot e-" -"pastu, un drīzumā tai būtu jābūt atrisinātai. Paldies par pacietību." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Radusies kļūda. Par to ir ziņots vietnes administratoriem, izmantojot e-pastu, un drīzumā tai būtu jābūt atrisinātai. Paldies par pacietību." #: templates/appearance/about.html:10 msgid "About" @@ -114,9 +110,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"%(setting_project_title)s ir balstīts uz %(project_title)s" +msgstr "\n%(setting_project_title)s ir balstīts uz %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -135,114 +129,58 @@ msgstr "Izdots saskaņā ar licenci:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " -msgstr "" -"\n" -"%(project_title)s ir bezmaksas un atvērtā pirmkoda programmatūra, kas jums " -"tiek piedāvāta ar Roberto Rosario un ziedotājiem." +msgstr "\n%(project_title)s ir bezmaksas un atvērtā pirmkoda programmatūra, kas jums tiek piedāvāta ar Roberto Rosario un ziedotājiem." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " -msgstr "" -"\n" -"Tas prasa lielas pūles, lai padarītu %(project_title)s tikpat iespēju " -"bagātu, cik tas ir. Mums ir vajadzīga visa palīdzība, ko mēs varam iegūt!" +msgstr "\nTas prasa lielas pūles, lai padarītu %(project_title)s tikpat iespēju bagātu, cik tas ir. Mums ir vajadzīga visa palīdzība, ko mēs varam iegūt!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " -msgstr "" -"\n" -"Ja izmantojat %(project_title)s, lūdzu, apsveriet iespēju veikt ziedojumu " -"%(icon_social_paypal)s" +msgstr "\nJa izmantojat %(project_title)s, lūdzu, apsveriet iespēju veikt ziedojumu %(icon_social_paypal)s" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"Pilns izmaiņu saraksts ir pieejams, skatot Release notes " -"%(icon_documentation)s vai īso versiju Changelog %(icon_documentation)s ." +msgstr "\nPilns izmaiņu saraksts ir pieejams, skatot Release notes %(icon_documentation)s vai īso versiju Changelog %(icon_documentation)s ." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " -msgstr "" -"\n" -"Jautājumu gadījumā pārbaudiet dokumentāciju %(icon_documentation)s vai Wiki %(icon_wiki)s ." +msgstr "\nJautājumu gadījumā pārbaudiet dokumentāciju %(icon_documentation)s vai Wiki %(icon_wiki)s ." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"Ja atradāt kļūdu vai ir kāda funkcionalitātes ideja, apmeklējiet forumu %(icon_forum)s vai atveriet biļeti pirmkoda repozitorijā %(icon_source_code)s ." +msgstr "\nJa atradāt kļūdu vai ir kāda funkcionalitātes ideja, apmeklējiet forumu %(icon_forum)s vai atveriet biļeti pirmkoda repozitorijā %(icon_source_code)s ." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "" -"\n" -"Izplatiet vārdu. Runājiet ar saviem draugiem un kolēģiem par to, cik " -"lielisks %(project_title)s ir! Sekojiet mums Twitter %(icon_social_twitter)s , Facebook " -"%(icon_social_facebook)s vai Instagram %(icon_social_instagram)s" +msgstr "\nIzplatiet vārdu. Runājiet ar saviem draugiem un kolēģiem par to, cik lielisks %(project_title)s ir! Sekojiet mums Twitter %(icon_social_twitter)s , Facebook %(icon_social_facebook)s vai Instagram %(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -300,9 +238,7 @@ msgstr "Atcelt" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Kopā (%(start)s - %(end)s no %(total)s) (lappuse %(page_number)s no " -"%(total_pages)s)" +msgstr "Kopā (%(start)s - %(end)s no %(total)s) (lappuse %(page_number)s no %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po index a07a198e47..96c1442715 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Johan Braeken, 2017 # Justin Albstbstmeijer , 2016 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -99,12 +98,9 @@ msgstr "Server fout" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de " -"beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor " -"uw geduld." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor uw geduld." #: templates/appearance/about.html:10 msgid "About" @@ -135,9 +131,7 @@ msgstr "Uitgegeven onder de licentie:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -145,8 +139,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -154,10 +147,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -165,11 +155,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -177,10 +163,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -188,11 +171,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -200,13 +179,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -266,9 +240,7 @@ msgstr "Onderbreek" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van " -"%(total_pages)s)" +msgstr "Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -292,9 +264,7 @@ msgstr "Beginnen" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende " -"nodig:" +msgstr "Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende nodig:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index 0822f24e1c..2e1f9ab26f 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016,2018 # Wojciech Warczakowski , 2017 @@ -13,15 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -101,11 +98,9 @@ msgstr "Błąd serwera" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i " -"wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." #: templates/appearance/about.html:10 msgid "About" @@ -136,9 +131,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -146,8 +139,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -155,10 +147,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -166,11 +155,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -178,10 +163,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -189,11 +171,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -201,13 +179,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -267,9 +240,7 @@ msgstr "Anuluj" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z " -"%(total_pages)s)" +msgstr "Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index 624f8d8b46..63782262bc 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -96,8 +95,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -129,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -139,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -148,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -159,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -171,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -182,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -194,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po index abd0b9f856..8680fe8824 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -75,8 +74,7 @@ msgstr "" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "" -"Número máximo de caracteres que serão mostrados como o título da vista." +msgstr "Número máximo de caracteres que serão mostrados como o título da vista." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -100,11 +98,9 @@ msgstr "Erro de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Houve um erro. Os administradores da página foram informados por e-mail e " -"deverão corrigir em breve. Obrigado pela paciência." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Houve um erro. Os administradores da página foram informados por e-mail e deverão corrigir em breve. Obrigado pela paciência." #: templates/appearance/about.html:10 msgid "About" @@ -116,9 +112,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"%(setting_project_title)s é baseado em %(project_title)s" +msgstr "\n%(setting_project_title)s é baseado em %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -137,117 +131,58 @@ msgstr "Lançado sob a licença:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " -msgstr "" -"\n" -"%(project_title)s é um software gratuito e de código aberto feito para você " -"com por Roberto Rosario e seus colaboradores." +msgstr "\n%(project_title)s é um software gratuito e de código aberto feito para você com por Roberto Rosario e seus colaboradores." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " -msgstr "" -"\n" -"Muito esforço é necessário para tornar %(project_title)s tão rico em " -"recursos. Precisamos de toda a ajuda que pudermos obter!" +msgstr "\nMuito esforço é necessário para tornar %(project_title)s tão rico em recursos. Precisamos de toda a ajuda que pudermos obter!" #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " -msgstr "" -"\n" -"Se você utiliza %(project_title)s, por favor, considere realizar uma doação " -"%(icon_social_paypal)s" +msgstr "\nSe você utiliza %(project_title)s, por favor, considere realizar uma doação %(icon_social_paypal)s" #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"A lista de mudanças está disponível de maneira detalhada nas Notas de Lançamento %(icon_documentation)s ou, em versão mais curta, " -"no Registro de Mudanças%(icon_documentation)s." +msgstr "\nA lista de mudanças está disponível de maneira detalhada nas Notas de Lançamento %(icon_documentation)s ou, em versão mais curta, no Registro de Mudanças%(icon_documentation)s." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " -msgstr "" -"\n" -"Caso tenha dúvidas consulte a Documentação%(icon_documentation)s ou a Wiki%(icon_wiki)s." +msgstr "\nCaso tenha dúvidas consulte a Documentação%(icon_documentation)s ou a Wiki%(icon_wiki)s." #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"Se você encontrar algum erro ou tiver ideias para novos recursos, visite o " -"Fórum" -"%(icon_forum)s ou abra um chamado no Repositório de Código Fonte" -"%(icon_source_code)s." +msgstr "\nSe você encontrar algum erro ou tiver ideias para novos recursos, visite o Fórum%(icon_forum)s ou abra um chamado no Repositório de Código Fonte%(icon_source_code)s." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "" -"\n" -"\n" -"Espalhe a palavra! Fale com seus amigos e colegas sobre como o " -"%(project_title)s é incrível!\n" -"Siga-nos no Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, ou Instagram%(icon_social_instagram)s" +msgstr "\n\nEspalhe a palavra! Fale com seus amigos e colegas sobre como o %(project_title)s é incrível!\nSiga-nos no Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, ou Instagram%(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -305,9 +240,7 @@ msgstr "Cancelar" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " -"%(total_pages)s)" +msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po index 2bb4c85ed7..75c0d6f315 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 # Stefaniu Criste , 2016 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -75,8 +73,7 @@ msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "" -"Numărul maxim de caractere care vor fi afișate ca titlu de vizualizare." +msgstr "Numărul maxim de caractere care vor fi afișate ca titlu de vizualizare." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -100,11 +97,9 @@ msgstr "Eroare la server" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"A apărut o eroare. A fost raportată administratorilor site-ului prin e-mail " -"și va fi reparatî în scurt timp. Mulțumim pentru răbdarea dvs." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "A apărut o eroare. A fost raportată administratorilor site-ului prin e-mail și va fi reparatî în scurt timp. Mulțumim pentru răbdarea dvs." #: templates/appearance/about.html:10 msgid "About" @@ -116,9 +111,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"%(setting_project_title)s se bazează pe %(project_title)s" +msgstr "\n%(setting_project_title)s se bazează pe %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -137,120 +130,58 @@ msgstr "Lansat sub licența:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " -msgstr "" -"\n" -"%(project_title)s este un software gratuit și cu sursă deschisă care ți-a " -"fost prezentat cu de Roberto Rosario și colaboratorii." +msgstr "\n%(project_title)s este un software gratuit și cu sursă deschisă care ți-a fost prezentat cu de Roberto Rosario și colaboratorii." #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" -" " -msgstr "" -"\n" -" Este necesar un efort deosebit pentru a face " -"%(project_title)s atât de bun. Avem nevoie de cât mai mult ajutor!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " +msgstr "\n Este necesar un efort deosebit pentru a face %(project_title)s atât de bun. Avem nevoie de cât mai mult ajutor!\n " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" -" " -msgstr "" -"\n" -" Dacă utilizați %(project_title)s vă rugăm să aveți în vedere efectuarea unei " -"donații %(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " +msgstr "\n Dacă utilizați %(project_title)s vă rugăm să aveți în vedere efectuarea unei donații %(icon_social_paypal)s\n " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"Lista completă a modificărilor este disponibilă prin notele Note " -"de lansare%(icon_documentation)s sau versiunea scurtă Istoricul modificărilor %(icon_documentation)s ." +msgstr "\nLista completă a modificărilor este disponibilă prin notele Note de lansare%(icon_documentation)s sau versiunea scurtă Istoricul modificărilor %(icon_documentation)s ." #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" -" " -msgstr "" -"\n" -" Pentru întrebări verificații Documentația%(icon_documentation)s sau " -"Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " +msgstr "\n Pentru întrebări verificații Documentația%(icon_documentation)s sau Wiki %(icon_wiki)s.\n " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"Dacă ați găsit un bug sau aveți o idee de noi caracteristici, vizitați Forumul " -"%(icon_forum)s sau deschideți un bilet în depozitul de coduri sursă" -"%(icon_source_code)s." +msgstr "\nDacă ați găsit un bug sau aveți o idee de noi caracteristici, vizitați Forumul %(icon_forum)s sau deschideți un bilet în depozitul de coduri sursă%(icon_source_code)s." #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "" -"\n" -"Imprastie vestea. Discutați cu prietenii și colegii despre cât de minunat " -"este %(project_title)s!\n" -"Urmăriți-ne pe Twitter %(icon_social_twitter)s,Facebook %(icon_social_facebook)s, sau Instagram %(icon_social_instagram)s" +msgstr "\nImprastie vestea. Discutați cu prietenii și colegii despre cât de minunat este %(project_title)s!\nUrmăriți-ne pe Twitter %(icon_social_twitter)s,Facebook %(icon_social_facebook)s, sau Instagram %(icon_social_instagram)s" #: templates/appearance/base.html:32 msgid "Warning" @@ -308,9 +239,7 @@ msgstr "Anulează" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s- %(end)s din %(total)s) ( Pagina %(page_number)s din " -"%(total_pages)s )" +msgstr "Total (%(start)s- %(end)s din %(total)s) ( Pagina %(page_number)s din %(total_pages)s )" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -334,9 +263,7 @@ msgstr "Să începem" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți " -"următoarele:" +msgstr "Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți următoarele:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index 5f872de1e5..5160bb15a6 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -100,11 +97,9 @@ msgstr "Ошибка сервера" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной " -"почте, и она будет исправлена. Спасибо за терпение." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной почте, и она будет исправлена. Спасибо за терпение." #: templates/appearance/about.html:10 msgid "About" @@ -116,9 +111,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"%(setting_project_title)s основан(ы) на %(project_title)s" +msgstr "\n%(setting_project_title)s основан(ы) на %(project_title)s" #: templates/appearance/about.html:82 msgid "Version" @@ -137,9 +130,7 @@ msgstr "Выпущено под лицензией:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -147,8 +138,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -156,10 +146,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -167,11 +154,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -179,10 +162,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -190,11 +170,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -202,13 +178,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -268,9 +239,7 @@ msgstr "Отменить" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из " -"%(total_pages)s)" +msgstr "Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -294,9 +263,7 @@ msgstr "Приступая к работе" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan " -"EDMS:" +msgstr "Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan EDMS:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" @@ -316,8 +283,7 @@ msgstr "Ошибка соединения с сервером" #: templates/appearance/root.html:67 msgid "Check you network connection and try again in a few moments." -msgstr "" -"Проверьте ваше соединение с сетью и попробуйте еще раз через некоторое время." +msgstr "Проверьте ваше соединение с сетью и попробуйте еще раз через некоторое время." #: templatetags/appearance_tags.py:17 msgid "None" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po index a2be324616..708cfdef45 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # kontrabant , 2017 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -98,11 +96,9 @@ msgstr "Napaka strežnika" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Prišlo je do napake. Sporočena je administratorjem spletnega mesta po " -"elektronski pošti in naj bi bila kmalu odpravljena. Hvala za potrpljenje." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Prišlo je do napake. Sporočena je administratorjem spletnega mesta po elektronski pošti in naj bi bila kmalu odpravljena. Hvala za potrpljenje." #: templates/appearance/about.html:10 msgid "About" @@ -133,9 +129,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -143,8 +137,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -152,10 +145,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -163,11 +153,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -175,10 +161,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -186,11 +169,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -198,13 +177,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -264,9 +238,7 @@ msgstr "Prekliči" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Skupaj (%(start)s - %(end)s od %(total)s) (Stran %(page_number)s od " -"%(total_pages)s)" +msgstr "Skupaj (%(start)s - %(end)s od %(total)s) (Stran %(page_number)s od %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po index 1e28470c00..a04aed99e8 100644 --- a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -98,11 +97,9 @@ msgstr "Server hatası" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Bir hata oldu. Site yöneticilerine e-posta yoluyla bildirildi ve kısa süre " -"içinde düzeltilmesi gerekiyor. Sabrınız için teşekkürler." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Bir hata oldu. Site yöneticilerine e-posta yoluyla bildirildi ve kısa süre içinde düzeltilmesi gerekiyor. Sabrınız için teşekkürler." #: templates/appearance/about.html:10 msgid "About" @@ -133,9 +130,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -143,8 +138,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -152,10 +146,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -163,11 +154,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -175,10 +162,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -186,11 +170,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -198,13 +178,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" @@ -264,9 +239,7 @@ msgstr "İptal" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Toplam (%(start)s - %(end)s / %(total)s) (Sayfa %(page_number)s / " -"%(total_pages)s)" +msgstr "Toplam (%(start)s - %(end)s / %(total)s) (Sayfa %(page_number)s / %(total_pages)s)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 @@ -290,8 +263,7 @@ msgstr "Başlarken" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Maya EDMS'i tam olarak kullanabilmeniz için aşağıdakilere ihtiyacınız vardır:" +msgstr "Maya EDMS'i tam olarak kullanabilmeniz için aşağıdakilere ihtiyacınız vardır:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po index dcfa84d1af..41ccc0a408 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:12 settings.py:9 @@ -96,8 +95,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/appearance/about.html:10 @@ -129,9 +128,7 @@ msgstr "" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " msgstr "" @@ -139,8 +136,7 @@ msgstr "" #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " msgstr "" @@ -148,10 +144,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " msgstr "" @@ -159,11 +152,7 @@ msgstr "" #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " msgstr "" @@ -171,10 +160,7 @@ msgstr "" #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " msgstr "" @@ -182,11 +168,7 @@ msgstr "" #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " msgstr "" @@ -194,13 +176,8 @@ msgstr "" #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " msgstr "" diff --git a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po index 9a3041a3e0..5e29dc5a22 100644 --- a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:12 settings.py:9 @@ -97,11 +96,9 @@ msgstr "服务器错误" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"出现了错误。它已通过电子邮件报告给网站管理员,应该很快就会修复。谢谢你的耐" -"心。" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "出现了错误。它已通过电子邮件报告给网站管理员,应该很快就会修复。谢谢你的耐心。" #: templates/appearance/about.html:10 msgid "About" @@ -113,10 +110,7 @@ msgid "" "\n" " %(setting_project_title)s is based on %(project_title)s\n" " " -msgstr "" -"\n" -"                    %(setting_project_title)s基于%(project_title)s\n" -"                " +msgstr "\n                    %(setting_project_title)s基于%(project_title)s\n                " #: templates/appearance/about.html:82 msgid "Version" @@ -135,120 +129,58 @@ msgstr "根据许可证发布:" #, python-format msgid "" "\n" -" %(project_title)s is a free and open-source software brought " -"to you with by Roberto Rosario and contributors.\n" +" %(project_title)s is a free and open-source software brought to you with by Roberto Rosario and contributors.\n" " " -msgstr "" -"\n" -"                %(project_title)s是一个免费的开源软件,由Roberto Rosario和贡" -"献者提供。\n" -"            " +msgstr "\n                %(project_title)s是一个免费的开源软件,由Roberto Rosario和贡献者提供。\n            " #: templates/appearance/about.html:109 #, python-format msgid "" "\n" -" It takes great effort to make %(project_title)s as feature-" -"rich as it is. We need all the help we can get!\n" +" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " " -msgstr "" -"\n" -"                要使%(project_title)s功能丰富,需要付出很大的努力。我们需要得" -"到更多的帮助!\n" -"            " +msgstr "\n                要使%(project_title)s功能丰富,需要付出很大的努力。我们需要得到更多的帮助!\n            " #: templates/appearance/about.html:115 #, python-format msgid "" "\n" -" If you use %(project_title)s please consider making a donation " -"%(icon_social_paypal)s\n" +" If you use %(project_title)s please consider making a donation %(icon_social_paypal)s\n" " " -msgstr "" -"\n" -"                如果您使用%(project_title)s,请考虑捐款%(icon_social_paypal)s \n" -"            " +msgstr "\n                如果您使用%(project_title)s,请考虑捐款%(icon_social_paypal)s \n            " #: templates/appearance/about.html:121 #, python-format msgid "" "\n" -" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" +" The complete list of changes is available via the Release notes %(icon_documentation)s or the short version Changelog %(icon_documentation)s.\n" " " -msgstr "" -"\n" -"                完整的更改列表可见于发行说明%(icon_documentation)s " -"或简短版本更改日志%(icon_documentation)s 。\n" -"            " +msgstr "\n                完整的更改列表可见于发行说明%(icon_documentation)s 或简短版本更改日志%(icon_documentation)s 。\n            " #: templates/appearance/about.html:127 #, python-format msgid "" "\n" -" For questions check the Documentation %(icon_documentation)s or " -"the Wiki " -"%(icon_wiki)s.\n" +" For questions check the Documentation %(icon_documentation)s or the Wiki %(icon_wiki)s.\n" " " -msgstr "" -"\n" -"                有关问题,请查看文档%(icon_documentation)s Wiki %(icon_wiki)s 。\n" -"            " +msgstr "\n                有关问题,请查看文档%(icon_documentation)s Wiki %(icon_wiki)s 。\n            " #: templates/appearance/about.html:133 #, python-format msgid "" "\n" -" If you found a bug or have a feature idea, visit the Forum " -"%(icon_forum)s or open a ticket in the Source code repository " -"%(icon_source_code)s.\n" +" If you found a bug or have a feature idea, visit the Forum %(icon_forum)s or open a ticket in the Source code repository %(icon_source_code)s.\n" " " -msgstr "" -"\n" -"                如果您发现了bug或有功能创意,请访问论坛%(icon_forum)s 或在源代码仓" -"库%(icon_source_code)s 提交问题。\n" -"            " +msgstr "\n                如果您发现了bug或有功能创意,请访问论坛%(icon_forum)s 或在源代码仓库%(icon_source_code)s 提交问题。\n            " #: templates/appearance/about.html:138 #, python-format msgid "" "\n" -" Spread the word. Talk to your friends and colleagues about " -"how awesome %(project_title)s is!\n" -" Follow us on Twitter %(icon_social_twitter)s, Facebook " -"%(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" +" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" +" Follow us on Twitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, or Instagram %(icon_social_instagram)s\n" " " -msgstr "" -"\n" -"                宣传这个软件。和你的朋友和同事谈谈%(project_title)s真棒!\n" -"                在 Twitter %(icon_social_twitter)s Facebook " -"%(icon_social_facebook)s ,或 Instagram %(icon_social_instagram)s 关注我" -"们\n" -"            " +msgstr "\n                宣传这个软件。和你的朋友和同事谈谈%(project_title)s真棒!\n                在 Twitter %(icon_social_twitter)s Facebook %(icon_social_facebook)s ,或 Instagram %(icon_social_instagram)s 关注我们\n            " #: templates/appearance/base.html:32 msgid "Warning" @@ -306,9 +238,7 @@ msgstr "取消" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"总计(%(start)s - %(end)s,%(total)s)(第%(page_number)s页," -"总%(total_pages)s页)" +msgstr "总计(%(start)s - %(end)s,%(total)s)(第%(page_number)s页,总%(total_pages)s页)" #: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:22 diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index 83032b0617..d9b1a3992f 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -65,8 +63,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -149,9 +147,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user and staff user password reseting is not allowed, use the admin " -"interface for these cases." +msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index bc6490826b..ac6f1f7d84 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -64,8 +63,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -144,9 +143,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Промяна на парола на потребители от супер потребител и служител не е " -"разрешено. Използвайте администраторския модул за тези случаи." +msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po index 6cf9acd95f..df1b019836 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -40,9 +38,7 @@ msgstr "Zapamti" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Molimo unesite ispravan e-mail i lozinku. Imajte na umu da je polje za " -"lozinku osetljivo na slovo." +msgstr "Molimo unesite ispravan e-mail i lozinku. Imajte na umu da je polje za lozinku osetljivo na slovo." #: forms.py:27 msgid "This account is inactive." @@ -64,14 +60,12 @@ msgstr "Postavite lozinku" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Kontroliše mehanizam koji se koristi za autentifikaciju korisnika. Opcije " -"su: korisničko ime, e-pošta" +msgstr "Kontroliše mehanizam koji se koristi za autentifikaciju korisnika. Opcije su: korisničko ime, e-pošta" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -98,8 +92,7 @@ msgstr "Resetovanje lozinke" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Resetovanje lozinke završeno! Kliknite na link ispod kako biste se prijavili." +msgstr "Resetovanje lozinke završeno! Kliknite na link ispod kako biste se prijavili." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -152,9 +145,7 @@ msgstr "Izmjenite lozinku korisnika: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user i staff user reset lozinke nije dozvoljen, koristite " -"administratorski interface za takve slučajeve" +msgstr "Super user i staff user reset lozinke nije dozvoljen, koristite administratorski interface za takve slučajeve" #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po index e6be9cd14d..226f242e3d 100644 --- a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -65,8 +63,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po index c3433f84c0..c44ead59b9 100644 --- a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -65,8 +64,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po index 36fd0bf6c4..90d40b0ab8 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2019 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -43,9 +42,7 @@ msgstr "Angemeldet bleiben" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass " -"das Passwortfeld Groß- und Kleinschreibung unterscheidet." +msgstr "Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass das Passwortfeld Groß- und Kleinschreibung unterscheidet." #: forms.py:27 msgid "This account is inactive." @@ -67,14 +64,12 @@ msgstr "Passwort festlegen" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-" -"Mail-Adresse" +msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-Mail-Adresse" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -101,8 +96,7 @@ msgstr "Passwort zurücksetzen" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Passwortrücksetzung erfolgreich! Klicken Sie auf den Link um sich anzumelden." +msgstr "Passwortrücksetzung erfolgreich! Klicken Sie auf den Link um sich anzumelden." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -154,9 +148,7 @@ msgstr "Passwort ändern für Benutzer: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Superuser und Staff-Benutzer löschen ist nicht erlaubt. Benutzen Sie die " -"Administratoren-Oberfläche dafür." +msgstr "Superuser und Staff-Benutzer löschen ist nicht erlaubt. Benutzen Sie die Administratoren-Oberfläche dafür." #: views.py:196 #, python-format @@ -166,6 +158,4 @@ msgstr "Passwort für Benutzer %s erfolgreich zurückgesetzt." #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": " -"%(error)s" +msgstr "Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": %(error)s" diff --git a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po index 97c3c95db5..fe59f438df 100644 --- a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -38,9 +37,7 @@ msgstr "Να με θυμάσαι" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Παρακαλώ εισάγετε το email και τον κωδικό σας. Σημειώστε ότι το πεδίο του " -"κωδικού κάνει διάκριση μεταξύ κεφαλαίων και πεζών χαρακτήρων." +msgstr "Παρακαλώ εισάγετε το email και τον κωδικό σας. Σημειώστε ότι το πεδίο του κωδικού κάνει διάκριση μεταξύ κεφαλαίων και πεζών χαρακτήρων." #: forms.py:27 msgid "This account is inactive." @@ -62,14 +59,12 @@ msgstr "Ορισμός κωδικού" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Ελέγχει τονμηχανισμό που χρησιμοποιείται για την πιστοποίηση των χρηστών. Οι " -"διαθέσιμες επιλογές είναι: Όνομα χρήστη, email" +msgstr "Ελέγχει τονμηχανισμό που χρησιμοποιείται για την πιστοποίηση των χρηστών. Οι διαθέσιμες επιλογές είναι: Όνομα χρήστη, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -96,9 +91,7 @@ msgstr "Επαναφορά κωδικού πρόσβασης" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Η επαναφορά του κωδικού πρόσβασης ολοκληρώθηκε! Επιλέξτε τον παρακάτω " -"σύνδεσμο για να συνδεθείτε." +msgstr "Η επαναφορά του κωδικού πρόσβασης ολοκληρώθηκε! Επιλέξτε τον παρακάτω σύνδεσμο για να συνδεθείτε." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -111,9 +104,7 @@ msgstr "Υποβολή" #: templates/authentication/password_reset_done.html:15 msgid "Password reset email sent!" -msgstr "" -"Έγινε αποστολή ηλεκτρονικού μηνύματος για την επαναφορά του κωδικού " -"πρόσβασης!" +msgstr "Έγινε αποστολή ηλεκτρονικού μηνύματος για την επαναφορά του κωδικού πρόσβασης!" #: views.py:74 msgid "Your password has been successfully changed." @@ -152,9 +143,7 @@ msgstr "Αλλαγή κωδικού για τον χρήστη: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Η αρχικοποίηση κωδικών για τον υπερχρήστη και το προσωπικό δεν επιτρέπεται. " -"Κάντε χρήση του περιβάλλοντος διαχείρισης γι' αυτές τις περιπτώσεις." +msgstr "Η αρχικοποίηση κωδικών για τον υπερχρήστη και το προσωπικό δεν επιτρέπεται. Κάντε χρήση του περιβάλλοντος διαχείρισης γι' αυτές τις περιπτώσεις." #: views.py:196 #, python-format @@ -164,5 +153,4 @@ msgstr "" #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Σφάλμακατά την αρχικοποίηση του κωδικού του χρήστη \"%(user)s\": %(error)s" +msgstr "Σφάλμακατά την αρχικοποίηση του κωδικού του χρήστη \"%(user)s\": %(error)s" diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po index ed74b5d798..31755fee92 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2017-2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -39,9 +38,7 @@ msgstr "Recuérdame" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Introduzca una dirección de correo y contraseña válidos. Recuerde que la " -"contraseña es sensible a mayúsculas." +msgstr "Introduzca una dirección de correo y contraseña válidos. Recuerde que la contraseña es sensible a mayúsculas." #: forms.py:27 msgid "This account is inactive." @@ -63,17 +60,13 @@ msgstr "Asignar contraseña" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Controla el mecanismo utilizado para el usuario autenticado. Las opciones " -"son: 'username' nombre de usuario, 'email' correo electrónico" +msgstr "Controla el mecanismo utilizado para el usuario autenticado. Las opciones son: 'username' nombre de usuario, 'email' correo electrónico" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." -msgstr "" -"El tiempo máximo que un usuario que haga clic en la casilla \"Recuérdeme\" " -"permanecerá registrado. El valor es el tiempo en segundos." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." +msgstr "El tiempo máximo que un usuario que haga clic en la casilla \"Recuérdeme\" permanecerá registrado. El valor es el tiempo en segundos." #: templates/authentication/login.html:11 msgid "Login" @@ -99,9 +92,7 @@ msgstr "Restablecimiento de contraseña" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Restablecimiento de contraseña completado! Haga clic en el enlace de abajo " -"para iniciar sesión." +msgstr "Restablecimiento de contraseña completado! Haga clic en el enlace de abajo para iniciar sesión." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -153,9 +144,7 @@ msgstr "Cambiar contraseñas para el usuario: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"No se permite cambiar la contraseña del super usuario y del usuario de " -"personal. Use la interfaz de administración para estos casos." +msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." #: views.py:196 #, python-format @@ -165,5 +154,4 @@ msgstr "Restablecimiento de contraseña exitoso para el usuario: %s." #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " +msgstr "Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 82b007c1b8..6d28415e56 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Nima Towhidi , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -40,9 +39,7 @@ msgstr "مرا به خاطر بسپار" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"لطفا یک ایمیل و کلمه عبور معتبر وارد کنید. توجه کنید که کلمه عبور به حروف " -"کوچک و بزرگ حساس است." +msgstr "لطفا یک ایمیل و کلمه عبور معتبر وارد کنید. توجه کنید که کلمه عبور به حروف کوچک و بزرگ حساس است." #: forms.py:27 msgid "This account is inactive." @@ -64,14 +61,12 @@ msgstr "قراردادن رمز عبور" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"کنترل مکانیزم مورد استفاده برای تأیید هویت کاربر. گزینه ها عبارتند از: نام " -"کاربری، ایمیل" +msgstr "کنترل مکانیزم مورد استفاده برای تأیید هویت کاربر. گزینه ها عبارتند از: نام کاربری، ایمیل" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -150,9 +145,7 @@ msgstr "تغییر رمز عبور برای کاربر: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"بازپروری کاربر با کاربر و کارکنان فوق العاده مجاز نیست، از رابط کاربری " -"مدیریت برای این موارد استفاده کنید." +msgstr "بازپروری کاربر با کاربر و کارکنان فوق العاده مجاز نیست، از رابط کاربری مدیریت برای این موارد استفاده کنید." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index 14b7685d75..3ef61bc378 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -43,9 +42,7 @@ msgstr "Se souvenir de moi" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Veuillez entrer un courriel et mot de passe valide. Notez que le mot de " -"passe est sensible à la casse." +msgstr "Veuillez entrer un courriel et mot de passe valide. Notez que le mot de passe est sensible à la casse." #: forms.py:27 msgid "This account is inactive." @@ -67,14 +64,12 @@ msgstr "Mettre un mot de passe" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Contrôle le mécanisme utilisé pour identifier l'utilisateur. Les options " -"sont : nom d'utilisateur, courriel" +msgstr "Contrôle le mécanisme utilisé pour identifier l'utilisateur. Les options sont : nom d'utilisateur, courriel" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -101,9 +96,7 @@ msgstr "Réinitialiser le mot de passe" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Réinitialisation du mot de passe terminée! Cliquez sur le lien ci-dessous " -"pour vous connecter." +msgstr "Réinitialisation du mot de passe terminée! Cliquez sur le lien ci-dessous pour vous connecter." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -133,14 +126,12 @@ msgstr "Le changement de mot de passe n'est pas autorisé pour ce compte." #: views.py:145 #, python-format msgid "Password change request performed on %(count)d user" -msgstr "" -"Demande de changement de mot de passe exécutée sur %(count)d utilisateur" +msgstr "Demande de changement de mot de passe exécutée sur %(count)d utilisateur" #: views.py:147 #, python-format msgid "Password change request performed on %(count)d users" -msgstr "" -"Demande de changement de mot de passe exécutée sur %(count)d utilisateurs" +msgstr "Demande de changement de mot de passe exécutée sur %(count)d utilisateurs" #: views.py:156 msgid "Change user password" @@ -157,10 +148,7 @@ msgstr "Changer le mot de passe pour l'utilisateur: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"La réinitialisation des mots de passe pour les comptes super utilisateur et " -"staff n'est pas autorisée ici, veuillez le faire via l'interface " -"d'administration." +msgstr "La réinitialisation des mots de passe pour les comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." #: views.py:196 #, python-format @@ -170,6 +158,4 @@ msgstr "Le mot de passe de l'utilisateur : %s a été ré-initialisé avec succ #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur " -"\"%(user)s\" : %(error)s" +msgstr "Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur \"%(user)s\" : %(error)s" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 016fdff845..07f516fbac 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -65,8 +64,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index 9d1628ccc6..dfa093cfd2 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 settings.py:9 @@ -38,8 +37,7 @@ msgstr "" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" +msgstr "Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" #: forms.py:27 msgid "This account is inactive." @@ -65,8 +63,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index eb8242dee0..c223af42cf 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniele Bortoluzzi , 2019 # Marco Camplese , 2016-2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -40,9 +39,7 @@ msgstr "Ricordami" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Inserisci email e password corretti. Si noti che il campo password è case-" -"sensitive." +msgstr "Inserisci email e password corretti. Si noti che il campo password è case-sensitive." #: forms.py:27 msgid "This account is inactive." @@ -64,14 +61,12 @@ msgstr "Imposta password" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni " -"sono: username, email" +msgstr "Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni sono: username, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -98,8 +93,7 @@ msgstr "Reimposta la password" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Reimpostazione della password completata! Clicca sul link sotto per accedere" +msgstr "Reimpostazione della password completata! Clicca sul link sotto per accedere" #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -151,9 +145,7 @@ msgstr "Cambia la password dell'utente: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Al super utente e utente non è consentito di reimpostare la password " -"personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "Al super utente e utente non è consentito di reimpostare la password personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:196 #, python-format @@ -163,6 +155,4 @@ msgstr "Effettuato reset della password per l'utente: %s." #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Errore per il reimpostamento della password per l'utente \"%(user)s\": " -"%(error)s" +msgstr "Errore per il reimpostamento della password per l'utente \"%(user)s\": %(error)s" diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.mo index 768405f3aa4e40c23aa18e3f079128458bcc2e06..2206a2c7f52921f1803800f2116745c1d4edd03b 100644 GIT binary patch delta 1019 zcmX}pOGs5g7{KxIW|n59_VCezL5hm(V)l?M!YHUkR)_@!QOA3S>vYdU&N)}32iLoa zhy>wMyCT;X85eRB5^-F#3|h3%7B0hGtEff)?;3qD=QnfaoNwlv`P8=3QT*Og`%DqL zX*+3+HA)@8KPd4krPL;z#?3g3^4&)~h)Z}J>(?lC8T(P@r*JL4L7A`MHvIALy{c8J zL8+puqf^I3Gmc;zuE!D{!6$eW=TSED6MHd5_73dB8+a8r;4C)c2V94rQSyJmefSNt zC@qB4aE!7X96;IVTg>4iN}_X=+l+%K3uTeLsR-o+ zAK*ir#Wqay(;hsJd*zzB!fHqoNg%-~Rg=q|Zz(sYww#c|mS9)aG}QqQsi}n~x4wfW z(N2@wmS`&9OtrRer6-$`kfJz*>Z$IkOs4MF6bGEU)+=~Aww}?BE<`5O8P{g=*3ap9 z#OTgJ;~8(5*PiLrnGuu84+nSkxOH6}8qcx5c7t5bWVQ9v`kLbwjJDBgKIS5m3H)r7 zR#%)T8V|zk{|>nvzp}g5q%QRI>cc&K-Mt69iH3_#6dxK29Y1oNI0*anKvD`xIb`fu zQt~5x%5xZ}W5#^cpJNklIum%OEAQ$SQMj0ux+Y?<&J-!4zQ=+dJO n|3-S0e8y&&qWGj7#!2hUu%m6bx-#|W3w|~!N9oGb`uC~7M#ICp delta 697 zcmXZa%PT}t9Ki82*JYUT8n1aUB5Fn+jXZ{HrC~veWPy#Y2!*McS&@bXvQUJjQvLzC z$-;`Y$)3qyFbf-sQog@Ces$(^&YXMC?|06*xxkYz{a&SCC?ZH}py>{!+AxO_Cz?{_ zc#0Kxh4S1DwqpkS@f#;GQjnkD#X`oHDD&4?i?9Fxf1pdLwECh`#Dqgvsu+v02R+z} zqbLPzVHA%rfR8wjS#)ERY^4}OCr+WPJBuM)z$H9HKjyH5{Hlnj4%uxFRxFa575fYN7#_sWzoNZ`ce>Ed1N+0@nibRdxf%XXDnlO{8&Y6U{nOrwh@r2Pd9ba5dq~e$~6Kip6#F^Esd)J-z2UeO# ASpWb4 diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po index 286f7aa6db..e809cc9350 100644 --- a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-27 12:07+0000\n" +"Last-Translator: Māris Teivāns \n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -40,9 +38,7 @@ msgstr "Atceries mani" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Lūdzu, ievadiet pareizu e-pasta adresi un paroli. Ņemiet vērā, ka paroles " -"lauks ir reģistrjutīgs." +msgstr "Lūdzu, ievadiet pareizu e-pasta adresi un paroli. Ņemiet vērā, ka paroles lauks ir reģistrjutīgs." #: forms.py:27 msgid "This account is inactive." @@ -64,15 +60,13 @@ msgstr "Uzstādīt paroli" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Kontrolē lietotāja autentifikācijas mehānismu. Iespējas ir: lietotājvārds, e-" -"pasts" +msgstr "Kontrolē lietotāja autentifikācijas mehānismu. Iespējas ir: lietotājvārds, e-pasts" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." -msgstr "" +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." +msgstr "Maksimālais laiks, uz kādu lietotājs, noklikšķinot uz izvēles rūtiņas „Atcerēties mani”, paliks pieteicies. Vērtība ir laiks sekundēs." #: templates/authentication/login.html:11 msgid "Login" @@ -98,9 +92,7 @@ msgstr "Paroles atiestatīšana" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Paroles atiestatīšana pabeigta! Lai pierakstītos, noklikšķiniet uz tālāk " -"redzamās saites." +msgstr "Paroles atiestatīšana pabeigta! Lai pierakstītos, noklikšķiniet uz tālāk redzamās saites." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -153,9 +145,7 @@ msgstr "Mainīt paroli lietotājam: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super lietotāju un darbinieku lietotāju paroles atiestatīšana nav atļauta, " -"šajos gadījumos izmantojiet admin saskarni." +msgstr "Super lietotāju un darbinieku lietotāju paroles atiestatīšana nav atļauta, šajos gadījumos izmantojiet admin saskarni." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po index a3948cd6c5..59421ff75a 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Justin Albstbstmeijer , 2016 # Martin Horseling , 2018 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -40,9 +39,7 @@ msgstr "Onthoud mij" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het " -"wachtwoord-invulveld hoofdlettergevoelig is." +msgstr "Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het wachtwoord-invulveld hoofdlettergevoelig is." #: forms.py:27 msgid "This account is inactive." @@ -64,14 +61,12 @@ msgstr "Stel paswoord in" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: " -"gebruikersnaam, email" +msgstr "Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: gebruikersnaam, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -150,9 +145,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, " -"gebruik de admin gebruiker voor deze zaken." +msgstr "Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." #: views.py:196 #, python-format @@ -162,6 +155,4 @@ msgstr "" #: views.py:202 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": " -"%(error)s" +msgstr "Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": %(error)s" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index d4130876f6..c2f80a7c11 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2016-2017 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -64,14 +61,12 @@ msgstr "Ustaw hasło" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, " -"email" +msgstr "Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, email" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -152,9 +147,7 @@ msgstr "Zmień hasło użytkownika: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu " -"administratora w takich przypadkach." +msgstr "Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index a2e1e659e7..73520f4a5a 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 settings.py:9 @@ -65,8 +64,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -145,9 +144,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Não é permitido redefinir a senha de administradores ou de membros da " -"equipa, utilize a interface de administrador para estes casos." +msgstr "Não é permitido redefinir a senha de administradores ou de membros da equipa, utilize a interface de administrador para estes casos." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po index 8c84c7dccd..2964f38807 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -40,9 +39,7 @@ msgstr "Lembrar de mim" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Por favor, indique um e-mail e senha corretamente. Note que o campo de senha " -"diferencia maiúsculas de minúsculas." +msgstr "Por favor, indique um e-mail e senha corretamente. Note que o campo de senha diferencia maiúsculas de minúsculas." #: forms.py:27 msgid "This account is inactive." @@ -64,14 +61,12 @@ msgstr "Configurar senha" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Controla o mecanismo usado para autenticar o usuário. As opções são: nome de " -"usuário, e-mail" +msgstr "Controla o mecanismo usado para autenticar o usuário. As opções são: nome de usuário, e-mail" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -150,9 +145,7 @@ msgstr "Alterar senha para o usuário: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " -"interface de administração para esses casos." +msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo index 700a9b4b2b7ed9482d8576d4199a39946932e168..f8b1408e87520703a22df9efb3edbb66cbda2ec0 100644 GIT binary patch delta 976 zcmX}qJxmlq6u|LeK@`LfK!Fn_6QVJEszFhyXb2PN~)Vyi@QEiopLsG%?xCKh64WkX?OVT}KGpfB0`&Cblu%zJa2xy{z%w}z^xifH3G z&Qn*RR0sY>iD!;d2k|)`!q+JC-eMPSVL#SXDs>G9QN|zR9(;u|Uc#gJW4B*bDOIaf zQB~8ZW}qJP*n<1;0rufMp2s&R2l#6kRw4cJ7QG*t&S zVjs#uhw&l%tD7{~Q*Gf8e#c?#WL68t=;8uOCAM(_Pm*Sn^rKW}8TnML?z)C@(090i ze^Az&Cp)Rc3p^#)%oUbHvXzA-BonEE+6t9|DKg>d%`k~cEXNirq8~E;&A5H2sZ*}_( z8`^N3?$EYtH*ejk@xrX0@q<9eHZ*>ugTmyb^|T-L>M;{!R{P1$dW>{mYOk0i?HP?tlmsR%!~=T7#3u0cP@K5=(rR^g zWpUIGr?WtZa&|p!wQFLlvq)#DANcp=E4{uFXm4Y#oXgIX#HL1jmJyDZjAtx_AiTU%ZhCndQkk^?T=cq@gi**&2a7vVyi<7(p{ zpgAcHP7a#`M_D;I3OOhj`Tl17n&dz51~t+9<6Q-KA6~zM;gS zrc^Z^VGZU`-aE$--eDj9;5bH$oc=8==01zke}+DM{D1z5Zl%)dn??y8E?ucIEW>W} zU=NO8kHzG0a8RS9pMu-k5|qT_+D zJ@|r>i7#BlR#qoF*+CO8F^u7IXQwkb#C;sSm_sgQQPtr!%0ll^7FNI!=2x#YMzM>0 zG@*&}cz}|D4_v|yzHX4`C>c3Ly41zLS11d-#RL3B8E>Do1n~^zR5>X-YN>rPkObMV zcQ0*krd_KWkR(aS6pePvspJ$TKP?nF2nm^{-fr=iWLC9CzwB6!Q$iNa9-V*8%4!=f zYg^ycBE5lVY_O+46eZkaMluzdGL5z5ijhi~gMrD!+@hIEVA3#`6IQS^Tx1p8@7f=| Cp-T?{ diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po index 79c4f18ac7..54b41c9dcf 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2019-06-18 15:36+0000\n" +"Last-Translator: Harald Ersch\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -40,9 +38,7 @@ msgstr "Amintește-ți de mine" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Introduceți un e-mail și o parolă corecte. Rețineți! Câmpul parolei este " -"sensibil la minuscule." +msgstr "Introduceți un e-mail și o parolă corecte. Rețineți! Câmpul parolei este sensibil la minuscule." #: forms.py:27 msgid "This account is inactive." @@ -64,15 +60,13 @@ msgstr "Seteaza parola" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Controlează mecanismul utilizat pentru utilizatorul autentificat. Opțiunile " -"sunt: numele de utilizator, e-mailul" +msgstr "Controlează mecanismul utilizat pentru utilizatorul autentificat. Opțiunile sunt: numele de utilizator, e-mailul" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." -msgstr "" +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." +msgstr "Timpul maxim pe care un utilizator îl dă clic pe caseta de selectare \"Reține-mă\" va rămâne logat. Valoarea este timpul în secunde." #: templates/authentication/login.html:11 msgid "Login" @@ -98,9 +92,7 @@ msgstr "Reinițializarea parolei" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" -"Reinițializarea parolei este finalizată! Faceți clic pe link-ul de mai jos " -"pentru a vă conecta." +msgstr "Reinițializarea parolei este finalizată! Faceți clic pe link-ul de mai jos pentru a vă conecta." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" @@ -153,9 +145,7 @@ msgstr "Schimbați parola pentru utilizatorul: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super utilizator și parola de utilizator personalul resetarea nu este " -"permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "Super utilizator și parola de utilizator personalul resetarea nu este permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index d5e4bf250d..187cfcd29e 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -41,9 +38,7 @@ msgstr "" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Пожалуйста, введите правильный адрес электронной почты и пароль с учетом " -"регистра." +msgstr "Пожалуйста, введите правильный адрес электронной почты и пароль с учетом регистра." #: forms.py:27 msgid "This account is inactive." @@ -65,14 +60,12 @@ msgstr "" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Управление механизмом, используемым для аутентификации пользователя. " -"Возможные варианты: имя пользователя, адрес электронной почты" +msgstr "Управление механизмом, используемым для аутентификации пользователя. Возможные варианты: имя пользователя, адрес электронной почты" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -153,9 +146,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Сброс паролей суперпользователя и персонала не допускается, используйте " -"интерфейс администратора для этих случаев." +msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po index 7ed6d1cab0..c0ebe5bc42 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:25 settings.py:9 msgid "Authentication" @@ -65,8 +63,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po index ce2015ebb8..61ad8a094c 100644 --- a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 settings.py:9 @@ -39,9 +38,7 @@ msgstr "Beni hatırla" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Lütfen doğru bir e-posta ve şifre girin. Parola alanının büyük / küçük harfe " -"duyarlı olduğunu unutmayın." +msgstr "Lütfen doğru bir e-posta ve şifre girin. Parola alanının büyük / küçük harfe duyarlı olduğunu unutmayın." #: forms.py:27 msgid "This account is inactive." @@ -63,14 +60,12 @@ msgstr "" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Kimliği doğrulanmış kullanıcı için kullanılan mekanizmayı denetler. " -"Seçenekler şunlardır: kullanıcı adı, e-posta" +msgstr "Kimliği doğrulanmış kullanıcı için kullanılan mekanizmayı denetler. Seçenekler şunlardır: kullanıcı adı, e-posta" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -149,9 +144,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Süper kullanıcı ve çalışanların parola sıfırlamasına izin verilmez, bu " -"durumlarda admin arayüzünü kullanın." +msgstr "Süper kullanıcı ve çalışanların parola sıfırlamasına izin verilmez, bu durumlarda admin arayüzünü kullanın." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po index b0de3d50e9..bd910b7728 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 settings.py:9 @@ -64,8 +63,8 @@ msgstr "" #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 @@ -143,9 +142,7 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user and staff user password reseting is not allowed, use the admin " -"interface for these cases." +msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." #: views.py:196 #, python-format diff --git a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po index 45f9e5a4ab..ca724e26b0 100644 --- a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 settings.py:9 @@ -65,8 +64,8 @@ msgstr "控制用于经过身份验证的用户的机制。选项包括:用户 #: settings.py:20 msgid "" -"Maximum time a user clicking the \"Remember me\" checkbox will remain logged " -"in. Value is time in seconds." +"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" +" in. Value is time in seconds." msgstr "" #: templates/authentication/login.html:11 diff --git a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po index a25654103e..3faf2e67a8 100644 --- a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mohammed ALDOUB , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -54,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po index 2092a31477..3d64464ee7 100644 --- a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pavlin Koldamov , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Pavlin Koldamov , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -54,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po index 3a99b6b9bd..6ab68449d5 100644 --- a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # www.ping.ba , 2019 # Atdhe Tabaku , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,14 +15,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -56,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 @@ -74,7 +72,8 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Upravo ste završili instalaciju %(project_title)s, čestitam!" +"Upravo ste završili instalaciju %(project_title)s, " +"čestitam!" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" diff --git a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po index e4fe671e77..ac9a472bd8 100644 --- a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -50,8 +49,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po index 70aab4ec29..1240d4101c 100644 --- a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/da/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po index f33c077182..fdcabf4b72 100644 --- a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -54,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po index 08ebe92c2b..d20f562f0e 100644 --- a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Berny , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,12 +52,13 @@ msgstr "Auto-Admin Eigenschaften" #: settings.py:14 msgid "Sets the email of the automatically created super user account." -msgstr "Setzt die E-Mailadresse für das automatisch erstellte Superuser-Konto." +msgstr "" +"Setzt die E-Mailadresse für das automatisch erstellte Superuser-Konto." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" "Das Passwort für das automatisch erstellte Superuser-Konto. Wenn Sie das " "Feld leer lassen, wird ein Zufallspasswort erstellt." diff --git a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po index 9ccd58537f..2641f822f5 100644 --- a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -53,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po index 2285f6922c..e13a6a35f1 100644 --- a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # jmcainzos , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -31,8 +31,8 @@ msgid "" "Welcome Admin! You have been given superuser privileges. Use them with " "caution." msgstr "" -"¡Bienvenido Admin! Se le han otorgado privilegios de superusuario. Úsalo con " -"precaución." +"¡Bienvenido Admin! Se le han otorgado privilegios de superusuario. Úsalo con" +" precaución." #: models.py:15 msgid "Account" @@ -58,8 +58,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" "La contraseña de la cuenta de superusuario creada automáticamente. Si es " "igual a Ninguno, la contraseña se genera aleatoriamente." diff --git a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po index aeb9c945ff..86eacd59e0 100644 --- a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Mehdi Amani , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -54,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po index 6016ae0d13..839dae3d7e 100644 --- a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Christophe CHAUVET , 2019 # Thierry Schott , 2019 # Yves Dubois , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -18,10 +18,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -33,8 +33,8 @@ msgid "" "Welcome Admin! You have been given superuser privileges. Use them with " "caution." msgstr "" -"Bienvenue Admin! Vous avez reçu des privilèges de superutilisateur. Utilisez-" -"les avec prudence." +"Bienvenue Admin! Vous avez reçu des privilèges de superutilisateur. " +"Utilisez-les avec prudence." #: models.py:15 msgid "Account" @@ -58,8 +58,8 @@ msgstr "Définit le courriel du compte superutilisateur créé automatiquement." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" "Le mot de passe du compte superutilisateur créé automatiquement. S'il est " "vide, le mot de passe est généré de manière aléatoire." diff --git a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po index 69ca22a1ad..c566d278a2 100644 --- a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # molnars , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: molnars , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -54,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po index 34169c1617..8aae84cb30 100644 --- a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dzikri Hakim , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Dzikri Hakim , 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:9 @@ -54,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po index 0fff5c6ca6..1faad4d12c 100644 --- a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pierpaolo Baldan , 2019 # Marco Camplese , 2019 # Andrea Evangelisti , 2019 # Daniele Bortoluzzi , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -18,10 +18,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Daniele Bortoluzzi , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -57,8 +57,8 @@ msgstr "Imposta l'email dell'account superutente creato in automatico." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" "La password dell'accoutn superutente creato in automatico. Se è uguale a " "None, la password è generata in maniera casuale." @@ -77,7 +77,8 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Hai appena completato l'installazione di %(project_title)s , congratulazioni!" +"Hai appena completato l'installazione di %(project_title)s , " +"congratulazioni!" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" diff --git a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po index 8ad917cc25..0aae951652 100644 --- a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -56,8 +55,8 @@ msgstr "Iestata automātiski izveidotā super lietotāja konta e-pastu." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" "Automātiski izveidotā super lietotāja konta parole. Ja tā ir vienāds ar " "Neko, parole tiek ģenerēta automātiski." diff --git a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po index 5cc1adff71..629ae8aefd 100644 --- a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2019 # Justin Albstbstmeijer , 2019 # Martin Horseling , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Martin Horseling , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -56,8 +55,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po index 0dd91b2b75..85ca3547b0 100644 --- a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mic , 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,13 +16,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -56,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 @@ -74,7 +72,8 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Właśnie ukończyłeś instalację %(project_title)s. Gratulacje!" +"Właśnie ukończyłeś instalację %(project_title)s. " +"Gratulacje!" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po index 27450a3d38..0cc95b3b00 100644 --- a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -13,14 +13,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" -"Last-Translator: Manuela Silva , " -"2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva , 2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:9 @@ -55,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 @@ -98,5 +96,5 @@ msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -"Certifique-se de que altera a senha para aumentar a segurança e que desativa " -"esta mensagem." +"Certifique-se de que altera a senha para aumentar a segurança e que desativa" +" esta mensagem." diff --git a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po index 58a09e31e0..8d6b8928ff 100644 --- a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Rogerio Falcone , 2019 # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" -"Last-Translator: José Samuel Facundo da Silva , " -"2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Last-Translator: José Samuel Facundo da Silva , 2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -58,8 +56,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po index 4d19b064a1..729b663d8e 100644 --- a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Badea Gabriel , 2019 # Stefaniu Criste , 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -59,8 +57,8 @@ msgstr "Setează e-mailul contului de superutilizator creat automat." #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" "Parola contului de superutilizator creat automat. Dacă este egală cu None, " "parola este generată aleator." @@ -106,5 +104,5 @@ msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru " -"a dezactiva acest mesaj." +"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru" +" a dezactiva acest mesaj." diff --git a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po index 6200ef59bb..f4ec6b3da5 100644 --- a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sergey Glita , 2019 # lilo.panic, 2019 # mizhgan , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,13 +17,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -57,8 +55,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po index da639ff62c..16de55ea9f 100644 --- a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:16 settings.py:9 msgid "Auto administrator" @@ -51,8 +49,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po index 0a0a9ce149..2cbdad8d7c 100644 --- a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Caner Başaran , 2019 # serhatcan77 , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: serhatcan77 , 2019\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:9 @@ -55,8 +54,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po index 3da3adfde5..cc4161eefd 100644 --- a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Trung Phan Minh , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:9 @@ -54,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po index 82acd24dff..e2dd154c6e 100644 --- a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:9 @@ -53,8 +53,8 @@ msgstr "" #: settings.py:20 msgid "" -"The password of the automatically created super user account. If it is equal " -"to None, the password is randomly generated." +"The password of the automatically created super user account. If it is equal" +" to None, the password is randomly generated." msgstr "" #: settings.py:27 diff --git a/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po index 17fb019ca5..83de52f848 100644 --- a/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Ford Guo , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/rosarior/teams/13584/zh_CN/)\n" diff --git a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po index 7b08e8ba39..a43ef2a009 100644 --- a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mohammed ALDOUB , 2017 # Yaman Sanobar , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,42 +17,17 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "الخزائن" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "خزانة" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "خزانة" - -#: events.py:17 -#, fuzzy -#| msgid "Add to cabinets" -msgid "Document added to cabinet" -msgstr "اضافة الى الخزائن" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "ازالة من الخزائن" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "ازالة من الخزائن" @@ -85,16 +60,6 @@ msgstr "الكل" msgid "Details" msgstr "التفاصيل" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinet" -msgid "get_cabinets()" -msgstr "انشاء خزانة " - #: models.py:35 search.py:16 msgid "Label" msgstr "العنوان" @@ -161,7 +126,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -245,18 +211,6 @@ msgstr "" msgid "Add" msgstr "إضافة" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "اضافة الى الخزائن" -msgstr[1] "اضافة الى الخزائن" -msgstr[2] "اضافة الى الخزائن" -msgstr[3] "اضافة الى الخزائن" -msgstr[4] "اضافة الى الخزائن" -msgstr[5] "اضافة الى الخزائن" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -290,24 +244,6 @@ msgstr "" msgid "Remove" msgstr "إزالة" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "ازالة من الخزائن" -msgstr[1] "ازالة من الخزائن" -msgstr[2] "ازالة من الخزائن" -msgstr[3] "ازالة من الخزائن" -msgstr[4] "ازالة من الخزائن" -msgstr[5] "ازالة من الخزائن" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "ازالة من الخزائن" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -321,13 +257,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Create cabinet" -msgid "Select cabinets" -msgstr "انشاء خزانة " - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po index 7c195c6b54..24b99fa6c4 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Pavlin Koldamov , 2017 # Iliya Georgiev , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Iliya Georgiev , 2017\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -29,22 +28,6 @@ msgstr "" msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -77,14 +60,6 @@ msgstr "" msgid "Details" msgstr "Детайли" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "" @@ -151,7 +126,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -235,13 +211,6 @@ msgstr "" msgid "Add" msgstr "Добави" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" -msgstr[1] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -275,18 +244,6 @@ msgstr "" msgid "Remove" msgstr "Премахнете" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" -msgstr[1] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -300,11 +257,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po index 1217a2f1eb..50549cfa15 100644 --- a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # www.ping.ba , 2017 # Atdhe Tabaku , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,44 +16,18 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Ormarić" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Ormarić" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Ormarić" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Kabinet za dokumente" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Izbrišite iz ormarića" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Izbrišite iz ormarića" @@ -86,18 +60,6 @@ msgstr "Sve" msgid "Details" msgstr "Detalji" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Ormari koji sadrže dokument:%s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Stvori kabinete" - #: models.py:35 search.py:16 msgid "Label" msgstr "Labela" @@ -164,15 +126,16 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Ime ovog nivoa kabineta dodato imenima svojih pretka." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL krajnje tačke API koja prikazuje dokumente liste unutar ovog kabineta." #: serializers.py:68 serializers.py:179 msgid "Comma separated list of document primary keys to add to this cabinet." msgstr "" -"Spisak primarnih ključeva dokumenata koji su odvojeni zarezom za dodavanje u " -"ovaj kabinet." +"Spisak primarnih ključeva dokumenata koji su odvojeni zarezom za dodavanje u" +" ovaj kabinet." #: serializers.py:158 msgid "" @@ -253,15 +216,6 @@ msgstr "Dodajte zahtevu u kabinu na %(count)d dokumentima" msgid "Add" msgstr "Dodati" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Dodajte dokumente u ormare" -msgstr[1] "Dodajte dokumente u ormare" -msgstr[2] "Dodajte dokumente u ormare" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -295,21 +249,6 @@ msgstr "Uklonite sa zahteva u kabini izvršenom na %(count)d dokumenata" msgid "Remove" msgstr "Ukloniti" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Ukloni dokumente is kabineta" -msgstr[1] "Ukloni dokumente is kabineta" -msgstr[2] "Ukloni dokumente is kabineta" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Ukloni dokumente is kabineta" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Ormari iz kojih će izabrani dokumenti biti uklonjeni." @@ -323,15 +262,3 @@ msgstr "Dokument:%(document)s ne nalazi se u kabinetu:%(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokument:%(document)s je izbrisan sa kabineta:%(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Izbriši kabinete" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Ormari na koje će se dodati odabrani dokumenti." diff --git a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po index f2b905d49e..9efab06517 100644 --- a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 # Sebastian Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,42 +16,17 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Sebastian Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Kabinety" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Kabinet" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Kabinet" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Kabinet dokumentu" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Odstranit z kabinetů" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Odstranit z kabinetů" @@ -84,16 +59,6 @@ msgstr "Vše" msgid "Details" msgstr "Detail" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Vytvořit kabinet" - #: models.py:35 search.py:16 msgid "Label" msgstr "Označení" @@ -160,7 +125,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -244,16 +210,6 @@ msgstr "" msgid "Add" msgstr "Přidat" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Přidat dokument do kabinetu" -msgstr[1] "Přidat dokument do kabinetu" -msgstr[2] "Přidat dokument do kabinetu" -msgstr[3] "Přidat dokument do kabinetu" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -287,22 +243,6 @@ msgstr "" msgid "Remove" msgstr "Odstranit" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Odstranit dokument z kabinetů" -msgstr[1] "Odstranit dokument z kabinetů" -msgstr[2] "Odstranit dokument z kabinetů" -msgstr[3] "Odstranit dokument z kabinetů" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Odstranit dokument z kabinetů" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Kabinety ze kterých budou vybrané dokumenty odstraněny" @@ -316,15 +256,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Odstranit kabinet" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets from which the selected documents will be removed." -msgid "Cabinets to which the document will be added." -msgstr "Kabinety ze kterých budou vybrané dokumenty odstraněny" diff --git a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po index 09f84dca44..fc6b99735f 100644 --- a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -27,30 +26,6 @@ msgstr "" msgid "Cabinets" msgstr "Samlesager" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Samlesag" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Samlesag" - -#: events.py:17 -#, fuzzy -#| msgid "Documents can be added to many cabinets." -msgid "Document added to cabinet" -msgstr "Dokumenter kan tilføjes flere samlesager" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Fjern fra samlesag" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Fjern fra samlesag" @@ -83,16 +58,6 @@ msgstr "Alle" msgid "Details" msgstr "Detaljer" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Opret samlesager" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etiket" @@ -159,7 +124,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -243,14 +209,6 @@ msgstr "" msgid "Add" msgstr "Tilføj" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Tilføj dokumenter til samlesag" -msgstr[1] "Tilføj dokumenter til samlesag" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -284,20 +242,6 @@ msgstr "" msgid "Remove" msgstr "Fjern" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Fjern dokumenter fra samlesager" -msgstr[1] "Fjern dokumenter fra samlesager" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Fjern dokumenter fra samlesager" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Samlesager hvorfra dokumentet bliver fjernet" @@ -311,15 +255,3 @@ msgstr "Dokumentet: %(document)s er ikke i samlesagen: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokumentet: %(document)s er fjernet fra samlesagen: %(cabinet)s" - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Slet samlesager" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets from which the selected documents will be removed." -msgid "Cabinets to which the document will be added." -msgstr "Samlesager hvorfra dokumentet bliver fjernet" diff --git a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po index 06c72934a7..cd6ea3e0f6 100644 --- a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Jesaja Everling , 2017 # Bjoern Kowarsch , 2018 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,30 +29,6 @@ msgstr "" msgid "Cabinets" msgstr "Aktenschränke" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Aktenschrank" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Aktenschrank" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Dokumenten-Aktenschrank" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Aus Aktenschrank entfernen" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Aus Aktenschrank entfernen" @@ -86,18 +61,6 @@ msgstr "Alle" msgid "Details" msgstr "Details" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Aktenschränke mit Dokument %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Aktenschränke anlegen" - #: models.py:35 search.py:16 msgid "Label" msgstr "Bezeichner" @@ -166,7 +129,8 @@ msgstr "" "Elemente." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "Die URL dieses API-Endpunkts zeigt eine Liste der Dokumente in diesem " "Aktenschrank." @@ -183,8 +147,8 @@ msgid "" "URL is different than the canonical document URL." msgstr "" "Die auf ein Dokument zeigende API-URL im Verhältnis zum dem Aktenschrank, " -"der das Dokument speichert. Diese URL unterscheidet sich von der kanonischen " -"URL des Dokuments." +"der das Dokument speichert. Diese URL unterscheidet sich von der kanonischen" +" URL des Dokuments." #: templates/cabinets/cabinet_details.html:17 msgid "Navigation:" @@ -263,14 +227,6 @@ msgstr "%(count)d Dokumente zu Aktenschrank hinzugefügt" msgid "Add" msgstr "Hinzufügen" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Dokumente zu Aktenschrank hinzufügen" -msgstr[1] "Dokumente zu Aktenschrank hinzufügen" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -307,20 +263,6 @@ msgstr "%(count)d Dokumente aus Aktenschrank entfernt" msgid "Remove" msgstr "Entfernen" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Dokumente aus Aktenschrank entfernen" -msgstr[1] "Dokumente aus Aktenschrank entfernen" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Dokumente aus Aktenschrank entfernen" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Aktenschränke aus denen die ausgewählten Dokumente entfernt werden." @@ -334,15 +276,3 @@ msgstr "Dokument %(document)s ist nicht im Aktenschrank %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokument %(document)s entfernt aus Aktenschrank %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Aktenschränke löschen" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Aktenschränke zu denen die ausgewählten Dokumente hinzugefügt werden." diff --git a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po index d49a85c936..e0c06e76d0 100644 --- a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,30 +26,6 @@ msgstr "" msgid "Cabinets" msgstr "Ερμάρια" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Ερμάριο" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Ερμάριο" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Ερμάριο εγγράφων" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Αφαίρεση από ερμάρια" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Αφαίρεση από ερμάρια" @@ -82,18 +58,6 @@ msgstr "Όλα" msgid "Details" msgstr "Λεπτομέρειες" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Ερμάρια που περιέχουν έγγραφο: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Δημιουργία ερμαρίων" - #: models.py:35 search.py:16 msgid "Label" msgstr "Ετικέτα" @@ -160,7 +124,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -244,14 +209,6 @@ msgstr "Προσθήκη σε ερμάριο πραγματοποιήθηκε σ msgid "Add" msgstr "Προσθήκη" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Προσθήκη εγγράφων στα ερμάρια" -msgstr[1] "Προσθήκη εγγράφων στα ερμάρια" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -285,20 +242,6 @@ msgstr "Αφαίρεση από ερμάριο πραγματοποιήθηκε msgid "Remove" msgstr "Αφαίρεση" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Αφαίρεση εγγράφων από ερμάρια" -msgstr[1] "Αφαίρεση εγγράφων από ερμάρια" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Αφαίρεση εγγράφων από ερμάρια" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Ερμάρια από τα οποία τα επιλεγμένα έγγραφα θα αφαιρεθούν." @@ -312,15 +255,3 @@ msgstr "Έγγραφο: %(document)s δεν περιέχεται στο ερμά #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Έγγραφο: %(document)s αφαιρέθηκε από το ερμάριο: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Διαγραφή ερμαρίων" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Ερμάρια στα οποία τα επιλεγμένα έγγραφα θα προστεθούν." diff --git a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po index f3cbb8c10a..08b15d7d14 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Roberto Rosario, 2018\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,30 +26,6 @@ msgstr "" msgid "Cabinets" msgstr "Archivadores" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Archivador" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Archivador" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Archivador de documento" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Remover de archivador" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Remover de archivador" @@ -82,18 +58,6 @@ msgstr "Todos" msgid "Details" msgstr "Detalles" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Archivadores que contienen el documento: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Crear archivadores" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etiqueta" @@ -162,7 +126,8 @@ msgstr "" "contienen. " #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL del servicio de la API que muetra los documentos contenidos en este " "archivador. " @@ -258,14 +223,6 @@ msgstr "Solicitud de añadir a gabinete realizada en %(count)d documentos" msgid "Add" msgstr "Agregar" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Agregar documentos a archivadores" -msgstr[1] "Agregar documentos a archivadores" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -300,20 +257,6 @@ msgstr "Solicitud de retirar del gabinete realizada en el documento %(count)d" msgid "Remove" msgstr "Eliminar" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Remover documentos de archivadores" -msgstr[1] "Remover documentos de archivadores" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Remover documentos de archivadores" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Gabinetes de los que se eliminarán los documentos seleccionados." @@ -327,15 +270,3 @@ msgstr "Documento: %(document)s no está en el gabinete: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Documento: %(document)s retirado del gabinete: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Borrar archivadores" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Archivador a los cuales el documento seleccionado va a ser agregado." diff --git a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po index 8a73cce416..3656aca8b6 100644 --- a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mehdi Amani , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mehdi Amani , 2017\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -27,30 +27,6 @@ msgstr "" msgid "Cabinets" msgstr "کابینت" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "کابینه" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "کابینه" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "کابینه سند" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "حذف از کابینت" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "حذف از کابینت" @@ -83,18 +59,6 @@ msgstr "همه" msgid "Details" msgstr "جزئیات" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "کابینت حاوی اسناد: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "ایجاد کابینت" - #: models.py:35 search.py:16 msgid "Label" msgstr "برچسب" @@ -161,7 +125,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "نام این سطح کابینه به نام اجداد آن اضافه شده است." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "URL نقطه پایان API نشان دادن اسناد لیست در داخل این کابینه." #: serializers.py:68 serializers.py:179 @@ -248,14 +213,6 @@ msgstr "اضافه کردن به درخواست کابینه در اسناد %(c msgid "Add" msgstr "افزودن" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "اسناد را به کابینت اضافه کنید" -msgstr[1] "اسناد را به کابینت اضافه کنید" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -289,20 +246,6 @@ msgstr "از درخواست کابینت بر روی اسناد %(count)d انج msgid "Remove" msgstr "حذف" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "اسناد را از کابینت حذف کنید" -msgstr[1] "اسناد را از کابینت حذف کنید" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "اسناد را از کابینت حذف کنید" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "کابینت هایی که اسناد انتخاب شده حذف خواهند شد." @@ -316,15 +259,3 @@ msgstr "سند: %(document)s در کابینه نیست: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "سند: %(document)s حذف شده از کابینه: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "حذف کابینت" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "کابینت هایی که اسناد انتخاب شده اضافه خواهند شد." diff --git a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po index 399255cf3c..45d21014a7 100644 --- a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Thierry Schott , 2017 # Christophe CHAUVET , 2017 # Yves Dubois , 2018 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -19,10 +19,10 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,30 +30,6 @@ msgstr "" msgid "Cabinets" msgstr "Classeurs" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Classeur" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Classeur" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Classeur de document" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Retirer des classeurs" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Retirer des classeurs" @@ -86,18 +62,6 @@ msgstr "Tout" msgid "Details" msgstr "Détails" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Classeurs contenant le document : %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Créer des classeurs" - #: models.py:35 search.py:16 msgid "Label" msgstr "Libellé" @@ -164,7 +128,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Le nom de ce niveau de classeur a été ajouté au nom de ses ancêtres." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL du point de terminaison de l'API listant les documents contenus dans ce " "classeur." @@ -222,8 +187,8 @@ msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." msgstr "" -"L'utilisation des classeurs est une méthode multi-niveaux pour organiser vos " -"documents. Chaque classeur peut contenir autant des documents que d'autres " +"L'utilisation des classeurs est une méthode multi-niveaux pour organiser vos" +" documents. Chaque classeur peut contenir autant des documents que d'autres " "sous-niveaux de classeurs." #: views.py:173 @@ -257,14 +222,6 @@ msgstr "Demande d'ajout au classeur effectuée sur %(count)d documents" msgid "Add" msgstr "Ajouter" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Ajouter des documents au classeur" -msgstr[1] "Ajouter des documents au classeur" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -300,20 +257,6 @@ msgstr "Demande de retrait du classeur effectuée sur %(count)d documents" msgid "Remove" msgstr "Retirer" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Supprimer des documents des classeurs" -msgstr[1] "Supprimer des documents des classeurs" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Supprimer des documents des classeurs" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Classeurs desquels les documents sélectionnés seront retirés." @@ -327,15 +270,3 @@ msgstr "Le document : %(document)s n'est pas dans le classeur : %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Le document : %(document)s a été retiré du classeur : %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Supprimer des classeurs" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Classeurs auxquels les documents sélectionnés seront ajoutés." diff --git a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po index 52212e8eb8..683ed541c2 100644 --- a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2017 # molnars , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: molnars , 2017\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -28,30 +27,6 @@ msgstr "" msgid "Cabinets" msgstr "Fiók" -#: events.py:11 -#, fuzzy -#| msgid "Cabinets" -msgid "Cabinet created" -msgstr "Fiók" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinets" -msgid "Cabinet edited" -msgstr "Fiók" - -#: events.py:17 -#, fuzzy -#| msgid "Add to cabinets" -msgid "Document added to cabinet" -msgstr "Fiókhoz adás" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Fiókból törlés" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Fiókból törlés" @@ -84,16 +59,6 @@ msgstr "Mind" msgid "Details" msgstr "Részletek" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -#, fuzzy -#| msgid "Cabinets" -msgid "get_cabinets()" -msgstr "Fiók" - #: models.py:35 search.py:16 msgid "Label" msgstr "Cimke" @@ -160,7 +125,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -244,14 +210,6 @@ msgstr "" msgid "Add" msgstr "" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Fiókhoz adás" -msgstr[1] "Fiókhoz adás" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -285,20 +243,6 @@ msgstr "" msgid "Remove" msgstr "Levétel" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Fiókból törlés" -msgstr[1] "Fiókból törlés" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Fiókból törlés" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -312,13 +256,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Add to cabinets" -msgid "Select cabinets" -msgstr "Fiókhoz adás" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po index 7c92092f6b..93e1432baa 100644 --- a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dzikri Hakim , 2017 # Sehat , 2017 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -29,22 +28,6 @@ msgstr "" msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -77,14 +60,6 @@ msgstr "" msgid "Details" msgstr "Detail" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "Label" @@ -151,7 +126,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -235,12 +211,6 @@ msgstr "" msgid "Add" msgstr "tambah" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -274,17 +244,6 @@ msgstr "" msgid "Remove" msgstr "hapus" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -298,11 +257,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po index d603670d0e..04f68c7a0b 100644 --- a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Giovanni Tricarico , 2017 # Pierpaolo Baldan , 2017 # Marco Camplese , 2017 # Andrea Evangelisti , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -19,10 +19,10 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Andrea Evangelisti , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,30 +30,6 @@ msgstr "" msgid "Cabinets" msgstr "Contenitori" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Contenitore" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Contenitore" - -#: events.py:17 -#, fuzzy -#| msgid "Add to cabinets" -msgid "Document added to cabinet" -msgstr "Aggiungi a contenitori" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Rimuovi da contenitori" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Rimuovi da contenitori" @@ -86,16 +62,6 @@ msgstr "Tutti" msgid "Details" msgstr "Dettagli" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinet" -msgid "get_cabinets()" -msgstr "Crea contenitore" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etichetta" @@ -162,7 +128,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -246,14 +213,6 @@ msgstr "" msgid "Add" msgstr "Aggiungi" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Aggiungi a contenitori" -msgstr[1] "Aggiungi a contenitori" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -287,20 +246,6 @@ msgstr "" msgid "Remove" msgstr "Rimuovi" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Rimuovi da contenitori" -msgstr[1] "Rimuovi da contenitori" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Rimuovi da contenitori" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -314,13 +259,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Create cabinet" -msgid "Select cabinets" -msgstr "Crea contenitore" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po index 43779c3022..f4761fa5a2 100644 --- a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,42 +15,17 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Kabineti" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Kabinets" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Kabinets" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Dokumentu kabinets" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Noņemiet no kabinetiem" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Noņemiet no kabinetiem" @@ -83,18 +58,6 @@ msgstr "Visi" msgid "Details" msgstr "Detaļas" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Kabineti, kas satur dokumentu: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Izveidot kabinetus" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etiķete" @@ -161,7 +124,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Šī kabineta līmeņa nosaukums pievienots to senču vārdiem." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "API gala punkta URL, kurā redzami saraksta dokumenti šajā kabinetā." #: serializers.py:68 serializers.py:179 @@ -175,8 +139,8 @@ msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" -"API URL, kas norāda uz dokumentu saistībā ar kabinetu, kas to glabā. Šis URL " -"atšķiras no kanoniskā dokumenta URL." +"API URL, kas norāda uz dokumentu saistībā ar kabinetu, kas to glabā. Šis URL" +" atšķiras no kanoniskā dokumenta URL." #: templates/cabinets/cabinet_details.html:17 msgid "Navigation:" @@ -253,15 +217,6 @@ msgstr "Pieprasījums pievienot pie kabineta izpildīts %(count)d dokumentiem" msgid "Add" msgstr "Pievienot" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Pievienot dokumentus kabinetiem" -msgstr[1] "Pievienot dokumentus kabinetiem" -msgstr[2] "Pievienot dokumentus kabinetiem" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -295,21 +250,6 @@ msgstr "Pieprasījums noņemt no kabineta veikts %(count)d dokumentiem" msgid "Remove" msgstr "Noņemt" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Noņemt dokumentus no kabinetiem" -msgstr[1] "Noņemt dokumentus no kabinetiem" -msgstr[2] "Noņemt dokumentus no kabinetiem" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Noņemt dokumentus no kabinetiem" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Kabineti, no kuriem tiks izņemti atlasītie dokumenti." @@ -323,15 +263,3 @@ msgstr "Dokuments: %(document)s nav kabinetā: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokuments: %(document)s ir noņemts no kabineta: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Dzēst kabinetus" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Kabienti, kuriem iezīmētie dokumenti tiks pievienoti." diff --git a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po index 3d2cacd5bc..43e0c02d88 100644 --- a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Lucas Weel , 2017 # Justin Albstbstmeijer , 2017 # Johan Braeken, 2017 # Evelijn Saaltink , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -18,12 +18,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Evelijn Saaltink , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -31,22 +30,6 @@ msgstr "" msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -79,14 +62,6 @@ msgstr "" msgid "Details" msgstr "Gegevens" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "Label" @@ -153,7 +128,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -237,13 +213,6 @@ msgstr "" msgid "Add" msgstr "Voeg toe" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" -msgstr[1] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -277,18 +246,6 @@ msgstr "" msgid "Remove" msgstr "Verwijder" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" -msgstr[1] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -302,11 +259,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po index 3d0c4aa427..cbe372c0e5 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Wojciech Warczakowski , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -16,43 +16,17 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Wojciech Warczakowski , 2017\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Szafki" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Szafka" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Szafka" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Szafka na dokumenty" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Usuń z szafek" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Usuń z szafek" @@ -85,18 +59,6 @@ msgstr "Wszystkie" msgid "Details" msgstr "Szczegóły" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Szafki zawierające dokument: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Utwórz szafki" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etykieta" @@ -163,7 +125,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -249,16 +212,6 @@ msgstr "" msgid "Add" msgstr "Dodaj" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Dodaj dokumenty do szafek" -msgstr[1] "Dodaj dokumenty do szafek" -msgstr[2] "Dodaj dokumenty do szafek" -msgstr[3] "Dodaj dokumenty do szafek" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -292,22 +245,6 @@ msgstr "" msgid "Remove" msgstr "Usuń" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Usuń dokumenty z szafek" -msgstr[1] "Usuń dokumenty z szafek" -msgstr[2] "Usuń dokumenty z szafek" -msgstr[3] "Usuń dokumenty z szafek" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Usuń dokumenty z szafek" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Szafki, z których wybrane dokumenty zostaną usunięte." @@ -321,15 +258,3 @@ msgstr "Dokument %(document)s nie znajduje się w szafce %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Dokument %(document)s usunięto z szafki %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Usuń szafki" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Szafki, w których zostaną umieszczone wybrane dokumenty." diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po index 1e89d3ee6d..5168822af4 100644 --- a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Emerson Soares , 2017 # Manuela Silva , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -15,14 +15,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" -"Last-Translator: Manuela Silva , " -"2017\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -30,22 +28,6 @@ msgstr "" msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -78,14 +60,6 @@ msgstr "" msgid "Details" msgstr "Detalhes" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "Nome" @@ -152,7 +126,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -236,13 +211,6 @@ msgstr "" msgid "Add" msgstr "Adicionar" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" -msgstr[1] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -276,18 +244,6 @@ msgstr "" msgid "Remove" msgstr "Remover" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" -msgstr[1] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -301,11 +257,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po index 60107f5296..3cb99dd56b 100644 --- a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Aline Freitas , 2017 # Roberto Rosario, 2017 # Jadson Ribeiro , 2017 # José Samuel Facundo da Silva , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" -"Last-Translator: José Samuel Facundo da Silva , " -"2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Last-Translator: José Samuel Facundo da Silva , 2018\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -31,30 +29,6 @@ msgstr "" msgid "Cabinets" msgstr "Pasta" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Pasta" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Pasta" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Pasta de documentos" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Remover da pasta" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Remover da pasta" @@ -87,18 +61,6 @@ msgstr "Todos" msgid "Details" msgstr "Detalhes" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Pasta com documento: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Criar pastas" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etiqueta" @@ -165,7 +127,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "O nome deste nível de pasta anexado aos nomes de seus antepassados." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL do ponto de extremidade da API mostrando os documentos da lista dentro " "desta pasta." @@ -181,8 +144,8 @@ msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" -"API URL que aponta para um documento em relação à pasta que o armazena. Este " -"URL é diferente do URL do documento que está de acordo com as normas " +"API URL que aponta para um documento em relação à pasta que o armazena. Este" +" URL é diferente do URL do documento que está de acordo com as normas " "estabelecidas." #: templates/cabinets/cabinet_details.html:17 @@ -227,8 +190,9 @@ msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." msgstr "" -"As pastas funcionam como um método multinível de organização dos documentos. " -"Cada pasta pode conter tanto documentos como outras pastas de nível inferior." +"As pastas funcionam como um método multinível de organização dos documentos." +" Cada pasta pode conter tanto documentos como outras pastas de nível " +"inferior." #: views.py:173 msgid "No cabinets available" @@ -261,14 +225,6 @@ msgstr "Adicionar a pasta o pedido executado em %(count)d documento" msgid "Add" msgstr "Adicionar" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Adicionar documentos as pastas" -msgstr[1] "Adicionar documentos as pastas" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -302,20 +258,6 @@ msgstr "Remover da solicitação de pasta realizada em %(count)d documentos" msgid "Remove" msgstr "Remover" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Excluir documentos de pastas" -msgstr[1] "Excluir documentos de pastas" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Excluir documentos de pastas" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Pastas das quais os documentos selecionados serão removidos." @@ -329,15 +271,3 @@ msgstr "Documento: %(document)s não está na pasta: %(cabinet)s" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Documento: %(document)s removido da pasta: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Excluir pastas" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Pastas aos quais os documentos selecionados serão adicionados." diff --git a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po index 373a8f6dc5..3d5357dd74 100644 --- a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Badea Gabriel , 2017 # Stefaniu Criste , 2017 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,44 +17,18 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "Fișete" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Fișet" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Fișet" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Fișet de documente" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Scoateți din fișete" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Scoateți din fișete" @@ -87,18 +61,6 @@ msgstr "Toate" msgid "Details" msgstr "Detalii" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Fișete care conțin documentul: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Creați fișete" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etichetă" @@ -166,16 +128,17 @@ msgstr "" "Numele acestui nivel de fișet a fost anexat la numele precesorilor săi." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" -"Adresa URL a punctului de sfârșit API care afișează documentele din listă în " -"interiorul acestui fișet." +"Adresa URL a punctului de sfârșit API care afișează documentele din listă în" +" interiorul acestui fișet." #: serializers.py:68 serializers.py:179 msgid "Comma separated list of document primary keys to add to this cabinet." msgstr "" -"Listă de chei primare separate prin virgulă de documente pentru a le adăuga " -"în acest fișet." +"Listă de chei primare separate prin virgulă de documente pentru a le adăuga" +" în acest fișet." #: serializers.py:158 msgid "" @@ -259,21 +222,13 @@ msgstr "" #, python-format msgid "Add to cabinet request performed on %(count)d documents" msgstr "" -"Solicitarea de adăugare la fișet a fost efectuată pentru %(count)d documente " +"Solicitarea de adăugare la fișet a fost efectuată pentru %(count)d documente" +" " #: views.py:233 msgid "Add" msgstr "Adaugă" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Adăugați documente la fișete" -msgstr[1] "Adăugați documente la fișete" -msgstr[2] "Adăugați documente la fișete" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -307,21 +262,6 @@ msgstr "Cererea de eliminarea din fișet efectuată pe %(count)d documente" msgid "Remove" msgstr "Elimină" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Scoateți documente din fișete" -msgstr[1] "Scoateți documente din fișete" -msgstr[2] "Scoateți documente din fișete" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Scoateți documente din fișete" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Fișetele din care vor fi eliminate documentele selectate." @@ -335,15 +275,3 @@ msgstr "Documentul: %(document)s nu este în fișetul: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Documentul: %(document)sa fost scos din fișetul: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Ștergeți fișete" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Fișetele la care vor fi adăugate documentele selectate." diff --git a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po index a7dd584d92..3604e8b5eb 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # D Muzzle , 2017 # Sergey Glita , 2017 # panasoft , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -18,35 +18,17 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: panasoft , 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -79,14 +61,6 @@ msgstr "" msgid "Details" msgstr "Детали" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "Ярлык" @@ -153,7 +127,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -237,15 +212,6 @@ msgstr "" msgid "Add" msgstr "Добавить" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -279,20 +245,6 @@ msgstr "" msgid "Remove" msgstr "Удалить" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -306,11 +258,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po index 68110a1370..a0e125e20d 100644 --- a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,36 +14,18 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: kontrabant , 2017\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -76,14 +58,6 @@ msgstr "" msgid "Details" msgstr "Podrobnosti" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "Oznaka" @@ -150,7 +124,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -234,15 +209,6 @@ msgstr "" msgid "Add" msgstr "" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -276,20 +242,6 @@ msgstr "" msgid "Remove" msgstr "" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -303,11 +255,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po index b908172d55..c9d98eeffc 100644 --- a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: serhatcan77 , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -27,30 +26,6 @@ msgstr "" msgid "Cabinets" msgstr "Dolaplar" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "Dolap" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "Dolap" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "Belge dolabı" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "Dolaplardan Çıkar" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "Dolaplardan Çıkar" @@ -83,18 +58,6 @@ msgstr "Herşey" msgid "Details" msgstr "Ayrıntılar" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "Belgeyi içeren dolaplar: %s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "Dolap oluştur" - #: models.py:35 search.py:16 msgid "Label" msgstr "Etiket" @@ -161,7 +124,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "Bu dolap seviyesinin adı atalarının adlarına eklendi." #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "Bu kabin içindeki liste belgelerini gösteren API bitiş noktasının URL'si." @@ -249,14 +213,6 @@ msgstr "%(count)d belgeleri üzerinde yapılan dolap talebine ekle" msgid "Add" msgstr "Ekle" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "Dolaplara belge ekle" -msgstr[1] "Dolaplara belge ekle" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -290,20 +246,6 @@ msgstr "%(count)d belgeleri üzerinde gerçekleştirilen dolap isteğini kaldır msgid "Remove" msgstr "Çıkar" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "Dolaplardan belgeleri çıkar" -msgstr[1] "Dolaplardan belgeleri çıkar" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "Dolaplardan belgeleri çıkar" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "Seçilen belgelerin çıkarılacağı dolaplar." @@ -317,15 +259,3 @@ msgstr "%(document)s belgesi dolapta değil: %(cabinet)s." #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr " %(document)s belgesi dolaptan kaldırıldı: %(cabinet)s." - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "Dolapları sil" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "Seçilen dokümanlar dolaplara eklenecek." diff --git a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po index 6e62115f22..f6cb6e3796 100644 --- a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Trung Phan Minh , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Trung Phan Minh , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -28,22 +27,6 @@ msgstr "" msgid "Cabinets" msgstr "" -#: events.py:11 -msgid "Cabinet created" -msgstr "" - -#: events.py:14 -msgid "Cabinet edited" -msgstr "" - -#: events.py:17 -msgid "Document added to cabinet" -msgstr "" - -#: events.py:20 -msgid "Document removed from cabinet" -msgstr "" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "" @@ -76,14 +59,6 @@ msgstr "" msgid "Details" msgstr "Chi tiết" -#: methods.py:18 -msgid "Return a list of cabinets containing the document" -msgstr "" - -#: methods.py:20 -msgid "get_cabinets()" -msgstr "" - #: models.py:35 search.py:16 msgid "Label" msgstr "" @@ -150,7 +125,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:68 serializers.py:179 @@ -234,12 +210,6 @@ msgstr "" msgid "Add" msgstr "Thêm" -#: views.py:235 -#, python-format -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -273,17 +243,6 @@ msgstr "" msgid "Remove" msgstr "Xóa" -#: views.py:325 -#, python-format -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "" - -#: views.py:338 -#, python-format -msgid "Remove document \"%s\" from cabinets" -msgstr "" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "" @@ -297,11 +256,3 @@ msgstr "" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "" - -#: wizard_steps.py:18 -msgid "Select cabinets" -msgstr "" - -#: wizard_steps.py:32 -msgid "Cabinets to which the document will be added." -msgstr "" diff --git a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po index 3875e4beae..f0849feb36 100644 --- a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 @@ -26,30 +26,6 @@ msgstr "" msgid "Cabinets" msgstr "文档柜" -#: events.py:11 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet created" -msgstr "文档柜" - -#: events.py:14 -#, fuzzy -#| msgid "Cabinet" -msgid "Cabinet edited" -msgstr "文档柜" - -#: events.py:17 -#, fuzzy -#| msgid "Document cabinet" -msgid "Document added to cabinet" -msgstr "文档柜" - -#: events.py:20 -#, fuzzy -#| msgid "Remove from cabinets" -msgid "Document removed from cabinet" -msgstr "从文档柜中删除" - #: links.py:30 links.py:44 msgid "Remove from cabinets" msgstr "从文档柜中删除" @@ -82,18 +58,6 @@ msgstr "所有" msgid "Details" msgstr "细节" -#: methods.py:18 -#, fuzzy -#| msgid "Cabinets containing document: %s" -msgid "Return a list of cabinets containing the document" -msgstr "文档柜包含文档:%s" - -#: methods.py:20 -#, fuzzy -#| msgid "Create cabinets" -msgid "get_cabinets()" -msgstr "创建文档柜" - #: models.py:35 search.py:16 msgid "Label" msgstr "标签" @@ -160,7 +124,8 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "此文档柜级别的名称附加到其祖级的名称。" #: serializers.py:32 -msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgid "" +"URL of the API endpoint showing the list documents inside this cabinet." msgstr "API端点的URL,显示此文档柜内的列表文档。" #: serializers.py:68 serializers.py:179 @@ -191,9 +156,7 @@ msgstr "删除文档柜:%s?" msgid "" "Cabinet levels can contain documents or other cabinet sub levels. To add " "documents to a cabinet, select the cabinet view of a document view." -msgstr "" -"文档柜级别可以包含文档或其他文档柜子级别。要将文档添加到文档柜,请选择文档视" -"图的文档视图。" +msgstr "文档柜级别可以包含文档或其他文档柜子级别。要将文档添加到文档柜,请选择文档视图的文档视图。" #: views.py:126 msgid "This cabinet level is empty" @@ -213,8 +176,7 @@ msgstr "编辑文档柜:%s" msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." -msgstr "" -"文档柜是组织文档的多级方法。每个文档柜都可以包含文档以及其他子级文档柜。" +msgstr "文档柜是组织文档的多级方法。每个文档柜都可以包含文档以及其他子级文档柜。" #: views.py:173 msgid "No cabinets available" @@ -247,13 +209,6 @@ msgstr "在%(count)d文档上执行的添加到文档柜请求" msgid "Add" msgstr "添加" -#: views.py:235 -#, fuzzy, python-format -#| msgid "Add documents to cabinets" -msgid "Add %(count)d document to cabinets" -msgid_plural "Add %(count)d documents to cabinets" -msgstr[0] "将文档添加至文档柜" - #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" @@ -287,19 +242,6 @@ msgstr "在%(count)d文档上执行的从文档柜中删除请求" msgid "Remove" msgstr "移除" -#: views.py:325 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove %(count)d document from cabinets" -msgid_plural "Remove %(count)d documents from cabinets" -msgstr[0] "将文档从文档柜中删除" - -#: views.py:338 -#, fuzzy, python-format -#| msgid "Remove documents from cabinets" -msgid "Remove document \"%s\" from cabinets" -msgstr "将文档从文档柜中删除" - #: views.py:349 msgid "Cabinets from which the selected documents will be removed." msgstr "将从中删除所选文档的文档柜。" @@ -313,15 +255,3 @@ msgstr "文档:%(document)s不在文档柜:%(cabinet)s中。" #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "文档:%(document)s从文档柜中删除:%(cabinet)s。" - -#: wizard_steps.py:18 -#, fuzzy -#| msgid "Delete cabinets" -msgid "Select cabinets" -msgstr "删除文档柜" - -#: wizard_steps.py:32 -#, fuzzy -#| msgid "Cabinets to which the selected documents will be added." -msgid "Cabinets to which the document will be added." -msgstr "将添加所选文档的文档柜。" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index ad739652bb..d599a50d8f 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 200a3697d2..8a9d866628 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po index d4a64cfbda..7013597f1f 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -173,8 +171,7 @@ msgstr "Primarni ključ dokumenta koji treba proveriti." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"niste prvobitno proverili ovaj dokument. Naporno proverite u dokumentu: %s?" +msgstr "niste prvobitno proverili ovaj dokument. Naporno proverite u dokumentu: %s?" #: views.py:41 #, python-format diff --git a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po index e6e75a6b5e..ae22ad44bf 100644 --- a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po index 87e6b9e7aa..e89bf0c5f5 100644 --- a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po index 80ee1df584..f2981dda50 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Bjoern Kowarsch , 2018 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-28 21:17+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -175,9 +174,7 @@ msgstr "Primärschlüssel des auszubuchenden Dokuments." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s " -"trotzdem zwingend eingebucht werden?" +msgstr "Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s trotzdem zwingend eingebucht werden?" #: views.py:41 #, python-format @@ -215,9 +212,7 @@ msgstr "Ausbuchungsende" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "" -"Das Ausbuchen eines Dokuments verhindert für eine bestimmte Zeit gewisse " -"Operationen." +msgstr "Das Ausbuchen eines Dokuments verhindert für eine bestimmte Zeit gewisse Operationen." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po index d6f38c4f0b..180f680c1e 100644 --- a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index debfaba73d..55307447d3 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015-2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-30 16:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -172,9 +171,7 @@ msgstr "Llave primaria del documento que se va a reservar." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Usted no reservó inicialmente este documento. ¿Devolver forzosamente el " -"documento: %s?" +msgstr "Usted no reservó inicialmente este documento. ¿Devolver forzosamente el documento: %s?" #: views.py:41 #, python-format @@ -212,9 +209,7 @@ msgstr "Expiración de la reservación" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "" -"Reservar un documento bloquea ciertas operaciones del documento durante un " -"período de tiempo predeterminado." +msgstr "Reservar un documento bloquea ciertas operaciones del documento durante un período de tiempo predeterminado." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index f779601057..d9c0858ffa 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index 12723f92ee..fbc1fb7c2e 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2017 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-17 13:31+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -133,8 +132,7 @@ msgstr "Verrouillages du document" #: models.py:64 msgid "Check out expiration date and time must be in the future." -msgstr "" -"La date et l'heure d'expiration du verrouillage doit se situer dans le futur." +msgstr "La date et l'heure d'expiration du verrouillage doit se situer dans le futur." #: models.py:116 msgid "New version block" @@ -177,9 +175,7 @@ msgstr "Clé primaire du document devant être verrouillé." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Vous n'êtes pas celui qui a originellement verrouillé ce document. Êtes vous " -"certain de vouloir forcer le déverrouillage de : %s?" +msgstr "Vous n'êtes pas celui qui a originellement verrouillé ce document. Êtes vous certain de vouloir forcer le déverrouillage de : %s?" #: views.py:41 #, python-format @@ -217,9 +213,7 @@ msgstr "Expiration du verrouillage" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "" -"Le verrouillage d'un document bloque certaines opérations sur le document " -"pendant une durée prédéterminée." +msgstr "Le verrouillage d'un document bloque certaines opérations sur le document pendant une durée prédéterminée." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 079390e56a..5bf64d121d 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index c78cccd783..15daa92738 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-14 11:19+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index 9d5c78bfd1..f0bd806277 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -172,9 +171,7 @@ msgstr "" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Non hai originariamente fatto il checkout di questo documento. Forzare nel " -"documento: %s?" +msgstr "Non hai originariamente fatto il checkout di questo documento. Forzare nel documento: %s?" #: views.py:41 #, python-format diff --git a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po index 8ab2418b16..a34518464e 100644 --- a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-30 08:08+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -173,9 +171,7 @@ msgstr "Izrakstāmā dokumenta primārā atslēga." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Sākotnēji jūs šo dokuments neizrakstījāt. Piespiedus pierakstīt dokumentu: " -"%s?" +msgstr "Sākotnēji jūs šo dokuments neizrakstījāt. Piespiedus pierakstīt dokumentu: %s?" #: views.py:41 #, python-format @@ -213,9 +209,7 @@ msgstr "Izraksta derīguma termiņš" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "" -"Dokumenta izrakstīšana bloķē noteiktas dokumentu darbības uz iepriekš " -"noteiktu laika periodu." +msgstr "Dokumenta izrakstīšana bloķē noteiktas dokumentu darbības uz iepriekš noteiktu laika periodu." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po index d46549b79b..d4f3477295 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index dc4b007c4e..58e9b41ca5 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2017 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -108,8 +105,7 @@ msgstr "Data i czas blokady" #: models.py:35 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" -"Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." +msgstr "Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." #: models.py:37 msgid "Check out expiration date and time" @@ -176,9 +172,7 @@ msgstr "" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie " -"dokumentu: %s?" +msgstr "Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie dokumentu: %s?" #: views.py:41 #, python-format diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 00ae61c08c..e5eeebbba1 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po index c87ee4e937..75943ecbef 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 @@ -174,9 +173,7 @@ msgstr "Chave primária do documento que será reservado." msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Você não reservou inicialmente este documento. Devolver forçosamente o " -"documento: %s?" +msgstr "Você não reservou inicialmente este documento. Devolver forçosamente o documento: %s?" #: views.py:41 #, python-format @@ -214,9 +211,7 @@ msgstr "Expiração da reserva" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "" -"Reservar um documento bloqueia certas operações do documento por um período " -"de tempo pré-determinado." +msgstr "Reservar um documento bloqueia certas operações do documento por um período de tempo pré-determinado." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po index b1f227af38..39422e78f3 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-02 05:01+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" @@ -106,9 +104,7 @@ msgstr "Data și ora consemnării ieșirii" #: models.py:35 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" -"Total timp alocat în minute pentru a deține documentul în mod consemnat ca " -"ieșit." +msgstr "Total timp alocat în minute pentru a deține documentul în mod consemnat ca ieșit." #: models.py:37 msgid "Check out expiration date and time" @@ -175,9 +171,7 @@ msgstr "Cheia primară a documentului care urmează să fie consemnat ca ieșit. msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Nu ați inițiat consemnarea ca ieșit a acestui document. Consemnați forțat " -"intrarea documentului: %s?" +msgstr "Nu ați inițiat consemnarea ca ieșit a acestui document. Consemnați forțat intrarea documentului: %s?" #: views.py:41 #, python-format @@ -215,9 +209,7 @@ msgstr "Expirarea consemnării ca ieșit" msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." -msgstr "" -"Consemnarea ca ieșit blochează unele operații asupra documentului pentru o " -"perioadă de timp prestabilită." +msgstr "Consemnarea ca ieșit blochează unele operații asupra documentului pentru o perioadă de timp prestabilită." #: views.py:172 msgid "No documents have been checked out" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 50df211c8f..6a5f12de10 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po index 2bfb47d16d..7eacda3eaf 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" diff --git a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po index c1326ebacf..d4cc76a4b5 100644 --- a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po index c914f0deb8..aa14c17bd8 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po index df97246d9c..695320b536 100644 --- a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-02 03:31+0000\n" "Last-Translator: Philip Hai \n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 events.py:7 links.py:34 diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo index 745a1c23bc9b9d91b58f2a92779da79c3ed06024..d23c806bc6a13e0737c734bc3a83830e8dc2d1c4 100644 GIT binary patch delta 21 ccmX@hb(U+xMJ5g-O9cZnD, 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -199,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -318,29 +316,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -374,14 +373,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -389,10 +388,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -416,10 +416,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -476,8 +476,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -501,8 +501,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -520,8 +520,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -568,8 +568,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -593,17 +593,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index b88440b9c59bb4a9da987610fb7e74e10ee0acb6..b59d5225616db9725bbae691b209237615dffa8c 100644 GIT binary patch delta 21 ccmaFH`HXWz2NQ>prGkN(m674*2~1&308cyyOaK4? delta 21 ccmaFH`HXWz2NQ>(se*yIm5IgX2~1&308c;$Q2+n{ diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index 62d1c14c33..e50efc3245 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -198,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,29 +316,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -373,14 +373,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -388,10 +388,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -415,10 +416,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -475,8 +476,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -500,8 +501,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -519,8 +520,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -567,8 +568,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -592,17 +593,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo index 1362159eba8a3772a54d562edf7e0466d9449ca4..196fc7a43be2e750829e9937e9b97c34a4132193 100644 GIT binary patch delta 21 ccmeyU@lj)gIuD1DrGkN(m673QeI6$c08WereI6$c08Wqv=>Px# diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po index 887a2c33f6..ff1174e67d 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -179,9 +177,7 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Backend baze podataka je podešeno da koristi SKLite. SKLite treba koristiti " -"samo za razvoj i testiranje, a ne za proizvodnju." +msgstr "Backend baze podataka je podešeno da koristi SKLite. SKLite treba koristiti samo za razvoj i testiranje, a ne za proizvodnju." #: literals.py:34 msgid "Days" @@ -202,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -321,31 +317,30 @@ msgstr "Automatski omogućite evidenciju za sve aplikacije." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Vreme za odlaganje pozadinskih zadataka koji zavise od baze podataka " -"obavezuju se da se propagiraju." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Vreme za odlaganje pozadinskih zadataka koji zavise od baze podataka obavezuju se da se propagiraju." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -354,9 +349,7 @@ msgstr "" #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Omogućite prijavljivanje grešaka izvan sistemskih mogućnosti evidentiranja " -"grešaka." +msgstr "Omogućite prijavljivanje grešaka izvan sistemskih mogućnosti evidentiranja grešaka." #: settings.py:75 msgid "Path to the logfile that will track errors during production." @@ -372,8 +365,7 @@ msgstr "" #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -" Backend skladišta koju svi radnici mogu koristiti za dijeljenje datoteka." +msgstr " Backend skladišta koju svi radnici mogu koristiti za dijeljenje datoteka." #: settings.py:103 msgid "Django" @@ -382,14 +374,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -397,10 +389,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -424,10 +417,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -484,8 +477,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -509,8 +502,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -528,8 +521,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -576,8 +569,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -601,17 +594,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 @@ -645,8 +639,7 @@ msgstr "Kreirati" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Unesite važeći 'interni naziv' koji se sastoji od slova, brojeva i podčrtava." +msgstr "Unesite važeći 'interni naziv' koji se sastoji od slova, brojeva i podčrtava." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo index 377e964f2e34faaad931167c877023b6fb4decf3..b6b67d3e15115a553aef1624a740fa1ac78ef18c 100644 GIT binary patch delta 19 acmdnUvXN!N9u6Z*1p_lHBg2hHav1?XtOhUu delta 19 acmdnUvXN!N9u7lO1p{*{6N`;Uav1?Xs|Gay diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po index 18cf75c6ce..a83e7fcdb2 100644 --- a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -198,8 +196,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,29 +315,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -373,14 +372,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -388,10 +387,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -415,10 +415,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -475,8 +475,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -500,8 +500,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -519,8 +519,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -567,8 +567,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -592,17 +592,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo index 85f9363a1f3c6006d0258dad34342058410028c5..d7e0823839871142c2f20d714a96d266c8dbbf8f 100644 GIT binary patch delta 21 ccmZ3I_LcE{r%4Qo^yWq z!KJXiuCU;@2@wa35+ueFi4kURD4nrpeth5a2b@SdJkBfwvpwrj-`j;{VP=PL zB=!t6YsOoHxM#T8#vx{fd~auhS(cB-zC-1EI(ib#BJrc)W<0|_#R1rj{LZd;?H^GO z{sl+k@DXOiFbAWs6tl4sW3UC2F^D<%3hI03afqh5j!XCLyRR9?eq^pWQ|7>5h67Kh>?WHJ^)J>Wd*0hdur*n`T<$S ziZyuCyFNG5ESL7eO!BWE?50CsY(ov`1=La;^xAJC$*`li2QOd%7iGCivjer}dr=bz zp;CMX$+iW!r~#Fs23mni)`D#EKaO1$j#2iQR|v~#cn3-B=Z zc>OQl?Pj1IB?{c5MZ{%=qd?F~}Vh_2xp`~$V7OYfnMr!by14NWq;kM?Qu zM%5DY%&KrUR^xtD1}~#B+Kcz%Rh*7~8p^&fm1vSQ3EZ;TUd!%%y{-3v-fCk zs$j#>&SfLLg{`dHa{ANfF%h0`yQ%z+C-DJ1JfD{mhO@A@!p*+I0)BY0hV$zq?l-%{ z^)ZXgw&Qhtnd?n;99N85Vm6xo>UuY0>rt6$#X-0WQ}KBWs^b_Htzjo7<8@Sj!cxvW z`f&p`V+wwUI##}A?)Q^W4=BP&ob5RemFgN~%(l$yKY}H+Pb?$_Cn99O_hDL?&xJ=&bRB?)6F>K&opo9G9+e2imyO-Aik67{A+$V{k8y!&g!F??esg zlOPq1=yQA$yKx)Vt}^Sxa~K(Bc6>FnqJ46Wd!Dl%GGm+AI(!_DqXw9^)_p(@PNrRe z#kc`=y#vSM3DkgsT~zeu`wc(lK{4yh4$$se@BA$>?rRBz3Q2H^ZmiNoXc<(rJbJ(* z1gm1Lgi4T@Mrd*>+6OAN#3uJL|1qF3T)h-Fvuz>R#LhX_I;wCGoSBjcr%d2esnn5F zAu&$Ttg?wRx9NOVdUaOId1?K7iQy&Dnn`FQ-6`7bDrDdJ3zzP++z)L?{%c@aUS9xp zdZrUPH93Sz8c{=#NT*csIhD}sdlr#F%vX9;o^o;C*;;=Uz1>(1=XG3xnM5kVF?aq8 zwH@!2N2zdloL6f;`iWvfFDjK}LK`xY(8lJ^ic^AfppV5l560DFj=`nu#c42eFv=Z)u@XPs|_|5Ic#j1Vv5n%;HL?<$e^w6hg;GJ66YZ uE-{fvBo-39F#lKLLuX^pMufJ;F9}5FP4iF6FU-pgUCMtpDpX$dclJM@%qtTB delta 3225 zcmY+GX>1i$6o3!VmI6hVQkE)k*=nJ*V4-EP0%b2q0WG4kPWz_q@E-FXZ($R75JFH1 z0YV5d=pPq|VF}Pbpe9Ia42EE=8Ymc$#TZO9CWs`&1-~;hP3le0eD~ZtbMM*ieZBu} zhvust(zkkN91_}g^DPhx*=rIK6|&8Q2d# z%n?bzoTo(YF~7YB{Z1mGo+6V)(y}gBq^P6F33!JWTJuCQ;U|4X*h@Z#o#AE3ck*4J zUxRAEkFX!?!hEIu zHHEEEBXbMtI``mW_-imfrHJ@H$H2@Y|AX~VU)%!Kpj}W?u{Y4)g#<-Dgc{OjsLocA z=q@k@HRqdor~}8~O86;!8s?LDHK-h_q0bi+f1)ST8F&FULQUV%;DrmYEBcpkE^GQr~he82>s=M?Jj()uOvF1b=~=)9SJ0 z9iD+b$>}k|wGjPWDRlv}$KgGk1Q)=aP$Sp^H3c^ye{!40^RUl&KLU$jE_!+i9ktAX zPr+?)BOC378_=`L{qwsG8uSMfIASoDiY2O2260+yp{DWxq%NfyZepGLupHKM*w4au zu;ORtUnJahoyh;VDI&8NI9w^RgL~j6ypFzVrtiTdCN+dpp?Wqy&}$%fh^&U#BAFeO|iC{G(Sy-hfw@5>4i-UgfC5JFj63kXo&4nzJmB?(s`SKX>dR63|j(Thq}-msHwOgjQ;~U0Fue!eh*HBL*Z4Z$MrEJ zE0VFwzo6#BIJylBU@O#ppR7vz8)UBb?|~esAuol4;BKfEAB9>xr{U}H0`zih`SZhI zXF^>JJHfJA-;qgmel1nPT)tZXHBuHF2)Cx`=mtliTJ#ZAkB`I6@GRU2i$i!1kHSng z*k^Owp&zRE&vjM#_Jr+3qNhR%Md7M+Cs;bnM< zjedgq55mbc-fxPqpXUh>qUg1D= z1JNH7ZF7+62`Rike9B4lhUD5;M!HYcz>uT)#{- zMpKcHskMz|LeXTBZx?M!Hbz|&vyzP_8J%n_*I2Pw#HsT>H+50B-f2k111(}D5~eT~ zx9jbA+%5`@9Bra;7K>SRVXMK`*OQjxdRG2#p^~O(k8nZub7f}igvsM4Hr*}Tot3WC zjl$m2wrdJs_Kal74R)li(KhwXpT$kcu@iRSS#ec6&x{pLI_n)fo-_%^4V9RAcE~ob z+YX<)_0b5{tW9C9O>|-@H=IoAyLLSAI96}fgv{oY&NEo)Zm``@%56x5+k2b{tH-t} jthLui_C diff --git a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po index 4ae562f11e..21169640cd 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Bjoern Kowarsch , 2018 @@ -17,14 +17,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -68,22 +67,14 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Wählen Sie Einträge aus, die entfernt werden sollen. Mit der Steuerungstaste " -"können mehrere Einträge ausgewählt werden. Wenn die Auswahl vollständig ist, " -"klicken Sie den folgenden Button oder doppelklicken Sie auf die Liste um die " -"Aktion durchzuführen." +msgstr "Wählen Sie Einträge aus, die entfernt werden sollen. Mit der Steuerungstaste können mehrere Einträge ausgewählt werden. Wenn die Auswahl vollständig ist, klicken Sie den folgenden Button oder doppelklicken Sie auf die Liste um die Aktion durchzuführen." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Wählen Sie Einträge aus, die hinzugefügt werden sollen. Mit der " -"Steuerungstaste können mehrere Einträge ausgewählt werden. Wenn die Auswahl " -"vollständig ist, klicken Sie den folgenden Button oder doppelklicken Sie auf " -"die Liste um die Aktion durchzuführen." +msgstr "Wählen Sie Einträge aus, die hinzugefügt werden sollen. Mit der Steuerungstaste können mehrere Einträge ausgewählt werden. Wenn die Auswahl vollständig ist, klicken Sie den folgenden Button oder doppelklicken Sie auf die Liste um die Aktion durchzuführen." #: generics.py:287 msgid "Add all" @@ -187,17 +178,13 @@ msgstr "Werkzeuge" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "" -"Diese Funktion ist veraltet und wird in einer zukünftigen Version entfernt." +msgstr "Diese Funktion ist veraltet und wird in einer zukünftigen Version entfernt." #: literals.py:16 msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Sie benutzen SQLite als Datenbank-Backend. SQLite sollte nur für " -"Entwicklungs- und Testzwecke verwendet werden, jedoch nicht in " -"Produktivumgebungen." +msgstr "Sie benutzen SQLite als Datenbank-Backend. SQLite sollte nur für Entwicklungs- und Testzwecke verwendet werden, jedoch nicht in Produktivumgebungen." #: literals.py:34 msgid "Days" @@ -214,33 +201,25 @@ msgstr "Minuten" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "" -"Begrenzt die extrahierten Daten auf die spezifizierten app_label oder " -"app_label.ModelName." +msgstr "Begrenzt die extrahierten Daten auf die spezifizierten app_label oder app_label.ModelName." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"Die Datenbank von welcher die Daten exportiert werden. Falls nicht " -"ausgefüllt wird \"default\" als Datenbankname verwendet." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "Die Datenbank von welcher die Daten exportiert werden. Falls nicht ausgefüllt wird \"default\" als Datenbankname verwendet." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"Die Datenbank in welche die Daten importiert werden. Falls nicht ausgefüllt " -"wird \"default\" als Datenbankname verwendet." +msgstr "Die Datenbank in welche die Daten importiert werden. Falls nicht ausgefüllt wird \"default\" als Datenbankname verwendet." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" -"Erzwingt die Umstellung der Datenbank selbst wenn die Zieldatenbank nicht " -"leer ist." +msgstr "Erzwingt die Umstellung der Datenbank selbst wenn die Zieldatenbank nicht leer ist." #: menus.py:10 msgid "System" @@ -345,55 +324,31 @@ msgstr "Protokollierung für alle Apps automatisch einschalten." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung " -"auf einen Datenbankcommit warten." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." #: settings.py:33 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Eine Liste aller Applikationen (String), welche für diese Django-" -"Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter " -"Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem " -"Anwendungspaket sein." #: settings.py:43 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Eine Liste aller Applikationen (String), welche für diese Django-" -"Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter " -"Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem " -"Anwendungspaket sein." #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." -msgstr "" -"Name des Formulars, das mit dem Markenanker im Hauptmenü verknüpft ist. Zu " -"diesem Formular werden die Benutzer auch nach dem Anmeldevorgang " -"weitergeleitet." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." +msgstr "Name des Formulars, das mit dem Markenanker im Hauptmenü verknüpft ist. Zu diesem Formular werden die Benutzer auch nach dem Anmeldevorgang weitergeleitet." #: settings.py:61 msgid "The number objects that will be displayed per page." @@ -401,15 +356,11 @@ msgstr "" #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Fehlerprotokollierung außerhalb des regulären Systemfehlerprotokolls " -"aktivieren." +msgstr "Fehlerprotokollierung außerhalb des regulären Systemfehlerprotokolls aktivieren." #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" -"Der Pfad zur Protokolldatei, in der Fehler im Produktivbetrieb aufgezeichnet " -"werden." +msgstr "Der Pfad zur Protokolldatei, in der Fehler im Produktivbetrieb aufgezeichnet werden." #: settings.py:82 msgid "Name to be displayed in the main menu." @@ -430,53 +381,33 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"Eine Liste aller Hosts bzw. Domainnamen, die mit dieser Seite funktionieren. " -"Sie dient als Sicherheitsmaßnahme um Angriffe über HTTP Hostheader zu " -"verhindern, welche selbst unter vermeintlich sicheren " -"Webserverkonfigurationen möglich sein können. Werte in dieser Liste können " -"voll qualifizierte Domainnamen enthalten, die exakt gegen den Hostheader des " -"Requests geprüft werden (ohne Prüfung von Groß-/Kleinschreibung und Port). " -"Werte, die mit einem Punkt beginnen werden wie eine Subdomain Wildcard " -"behandelt, so steht z.B. '.example.com' für 'example.com' oder 'www.example." -"com' oder jede andere Subdomain von example.com. '*' steht als Wert für " -"alles Mögliche, in diesem Fall sind Sie selbst verantwortlich für eine " -"Validierung des Hostheaders (z.B. mittels einer Middleware. Sollte das der " -"Fall sein, muss diese in MIDDLEWARE zuerst gelistet werden)." +msgstr "Eine Liste aller Hosts bzw. Domainnamen, die mit dieser Seite funktionieren. Sie dient als Sicherheitsmaßnahme um Angriffe über HTTP Hostheader zu verhindern, welche selbst unter vermeintlich sicheren Webserverkonfigurationen möglich sein können. Werte in dieser Liste können voll qualifizierte Domainnamen enthalten, die exakt gegen den Hostheader des Requests geprüft werden (ohne Prüfung von Groß-/Kleinschreibung und Port). Werte, die mit einem Punkt beginnen werden wie eine Subdomain Wildcard behandelt, so steht z.B. '.example.com' für 'example.com' oder 'www.example.com' oder jede andere Subdomain von example.com. '*' steht als Wert für alles Mögliche, in diesem Fall sind Sie selbst verantwortlich für eine Validierung des Hostheaders (z.B. mittels einer Middleware. Sollte das der Fall sein, muss diese in MIDDLEWARE zuerst gelistet werden)." #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." -msgstr "" -"Falls \"Wahr\" (true), wird eine Umleitung (HTTP Redirect) auf die " -"bereitgestellte URL mit angehängtem Slash erzeugt, sofern diese nicht " -"bereits mit einem Slash endet oder einem Muster aus der URLconf entspricht. " -"Bitte beachten Sie, dass die Umleitung den Verlust von Daten aus den " -"übermittelten POST-Requests verursachen kann. Die Einstellung APPEND_SLASH " -"wird nur benutzt, wenn CommonMiddleware installiert ist (siehe Middleware). " -"Siehe auch PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." +msgstr "Falls \"Wahr\" (true), wird eine Umleitung (HTTP Redirect) auf die bereitgestellte URL mit angehängtem Slash erzeugt, sofern diese nicht bereits mit einem Slash endet oder einem Muster aus der URLconf entspricht. Bitte beachten Sie, dass die Umleitung den Verlust von Daten aus den übermittelten POST-Requests verursachen kann. Die Einstellung APPEND_SLASH wird nur benutzt, wenn CommonMiddleware installiert ist (siehe Middleware). Siehe auch PREPEND_WWW." #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "" -"Liste der Validatoren, die für die Überprüfung der Passwortstärke von " -"Benutzerpasswörtern verwendet werden." +msgstr "Liste der Validatoren, die für die Überprüfung der Passwortstärke von Benutzerpasswörtern verwendet werden." #: settings.py:146 msgid "" @@ -485,13 +416,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"Ein Dictionary welches eine Liste aller Einstellungen für die mit Django " -"verwendeten Datenbanken enthält. Dieses Dictionary enthält Aliase zu einem " -"weiteren Dictionaries, welche wiederum die Einstellungen für weitere " -"Datenbanken enthalten. Die DATABASES Einstellung muss eine Standarddatenbank " -"enthalten, es können aber auch beliebige weitere Datenbanken angegeben " -"werden." +msgstr "Ein Dictionary welches eine Liste aller Einstellungen für die mit Django verwendeten Datenbanken enthält. Dieses Dictionary enthält Aliase zu einem weiteren Dictionaries, welche wiederum die Einstellungen für weitere Datenbanken enthalten. Die DATABASES Einstellung muss eine Standarddatenbank enthalten, es können aber auch beliebige weitere Datenbanken angegeben werden." #: settings.py:158 msgid "" @@ -499,39 +424,21 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Requestbodys " -"in Bytes, für Werte darüber wird die Aktion 'SuspiciousOperation - " -"RequestDataTooBig' ausgelöst. Diese Prüfung wird immer ausgeführt, wenn auf " -"'request.body' oder 'request.POST' zugegriffen wird. Dabei wird die " -"Gesamtgröße des Requests berechnet ohne Einbezug der Größe einer eventuell " -"hochzuladenen Datei. Die Einstellung 'None' deaktiviert diese Prüfung. " -"Anwendungen, welche erwartungsgemäß umfangreichere Formularanfragen " -"erhalten, sollten diese Einstellung entsprechend anpassen. Der Umfang an " -"Requestdaten korreliert mit dem zur Verarbeitung benötigten Speicher und dem " -"benötigten Speicher zur Befüllung der GET und POST Dictionaries. Sehr " -"umfangreiche Requests könnten ungeprüft einem Denial-of-Service Angriff " -"dienen. Da Webserver für gewöhnlich eine solch gründliche Prüfung der " -"Anfragen nicht durchführen, ist eine vergleichbare Prüfung auf Dieser Ebene " -"nicht möglich. Siehe auch: FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Requestbodys in Bytes, für Werte darüber wird die Aktion 'SuspiciousOperation - RequestDataTooBig' ausgelöst. Diese Prüfung wird immer ausgeführt, wenn auf 'request.body' oder 'request.POST' zugegriffen wird. Dabei wird die Gesamtgröße des Requests berechnet ohne Einbezug der Größe einer eventuell hochzuladenen Datei. Die Einstellung 'None' deaktiviert diese Prüfung. Anwendungen, welche erwartungsgemäß umfangreichere Formularanfragen erhalten, sollten diese Einstellung entsprechend anpassen. Der Umfang an Requestdaten korreliert mit dem zur Verarbeitung benötigten Speicher und dem benötigten Speicher zur Befüllung der GET und POST Dictionaries. Sehr umfangreiche Requests könnten ungeprüft einem Denial-of-Service Angriff dienen. Da Webserver für gewöhnlich eine solch gründliche Prüfung der Anfragen nicht durchführen, ist eine vergleichbare Prüfung auf Dieser Ebene nicht möglich. Siehe auch: FILE_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "" -"Standard: 'webmaster@localhost' Standard-E-Mailadresse, die für verschiedene " -"automatische Korrespondenz durch die Sitemanager verwendet wird. Dies gilt " -"nicht für Fehlerbenachrichtigungen an ADMINS and MANAGERS, für diese siehe " -"SERVER_EMAIL." +msgstr "Standard: 'webmaster@localhost' Standard-E-Mailadresse, die für verschiedene automatische Korrespondenz durch die Sitemanager verwendet wird. Dies gilt nicht für Fehlerbenachrichtigungen an ADMINS and MANAGERS, für diese siehe SERVER_EMAIL." #: settings.py:188 msgid "" @@ -539,20 +446,13 @@ msgid "" "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "" -"Standard: [] (Leere Liste). Eine Liste von kompilierten regulären Ausdrücken " -"(RegEx) welche diejenigen User-Agent Strings repräsentieren die systemweit " -"keine einzige Seite aufrufen dürfen. Nutzen Sie diese gegen unerwünschte " -"Robots oder Crawler. Wird nur genutzt wenn CommonMiddleware installiert ist " -"(siehe: Middleware)." +msgstr "Standard: [] (Leere Liste). Eine Liste von kompilierten regulären Ausdrücken (RegEx) welche diejenigen User-Agent Strings repräsentieren die systemweit keine einzige Seite aufrufen dürfen. Nutzen Sie diese gegen unerwünschte Robots oder Crawler. Wird nur genutzt wenn CommonMiddleware installiert ist (siehe: Middleware)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "" -"Standard: 'django.core.mail.backends.smtp.EmailBackend'. Das Backend für den " -"E-Mailversand." +msgstr "Standard: 'django.core.mail.backends.smtp.EmailBackend'. Das Backend für den E-Mailversand." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." @@ -564,48 +464,31 @@ msgid "" "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "" -"Standard: \" (Leere Zeichenfolge). Das Passwort zur Nutzung des SMTP-" -"Servers, der in EMAIL_HOST definiert wurde. Diese Einstellung wird zusammen " -"mit der für EMAIL_HOST_USER für die Authentifizierung am SMTP-Server " -"genutzt. Wird eine der beiden leer gelassen, benutzt Django keine " -"Authentifizierung." +msgstr "Standard: \" (Leere Zeichenfolge). Das Passwort zur Nutzung des SMTP-Servers, der in EMAIL_HOST definiert wurde. Diese Einstellung wird zusammen mit der für EMAIL_HOST_USER für die Authentifizierung am SMTP-Server genutzt. Wird eine der beiden leer gelassen, benutzt Django keine Authentifizierung." #: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "" -"Standard: \" (Leere Zeichenfolge). Der Benutzername zur Nutzung des SMTP-" -"Servers, der in EMAIL_HOST definiert wurde. Wird die Einstellung leer " -"gelassen, benutzt Django keine Authentifizierung." +msgstr "Standard: \" (Leere Zeichenfolge). Der Benutzername zur Nutzung des SMTP-Servers, der in EMAIL_HOST definiert wurde. Wird die Einstellung leer gelassen, benutzt Django keine Authentifizierung." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "" -"Standard: 25. Der für den in EMAIL_HOST definierten SMTP-Server zu " -"benutzende Port." +msgstr "Standard: 25. Der für den in EMAIL_HOST definierten SMTP-Server zu benutzende Port." #: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "" -"Standard: None (Keiner). Stellt einen Timeout (in Sekunden) für blockierende " -"Operationen wie z.B. Verbindungsversuche ein." +msgstr "Standard: None (Keiner). Stellt einen Timeout (in Sekunden) für blockierende Operationen wie z.B. Verbindungsversuche ein." #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "" -"Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim " -"Verbinden zum SMTP-Server aufgebaut werden soll. Wird für explizite TLS-" -"Verbindungen, üblicherweise über den Port 587, verwendet. Sollte es zu " -"Verbindungsfehlern kommen, prüfen Sie bitte die implizite TLS Einstellung " -"EMAIL_USE_SSL." +msgstr "Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim Verbinden zum SMTP-Server aufgebaut werden soll. Wird für explizite TLS-Verbindungen, üblicherweise über den Port 587, verwendet. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die implizite TLS Einstellung EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -615,38 +498,23 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "" -"Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim " -"Verbinden zum SMTP Server aufgebaut werden soll. Gelegentlich wird diese TLS " -"Verbindung auch als SSL bezeichnet. Die Verbindung nutzt üblicherweise den " -"Port 465. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die " -"explizite TLS Einstellung EMAIL_USE_TLS. Beachten Sie bitte, dass immer nur " -"eine Einstellung für EMAIL_USE_TLS oder EMAIL_USE_SSL genutzt werden kann, " -"es sollte daher immer nur eine Einstellungen auf \"True\" gestellt werden." +msgstr "Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim Verbinden zum SMTP Server aufgebaut werden soll. Gelegentlich wird diese TLS Verbindung auch als SSL bezeichnet. Die Verbindung nutzt üblicherweise den Port 465. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die explizite TLS Einstellung EMAIL_USE_TLS. Beachten Sie bitte, dass immer nur eine Einstellung für EMAIL_USE_TLS oder EMAIL_USE_SSL genutzt werden kann, es sollte daher immer nur eine Einstellungen auf \"True\" gestellt werden." #: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Uploads in " -"Bytes, bevor dieser zum Dateisystem gestreamt wird. Mehr Details im Kapitel " -"zum Dateimanagement. Siehe auch: DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Uploads in Bytes, bevor dieser zum Dateisystem gestreamt wird. Mehr Details im Kapitel zum Dateimanagement. Siehe auch: DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "" -"Standard: '/accounts/login/' Die URL zur Weiterleitung zum Login, " -"insbesondere wenn z.B. der login_required() Decorator benutzt wird. Diese " -"Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn z.B. mehrfach " -"gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z." -"B. in 'Einstellungen' und URLconf)." +msgstr "Standard: '/accounts/login/' Die URL zur Weiterleitung zum Login, insbesondere wenn z.B. der login_required() Decorator benutzt wird. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn z.B. mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z.B. in 'Einstellungen' und URLconf)." #: settings.py:293 msgid "" @@ -655,29 +523,17 @@ msgid "" "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "" -"Standard: '/accounts/profile/' Die URL zur Weiterleitung von Requests nach " -"erfolgreichem Login, insbesondere wenn die Ansicht contrib.auth.login keinen " -"next Parameter übermittelt bekommt. Wird z.B. vom login_required() Decorator " -"benutzt. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn " -"mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden " -"sollen (z.B. in 'Einstellungen' und URLconf)." +msgstr "Standard: '/accounts/profile/' Die URL zur Weiterleitung von Requests nach erfolgreichem Login, insbesondere wenn die Ansicht contrib.auth.login keinen next Parameter übermittelt bekommt. Wird z.B. vom login_required() Decorator benutzt. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z.B. in 'Einstellungen' und URLconf)." #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "" -"Standard: None. Die URL zu der Benutzer nach der Nutzung von LogoutView " -"weitergeleitet werden (wenn das Formular kein Argument für nächste Seite " -"enthält). Mit None wird keine Weiterleitung durchgeführt und das Logout-" -"Formular dargestellt. Diese Einstellung akzeptiert auch 'named URL " -"patterns', die benutzt werden können um die URL nur an einer Stelle zu " -"definieren (anstatt Einstellungen und URLconf)." +msgstr "Standard: None. Die URL zu der Benutzer nach der Nutzung von LogoutView weitergeleitet werden (wenn das Formular kein Argument für nächste Seite enthält). Mit None wird keine Weiterleitung durchgeführt und das Logout-Formular dargestellt. Diese Einstellung akzeptiert auch 'named URL patterns', die benutzt werden können um die URL nur an einer Stelle zu definieren (anstatt Einstellungen und URLconf)." #: settings.py:318 msgid "" @@ -685,12 +541,7 @@ msgid "" "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "" -"Eine Liste von IP-Adressen (als Zeichenketten). Ermöglicht dem debug() " -"context processor einige Variablen zum Vorlagenkontext hinzuzufügen. Kann " -"admindocs bookmarklets benutzen, auch wenn nicht als Benutzer angemeldet. " -"Werden in AdminEmailHandler E-Mails als \"internal\" (im Gegensatz zu " -"\"EXTERNAL\") markiert." +msgstr "Eine Liste von IP-Adressen (als Zeichenketten). Ermöglicht dem debug() context processor einige Variablen zum Vorlagenkontext hinzuzufügen. Kann admindocs bookmarklets benutzen, auch wenn nicht als Benutzer angemeldet. Werden in AdminEmailHandler E-Mails als \"internal\" (im Gegensatz zu \"EXTERNAL\") markiert." #: settings.py:329 msgid "" @@ -699,13 +550,7 @@ msgid "" "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "" -"Liste von verfügbaren Sprachen. Die Liste setzt sich zusammen aus Zweier-" -"Tupeln mit dem Format (Sprachencode, Sprachenname), z.B. ('ja', 'Japanese'). " -"Diese Eintellung bestimmt die für die Auswahl verfügbaren Sprachen. " -"Üblicherweise sollte die Einstellung des Standardwerts ausreichen. Benutzen " -"Sie diese Einstellung nur, wenn Sie die Auswahl auf eine Untermenge der von " -"Django zur Verfügung gestellten Sprachen einstellen wollen." +msgstr "Liste von verfügbaren Sprachen. Die Liste setzt sich zusammen aus Zweier-Tupeln mit dem Format (Sprachencode, Sprachenname), z.B. ('ja', 'Japanese'). Diese Eintellung bestimmt die für die Auswahl verfügbaren Sprachen. Üblicherweise sollte die Einstellung des Standardwerts ausreichen. Benutzen Sie diese Einstellung nur, wenn Sie die Auswahl auf eine Untermenge der von Django zur Verfügung gestellten Sprachen einstellen wollen." #: settings.py:342 msgid "" @@ -717,16 +562,7 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "" -"Eine Zeichenkette, die den Sprachencode für diese Installation festlegt. Das " -"Format sollte das Standardsprachenformat für IDs sein, z.B. \"en-us\" für U." -"S. English. Die Einstellung dient zwei Zwecken: Wenn die Lokalisierungs-" -"Middleware nicht in Gebrauch ist, bestimmt sie die Übersetzung für alle " -"Benutzer. Wenn die Lokalisierungs-Middleware in Gebrauch ist, bestimmt sie " -"die Rückfallsprache, wenn die bevorzugte Sprache des Benutzers nicht " -"ermittelt werden kann oder von der Website nicht unterstützt wird. Außerdem " -"dient sie als Rückfallübersetzung, wenn eine Übersetzung in der vom Benutzer " -"eingestellten Sprache nicht existiert." +msgstr "Eine Zeichenkette, die den Sprachencode für diese Installation festlegt. Das Format sollte das Standardsprachenformat für IDs sein, z.B. \"en-us\" für U.S. English. Die Einstellung dient zwei Zwecken: Wenn die Lokalisierungs-Middleware nicht in Gebrauch ist, bestimmt sie die Übersetzung für alle Benutzer. Wenn die Lokalisierungs-Middleware in Gebrauch ist, bestimmt sie die Rückfallsprache, wenn die bevorzugte Sprache des Benutzers nicht ermittelt werden kann oder von der Website nicht unterstützt wird. Außerdem dient sie als Rückfallübersetzung, wenn eine Übersetzung in der vom Benutzer eingestellten Sprache nicht existiert." #: settings.py:357 msgid "" @@ -740,23 +576,16 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." -msgstr "" -"Das Backend für die Speicherung von statischen Dateien mit dem collectstatic " -"Management-Kommando. Eine betriebsfertige Instanz des Speicherungsbackends " -"kann in django.contrib.staticfiles.storage.staticfiles_storage gefunden " -"werden." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." +msgstr "Das Backend für die Speicherung von statischen Dateien mit dem collectstatic Management-Kommando. Eine betriebsfertige Instanz des Speicherungsbackends kann in django.contrib.staticfiles.storage.staticfiles_storage gefunden werden." #: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "" -"Eine Zeichenkette für die Zeitzone dieser Installation. Die muss nicht " -"unbedingt die Zeitzone des Servers sein. Zum Beispiel kann ein Server " -"mehrere Django-Sites bedienen, jede mit einer eigenen Zeitzoneneinstellung." +msgstr "Eine Zeichenkette für die Zeitzone dieser Installation. Die muss nicht unbedingt die Zeitzone des Servers sein. Zum Beispiel kann ein Server mehrere Django-Sites bedienen, jede mit einer eigenen Zeitzoneneinstellung." #: settings.py:388 msgid "" @@ -764,11 +593,7 @@ msgid "" "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "" -"Der volle Pythonpfad für die WSGI application, das Django's built-in servers " -"(e.g. runserver) benutzen wird. Das django-admin startproject Management-" -"Kommando erstellt eine einfache wsgi.py Datei mit einem application " -"callable, auf das diese Einstellung zeigt." +msgstr "Der volle Pythonpfad für die WSGI application, das Django's built-in servers (e.g. runserver) benutzen wird. Das django-admin startproject Management-Kommando erstellt eine einfache wsgi.py Datei mit einem application callable, auf das diese Einstellung zeigt." #: settings.py:396 msgid "Celery" @@ -776,25 +601,19 @@ msgstr "Celery" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "" -"Standard: \"amqp://\". Die Standard Broker-URL. Muss in folgender Form " -"angegeben werden: transport://userid:password@hostname:port/virtual_host\n" -"Nur das Schema (transport://) muss angegeben werden, der Rest ist optional " -"und verweist auf die Standardwerte." +msgstr "Standard: \"amqp://\". Die Standard Broker-URL. Muss in folgender Form angegeben werden: transport://userid:password@hostname:port/virtual_host\nNur das Schema (transport://) muss angegeben werden, der Rest ist optional und verweist auf die Standardwerte." #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" -msgstr "" -"Standard: Es ist standardmäßig kein Ergebnisbackend aktiviert. Das Backend " -"speichert die Aufgabenergebnisse (tombstones). Siehe: http://docs." -"celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" +msgstr "Standard: Es ist standardmäßig kein Ergebnisbackend aktiviert. Das Backend speichert die Aufgabenergebnisse (tombstones). Siehe: http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -827,9 +646,7 @@ msgstr "Erstellen" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Bitte geben Sie einen gültigen 'Internen Namen' an, bestehend aus " -"Buchstaben, Zahlen und einem Unterstrich." +msgstr "Bitte geben Sie einen gültigen 'Internen Namen' an, bestehend aus Buchstaben, Zahlen und einem Unterstrich." #: views.py:31 msgid "About" @@ -873,9 +690,7 @@ msgstr "Keine Einstellungsoptionen verfügbar." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "" -"Falls keine Ergebnisse angezeigt werden besitzen Sie nicht die " -"erforderlichen Rechte für administrative Aufgaben." +msgstr "Falls keine Ergebnisse angezeigt werden besitzen Sie nicht die erforderlichen Rechte für administrative Aufgaben." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.mo b/mayan/apps/common/locale/el/LC_MESSAGES/django.mo index c1435e294d0969cd1a4378fa5ec65bc71d9a4ed6..4f87852ea38bb27cae3e887b21dad759f7baad87 100644 GIT binary patch delta 21 ccmeya`CW6v8cq%)O9cZnD#N~q-}1#hXp%(0p_Yfdd! zPIFDMRgUjXw#1F>{dt~;%`?Bh*K^MA{GR8W^F8OmBi90s zb_Mu$_`>Uk?b>jAG1RFpj-_zi^pr8f#GIp)RQnBD?B%#`W?Zd0JBaUg1$(z z^*B7rEF#G4wSHz3>31l`EHlvj_9GY9Xz&d(>w~``&$2%-1ph^TXAiu3&|vq$;W&i$ zJRE?P7>xCph0C!o?#EGh7$3pYsD5{_AJ4bDTi zB8z3qQNLe>#!Oo<5I4k{wbHbCs96s62iSr+ab~r&x3S#$Jl{e_nEil-I2~h0nw`TM z%wg&Y4F4|m`H5z`xj`ADIz#<(vRMNjNHKev_HNVwUQ9I`$mLG*#A@3cs0p>9CU6q9 zBB#)=k#}*yKl_yrEoBsm4aGz(#Y~)y>##p|B9pO8s0Z9ZJ)j4bLSKfvGGVCu^uxIr zi~4>gX5-on)?W=ry^d|D0kxx2@v&F`0$B{Zh^_c1j>eWuH#Kjea()aoflH_*zJ;u| zmGY%h)qomk6QQ z$(Cao9>hw#fm-rxI%yyiQT+?~7{+~?aT4`cbKMp3pXXu#4Hr=(y@^rSjhpyEXr9?d z>O00WKOAu87kP@Am= z)qf9apl>?ufAr08b2%7!HCR0M!3j74r(g)Spl-O$a~G=L>!{ox!h9xj z0+aDN8|eh?A+tD|)Z6ibpNqT-v#op)INR(=^kXpXKVvoZ>m>djPMX7>;C+xgm*dCx z84Jv=V(~)K#`h_7)_uYjn_Z#(B^-lI+;kZ22Ws32wxcF|7X8ZgS6nDpKcRN_f2hqB zN?vsA3Q(t^8u`kWB4e;K7>_ZWwR9YZ+8awS1h=6c)aun=!5HfMunv#cl7Al;p--8y zuPhR^gvF>_&+@E7<+cWO<7Q07t#}OI!7*4~$7#VWI0bj(2>cSC#apO;^XuLF?5y{@ zBiu~`8`SpVe7t~qKmun`11ZBuoQIlu9craMM6JxHcpX2-8~E;0w|&nt_cR?uy@=XS zsW^uk*cHFmp~o|#(H&VFw$LF7pTmQg8oWb$x;XdJHSZ;7C3&2)hn`m>&v*Xgp`~B%)Xl0q=b>h2J1QBZpR^BN}pHkG{tvYX4U2560h$2;ZzEftp82iZCAYRpBB%j($VGlL32u>m0 z&R@V3uP#Cey*Dz6t;A>|o0vps59w{GqSc+N=PQpYWrT90qo-V^6BUHY3(lweYTfKz zD=lmT+eFMDGKeIC*Mak2tZmp^$fomdDM6jIc;Yd_@8d&d6rsNZeTXPRuSk_rVj96d zvOpr1P~n~AytXT`j?iY)&VGU@B*KYeB7tDfS~C$$Y$p~GTL_Bg&wrJO#l&P{Hlfyy zL~j|&#ag1iw*jXTd4!JDa6-p+7Li5_B($l^iHA#cZzUydO~cB@rOoLb_rpH&bsUI3 ao*J4{5I=VO#GLGolKk7j9R-C=WB&($UN39_ delta 3260 zcmY+Gd2AI$9LIkxrSy_=lyV6j?m|nYg<7b9a+Fh{Em9FGvVCu9A3XMzcgQ6^1vP*e z(TaFrq8LCEQAuNr#DECO5fVfEgDVJ#8lplZcn~q_=eN5}aMJI7W@cw+=6B4z?l_w_Vb<3S}L-6BVb4?15u5cu;=L5;5?)&o0>_g|tV)p|IZPvrxx<1Sh75oP^zB z-W?(_Slm(MGVkBY70GEQ@^mMWN|B_z*j1z`RpbP`#DJUKMB2l%`68?-7hwnZGvqtD z;kW;Ux`BUTcQ}*>Q^*9E4(GyRSPwJdMpyt_;BeRq(^+3GQDIYZ1?oaKA)6KH;Z2ka z2hhxiI#DIWD4FcHYavdPdZ^!9P_Q@zQ{j@HBG1sZtd~d`?He!w2jlLAtS{U9h>V7} z;3+t&ugD~r!*&nDYFLKp-Hga@w5PF~=a^vJK#|XB9~&gn05=U5*+BnQs2g~UIOS1Y zft%F8%}_nF9jXEEz$A0aUMjltlTc%O2C6Glhlyw!e9Eb$hc0N2^!s<;!RbsHJ~F-BIcYya6+z z#?*no!;`QRF+GC2X45`h#u0>tJa{Gba5{V*J^)Wa_2i&Y-bP9wT`~&xVxA^=5AEdo za?d3PU{^X0!#sEzc7#{qNB+K z*x%;6888HYVf6zk#J>)|XVQ^>FD@j@&3z(|@WIy{fh70B@X5H4_j{&zmV7$Z3&{bf z79NM{!Eay=JO?$DS73KIn7FAyFLubNzW zkh@0uLe1WCh!f-D zBU9lWw5y?7z7VRXK7#6*eegT@CA%xEx336 z6R@oiW%uYNr%KdWq@@~hO}PIbSdg@EGh8pQ z2`C3uq5h~5X)>p)|J4KY&>GZMR#2Ib^vupiPokBmt>}r-Q_#@X0q;e6XWWVOB+W%L z(NNS4=`p<@-CjCN>)EWMX`O?1EY#>&@sQJKtZ>*^Ez3=Q(yW$N9E;RlF(Um}V>9Wa5!ZV>!lZ zZVrb6?&l^DaTbRf6H&hvwqh|;*c`PN+tH|96dYP?B2gx5wgOA7Mq7u+t&rpH@_!SR zw7!tLZ%9UIxfxMWSzg{+Q}I)JhHsS9k~^h)(kxHd#*W1gz3rGLt05E)#jT(fGq$6> zmT#362pwv5Owjg?EiscAWdc^vcCg9Dw3r<=2^!G^Uoo)F!h{pIb*xqCz7AlEt?xY( tTVAcosS5MfwcT6AH#8Kq)K0#_PIei$-My-, 2014 # jmcainzos , 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:55+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -36,8 +35,7 @@ msgstr "Campos disponibles:\n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "" -"Se utiliza para permitir la traducción sin conexión de los textos del código." +msgstr "Se utiliza para permitir la traducción sin conexión de los textos del código." #: dependencies.py:401 msgid "Provides style checking." @@ -64,20 +62,14 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Seleccione las entradas que desea eliminar. Mantén pulsado Control para " -"seleccionar varias entradas. Una vez que se complete la selección, haga clic " -"en el botón de abajo o haga doble clic en la lista para activar la acción." +msgstr "Seleccione las entradas que desea eliminar. Mantén pulsado Control para seleccionar varias entradas. Una vez que se complete la selección, haga clic en el botón de abajo o haga doble clic en la lista para activar la acción." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Seleccione las entradas que se añadirán. Mantén pulsado Control para " -"seleccionar varias entradas. Una vez que se complete la selección, haga clic " -"en el botón de abajo o haga doble clic en la lista para activar la acción." +msgstr "Seleccione las entradas que se añadirán. Mantén pulsado Control para seleccionar varias entradas. Una vez que se complete la selección, haga clic en el botón de abajo o haga doble clic en la lista para activar la acción." #: generics.py:287 msgid "Add all" @@ -181,16 +173,13 @@ msgstr "Herramientas" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "" -"Esta función ha quedado en desuso y se eliminará en una versión futura." +msgstr "Esta función ha quedado en desuso y se eliminará en una versión futura." #: literals.py:16 msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"El backend de su base de datos está configurado para usar SQLite. SQLite " -"solo debe usarse para desarrollo y pruebas, no para producción." +msgstr "El backend de su base de datos está configurado para usar SQLite. SQLite solo debe usarse para desarrollo y pruebas, no para producción." #: literals.py:34 msgid "Days" @@ -207,33 +196,25 @@ msgstr "Minutos" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "" -"Restringe los datos exportados a la app_label o app_label.ModelName " -"especificada." +msgstr "Restringe los datos exportados a la app_label o app_label.ModelName especificada." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"La base de datos desde la que se exportarán los datos. Si se omite, se usará " -"la base de datos denominada \"default\"." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "La base de datos desde la que se exportarán los datos. Si se omite, se usará la base de datos denominada \"default\"." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"La base de datos a la que se importarán los datos. Si se omite, se usará la " -"base de datos denominada \"default\"." +msgstr "La base de datos a la que se importarán los datos. Si se omite, se usará la base de datos denominada \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" -"Forzar la conversión de la base de datos incluso si la base de datos " -"receptora no está vacía." +msgstr "Forzar la conversión de la base de datos incluso si la base de datos receptora no está vacía." #: menus.py:10 msgid "System" @@ -338,55 +319,31 @@ msgstr "Activar bitácoras automáticamente a todas las aplicaciones." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Tiempo para retrasar las tareas de fondo que dependen de la propagación de " -"información en la base de datos." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Tiempo para retrasar las tareas de fondo que dependen de la propagación de información en la base de datos." #: settings.py:33 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Una lista de cadenas que designan todas las aplicaciones que están " -"habilitadas en esta instalación de Django. Cada cadena debe ser una ruta de " -"Python punteada a: una clase de configuración de la aplicación (preferida), " -"o un paquete que contenga una aplicación." #: settings.py:43 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Una lista de cadenas que designan todas las aplicaciones que están " -"habilitadas en esta instalación de Django. Cada cadena debe ser una ruta de " -"Python punteada a: una clase de configuración de la aplicación (preferida), " -"o un paquete que contenga una aplicación." #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." -msgstr "" -"Nombre de la vista adjunta al ancla de la marca en el menú principal. Esta " -"es también la vista a la que los usuarios serán redirigidos después de " -"iniciar sesión." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." +msgstr "Nombre de la vista adjunta al ancla de la marca en el menú principal. Esta es también la vista a la que los usuarios serán redirigidos después de iniciar sesión." #: settings.py:61 msgid "The number objects that will be displayed per page." @@ -394,15 +351,11 @@ msgstr "El número de objetos que se mostrarán por página." #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Habilite el registro de errores fuera de las capacidades de registro de " -"errores del sistema." +msgstr "Habilite el registro de errores fuera de las capacidades de registro de errores del sistema." #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" -"Ruta de acceso al archivo de registro que rastreará errores durante la " -"producción." +msgstr "Ruta de acceso al archivo de registro que rastreará errores durante la producción." #: settings.py:82 msgid "Name to be displayed in the main menu." @@ -414,9 +367,7 @@ msgstr "URL de la instalación o página de inicio del proyecto." #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un soporte de almacenamiento que todos los 'workers' puedan utilizar para " -"compartir archivos." +msgstr "Un soporte de almacenamiento que todos los 'workers' puedan utilizar para compartir archivos." #: settings.py:103 msgid "Django" @@ -425,53 +376,33 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"Una lista de cadenas que representan los nombres de host / dominio que este " -"sitio puede servir. Esta es una medida de seguridad para evitar los ataques " -"de encabezado HTTP Host, que son posibles incluso bajo muchas " -"configuraciones de servidor web aparentemente seguras. Los valores en esta " -"lista pueden ser nombres totalmente calificados (por ejemplo, 'www.ejemplo." -"com'), en cuyo caso se compararán exactamente con el encabezado Host de la " -"solicitud (no distingue entre mayúsculas y minúsculas, sin incluir el " -"puerto). Un valor que comienza con un punto se puede usar como un comodín de " -"subdominio: '.example.com' coincidirá con example.com, www.example.com y " -"cualquier otro subdominio de example.com. Un valor de '*' coincidirá con " -"cualquier cosa; en este caso, usted es responsable de proporcionar su propia " -"validación del encabezado de host (quizás en un middleware, si es así, este " -"middleware debe aparecer primero en MIDDLEWARE)." +msgstr "Una lista de cadenas que representan los nombres de host / dominio que este sitio puede servir. Esta es una medida de seguridad para evitar los ataques de encabezado HTTP Host, que son posibles incluso bajo muchas configuraciones de servidor web aparentemente seguras. Los valores en esta lista pueden ser nombres totalmente calificados (por ejemplo, 'www.ejemplo.com'), en cuyo caso se compararán exactamente con el encabezado Host de la solicitud (no distingue entre mayúsculas y minúsculas, sin incluir el puerto). Un valor que comienza con un punto se puede usar como un comodín de subdominio: '.example.com' coincidirá con example.com, www.example.com y cualquier otro subdominio de example.com. Un valor de '*' coincidirá con cualquier cosa; en este caso, usted es responsable de proporcionar su propia validación del encabezado de host (quizás en un middleware, si es así, este middleware debe aparecer primero en MIDDLEWARE)." #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." -msgstr "" -"Cuando se establece en True, si la URL de solicitud no coincide con ninguno " -"de los patrones en el URLconf y no termina en una barra inclinada, se emite " -"un redireccionamiento HTTP a la misma URL con una barra inclinada. Tenga en " -"cuenta que la redirección puede hacer que se pierdan los datos enviados en " -"una solicitud POST. La configuración APPEND_SLASH solo se usa si está " -"instalado CommonMiddleware (ver Middleware). Ver también PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." +msgstr "Cuando se establece en True, si la URL de solicitud no coincide con ninguno de los patrones en el URLconf y no termina en una barra inclinada, se emite un redireccionamiento HTTP a la misma URL con una barra inclinada. Tenga en cuenta que la redirección puede hacer que se pierdan los datos enviados en una solicitud POST. La configuración APPEND_SLASH solo se usa si está instalado CommonMiddleware (ver Middleware). Ver también PREPEND_WWW." #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "" -"La lista de validadores que se utilizan para verificar la seguridad de las " -"contraseñas de los usuarios." +msgstr "La lista de validadores que se utilizan para verificar la seguridad de las contraseñas de los usuarios." #: settings.py:146 msgid "" @@ -480,13 +411,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"Un diccionario que contiene la configuración de todas las bases de datos que " -"se utilizarán con Django. Es un diccionario anidado cuyos contenidos asignan " -"un alias de base de datos a un diccionario que contiene las opciones para " -"una base de datos individual. La configuración DATABASES debe configurar una " -"base de datos predeterminada; también se puede especificar cualquier " -"cantidad de bases de datos adicionales." +msgstr "Un diccionario que contiene la configuración de todas las bases de datos que se utilizarán con Django. Es un diccionario anidado cuyos contenidos asignan un alias de base de datos a un diccionario que contiene las opciones para una base de datos individual. La configuración DATABASES debe configurar una base de datos predeterminada; también se puede especificar cualquier cantidad de bases de datos adicionales." #: settings.py:158 msgid "" @@ -494,39 +419,21 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo en bytes " -"que puede ser un cuerpo de solicitud antes de que se genere una Operación " -"Sospechosa (RequestDataTooBig). La comprobación se realiza al acceder a " -"request.body o request.POST y se calcula con respecto al tamaño total de la " -"solicitud, excluyendo cualquier archivo de carga de datos. Puede configurar " -"esto en Ninguno para desactivar la verificación. Las aplicaciones que se " -"espera que reciban publicaciones de forma inusualmente grande deben ajustar " -"esta configuración. La cantidad de datos de solicitud se correlaciona con la " -"cantidad de memoria necesaria para procesar la solicitud y llenar los " -"diccionarios GET y POST. Las solicitudes grandes podrían usarse como un " -"vector de ataque de denegación de servicio si no se seleccionan. Dado que " -"los servidores web normalmente no realizan una inspección profunda de " -"solicitudes, no es posible realizar una comprobación similar en ese nivel. " -"Ver también FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo en bytes que puede ser un cuerpo de solicitud antes de que se genere una Operación Sospechosa (RequestDataTooBig). La comprobación se realiza al acceder a request.body o request.POST y se calcula con respecto al tamaño total de la solicitud, excluyendo cualquier archivo de carga de datos. Puede configurar esto en Ninguno para desactivar la verificación. Las aplicaciones que se espera que reciban publicaciones de forma inusualmente grande deben ajustar esta configuración. La cantidad de datos de solicitud se correlaciona con la cantidad de memoria necesaria para procesar la solicitud y llenar los diccionarios GET y POST. Las solicitudes grandes podrían usarse como un vector de ataque de denegación de servicio si no se seleccionan. Dado que los servidores web normalmente no realizan una inspección profunda de solicitudes, no es posible realizar una comprobación similar en ese nivel. Ver también FILE_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "" -"Predeterminado:'webmaster@localhost' Dirección de correo electrónico " -"predeterminada que se usa para la correspondencia automatizada del " -"administrador(es) del sitio. Esto no incluye los mensajes de error enviados " -"a ADMINS y MANAGERS; para eso, vea SERVER_EMAIL." +msgstr "Predeterminado:'webmaster@localhost' Dirección de correo electrónico predeterminada que se usa para la correspondencia automatizada del administrador(es) del sitio. Esto no incluye los mensajes de error enviados a ADMINS y MANAGERS; para eso, vea SERVER_EMAIL." #: settings.py:188 msgid "" @@ -534,25 +441,17 @@ msgid "" "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "" -"Valor predeterminado: [] (lista vacía). Lista de objetos de expresiones " -"regulares compilados que representan cadenas de User-Agent que no pueden " -"visitar ninguna página, en todo el sistema. Úselo para robots / rastreadores " -"malos. Esto solo se usa si CommonMiddleware está instalado (ver Middleware)." +msgstr "Valor predeterminado: [] (lista vacía). Lista de objetos de expresiones regulares compilados que representan cadenas de User-Agent que no pueden visitar ninguna página, en todo el sistema. Úselo para robots / rastreadores malos. Esto solo se usa si CommonMiddleware está instalado (ver Middleware)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "" -"Valor predeterminado: 'django.core.mail.backends.smtp.EmailBackend'. El " -"backend para usar para enviar correos electrónicos." +msgstr "Valor predeterminado: 'django.core.mail.backends.smtp.EmailBackend'. El backend para usar para enviar correos electrónicos." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." -msgstr "" -"Valor predeterminado: 'localhost'. El host que se usará para enviar correos " -"electrónicos." +msgstr "Valor predeterminado: 'localhost'. El host que se usará para enviar correos electrónicos." #: settings.py:214 msgid "" @@ -560,46 +459,31 @@ msgid "" "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "" -"Valor predeterminado: '' (cadena vacía). Contraseña para usar para el " -"servidor SMTP definido en EMAIL_HOST. Esta configuración se usa junto con " -"EMAIL_HOST_USER al autenticarse en el servidor SMTP. Si cualquiera de estas " -"configuraciones está vacía, Django no intentará la autenticación." +msgstr "Valor predeterminado: '' (cadena vacía). Contraseña para usar para el servidor SMTP definido en EMAIL_HOST. Esta configuración se usa junto con EMAIL_HOST_USER al autenticarse en el servidor SMTP. Si cualquiera de estas configuraciones está vacía, Django no intentará la autenticación." #: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "" -"Valor predeterminado: '' (cadena vacía). Nombre de usuario a usar para el " -"servidor SMTP definido en EMAIL_HOST. Si está vacío, Django no intentará la " -"autenticación." +msgstr "Valor predeterminado: '' (cadena vacía). Nombre de usuario a usar para el servidor SMTP definido en EMAIL_HOST. Si está vacío, Django no intentará la autenticación." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "" -"Valor predeterminado: 25. Puerto para usar para el servidor SMTP definido en " -"EMAIL_HOST." +msgstr "Valor predeterminado: 25. Puerto para usar para el servidor SMTP definido en EMAIL_HOST." #: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "" -"Predeterminado: ninguno Especifica un tiempo de espera en segundos para " -"operaciones de bloqueo como el intento de conexión." +msgstr "Predeterminado: ninguno Especifica un tiempo de espera en segundos para operaciones de bloqueo como el intento de conexión." #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "" -"Predeterminado: Falso. Si se debe usar una conexión TLS (segura) cuando se " -"habla con el servidor SMTP. Esto se usa para conexiones explícitas de TLS, " -"generalmente en el puerto 587. Si experimenta conexiones suspendidas, " -"consulte la configuración de TLS implícita EMAIL_USE_SSL." +msgstr "Predeterminado: Falso. Si se debe usar una conexión TLS (segura) cuando se habla con el servidor SMTP. Esto se usa para conexiones explícitas de TLS, generalmente en el puerto 587. Si experimenta conexiones suspendidas, consulte la configuración de TLS implícita EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -609,40 +493,23 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "" -"Predeterminado: Falso. Si se debe usar una conexión TLS (segura) implícita " -"al hablar con el servidor SMTP. En la mayoría de la documentación de correo " -"electrónico, este tipo de conexión TLS se conoce como SSL. Generalmente se " -"usa en el puerto 465. Si tiene problemas, consulte la configuración de TLS " -"explícita EMAIL_USE_TLS. Tenga en cuenta que EMAIL_USE_TLS / EMAIL_USE_SSL " -"son mutuamente excluyentes, por lo que solo debe establecer una de esas " -"configuraciones en True." +msgstr "Predeterminado: Falso. Si se debe usar una conexión TLS (segura) implícita al hablar con el servidor SMTP. En la mayoría de la documentación de correo electrónico, este tipo de conexión TLS se conoce como SSL. Generalmente se usa en el puerto 465. Si tiene problemas, consulte la configuración de TLS explícita EMAIL_USE_TLS. Tenga en cuenta que EMAIL_USE_TLS / EMAIL_USE_SSL son mutuamente excluyentes, por lo que solo debe establecer una de esas configuraciones en True." #: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo (en " -"bytes) que una carga será antes de que se transmita al sistema de archivos. " -"Consulte Administración de archivos para más detalles. Ver también " -"DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo (en bytes) que una carga será antes de que se transmita al sistema de archivos. Consulte Administración de archivos para más detalles. Ver también DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "" -"Valor predeterminado: '/ accounts / login /' La URL donde las solicitudes se " -"redireccionan para iniciar sesión, especialmente cuando se utiliza el " -"decodificador login_required (). Esta configuración también acepta patrones " -"de URL nombrados que se pueden usar para reducir la duplicación de " -"configuración, ya que no tiene que definir la URL en dos lugares " -"(configuración y URLconf)." +msgstr "Valor predeterminado: '/ accounts / login /' La URL donde las solicitudes se redireccionan para iniciar sesión, especialmente cuando se utiliza el decodificador login_required (). Esta configuración también acepta patrones de URL nombrados que se pueden usar para reducir la duplicación de configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." #: settings.py:293 msgid "" @@ -651,31 +518,17 @@ msgid "" "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "" -"Valor predeterminado: '/ accounts / profile /' La URL donde las solicitudes " -"se redirigen después del inicio de sesión cuando la vista contrib.auth.login " -"no obtiene el siguiente parámetro. Esto es usado por el decorador " -"login_required (), por ejemplo. Esta configuración también acepta patrones " -"de URL nombrados que se pueden usar para reducir la duplicación de " -"configuración, ya que no tiene que definir la URL en dos lugares " -"(configuración y URLconf)." +msgstr "Valor predeterminado: '/ accounts / profile /' La URL donde las solicitudes se redirigen después del inicio de sesión cuando la vista contrib.auth.login no obtiene el siguiente parámetro. Esto es usado por el decorador login_required (), por ejemplo. Esta configuración también acepta patrones de URL nombrados que se pueden usar para reducir la duplicación de configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "" -"Predeterminado: Ninguno. La URL donde se redirigen las solicitudes después " -"de que un usuario cierre sesión usando LogoutView (si la vista no obtiene un " -"argumento next_page). Si Ninguno, no se realizará una redirección y se " -"procesará la vista de cierre de sesión. Esta configuración también acepta " -"patrones de URL con nombre que se pueden usar para reducir la duplicación de " -"la configuración, ya que no tiene que definir la URL en dos lugares " -"(configuración y URLconf)." +msgstr "Predeterminado: Ninguno. La URL donde se redirigen las solicitudes después de que un usuario cierre sesión usando LogoutView (si la vista no obtiene un argumento next_page). Si Ninguno, no se realizará una redirección y se procesará la vista de cierre de sesión. Esta configuración también acepta patrones de URL con nombre que se pueden usar para reducir la duplicación de la configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." #: settings.py:318 msgid "" @@ -683,12 +536,7 @@ msgid "" "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "" -"Una lista de direcciones IP, como cadenas, que: Permiten que el procesador " -"de contexto debug() agregue algunas variables al contexto de la plantilla. " -"Puede usar los marcadores de Admindocs incluso si no ha iniciado sesión como " -"usuario del personal. Están marcados como 'internos' (a diferencia de " -"'EXTERNOS') en los correos electrónicos de AdminEmailHandler." +msgstr "Una lista de direcciones IP, como cadenas, que: Permiten que el procesador de contexto debug() agregue algunas variables al contexto de la plantilla. Puede usar los marcadores de Admindocs incluso si no ha iniciado sesión como usuario del personal. Están marcados como 'internos' (a diferencia de 'EXTERNOS') en los correos electrónicos de AdminEmailHandler." #: settings.py:329 msgid "" @@ -697,14 +545,7 @@ msgid "" "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "" -"Una lista de todos los idiomas disponibles. La lista es una lista de dos " -"tuplas en el formato (código de idioma, nombre del idioma), por ejemplo, " -"('ja', 'Japonés'). Esto especifica qué idiomas están disponibles para la " -"selección de idiomas. Generalmente, el valor predeterminado debería ser " -"suficiente. Solo establezca esta configuración si desea restringir la " -"selección de idioma a un subconjunto de los idiomas proporcionados por " -"Django." +msgstr "Una lista de todos los idiomas disponibles. La lista es una lista de dos tuplas en el formato (código de idioma, nombre del idioma), por ejemplo, ('ja', 'Japonés'). Esto especifica qué idiomas están disponibles para la selección de idiomas. Generalmente, el valor predeterminado debería ser suficiente. Solo establezca esta configuración si desea restringir la selección de idioma a un subconjunto de los idiomas proporcionados por Django." #: settings.py:342 msgid "" @@ -716,16 +557,7 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "" -"Un texto que representa el código de idioma para esta instalación. Esto debe " -"estar en formato de ID de idioma estándar. Por ejemplo, el inglés de EE. UU. " -"Es 'en-us'. Tiene dos propósitos: si el middleware de configuración regional " -"no está en uso, decide qué traducción se sirve a todos los usuarios. Si el " -"middleware de configuración regional está activo, proporciona un idioma " -"alternativo en caso de que el idioma preferido del usuario no se pueda " -"determinar o el sitio web no lo admita. También proporciona la traducción " -"alternativa cuando no existe una traducción para un literal dado para el " -"idioma preferido del usuario." +msgstr "Un texto que representa el código de idioma para esta instalación. Esto debe estar en formato de ID de idioma estándar. Por ejemplo, el inglés de EE. UU. Es 'en-us'. Tiene dos propósitos: si el middleware de configuración regional no está en uso, decide qué traducción se sirve a todos los usuarios. Si el middleware de configuración regional está activo, proporciona un idioma alternativo en caso de que el idioma preferido del usuario no se pueda determinar o el sitio web no lo admita. También proporciona la traducción alternativa cuando no existe una traducción para un literal dado para el idioma preferido del usuario." #: settings.py:357 msgid "" @@ -733,35 +565,22 @@ msgid "" "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "" -"URL a usar cuando se hace referencia a archivos estáticos ubicados en " -"STATIC_ROOT. Ejemplo: \"/static/\" o \"http://static.example.com/\". Si no " -"es None, se usará como ruta base para las definiciones de activos (la clase " -"Media) y la aplicación staticfiles. Debe terminar en una barra inclinada si " -"se establece en un valor no vacío." +msgstr "URL a usar cuando se hace referencia a archivos estáticos ubicados en STATIC_ROOT. Ejemplo: \"/static/\" o \"http://static.example.com/\". Si no es None, se usará como ruta base para las definiciones de activos (la clase Media) y la aplicación staticfiles. Debe terminar en una barra inclinada si se establece en un valor no vacío." #: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." -msgstr "" -"El motor de almacenamiento de archivos que se utiliza al recopilar archivos " -"estáticos con el comando de gestión collectstatic. Puede encontrar una " -"instancia lista para usar del backend de almacenamiento definido en esta " -"configuración en django.contrib.staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." +msgstr "El motor de almacenamiento de archivos que se utiliza al recopilar archivos estáticos con el comando de gestión collectstatic. Puede encontrar una instancia lista para usar del backend de almacenamiento definido en esta configuración en django.contrib.staticfiles.storage.staticfiles_storage." #: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "" -"Una cadena que representa la zona horaria para esta instalación. Tenga en " -"cuenta que esto no es necesariamente la zona horaria del servidor. Por " -"ejemplo, un servidor puede servir múltiples sitios con Django, cada uno con " -"una configuración de zona horaria separada." +msgstr "Una cadena que representa la zona horaria para esta instalación. Tenga en cuenta que esto no es necesariamente la zona horaria del servidor. Por ejemplo, un servidor puede servir múltiples sitios con Django, cada uno con una configuración de zona horaria separada." #: settings.py:388 msgid "" @@ -769,12 +588,7 @@ msgid "" "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "" -"La ruta completa de Python del objeto de aplicación WSGI que usarán los " -"servidores incorporados de Django (por ejemplo, runserver). El comando " -"django-admin startproject management creará un archivo wsgi.py simple con " -"una aplicación invocable en él, y señalará esta configuración a esa " -"aplicación." +msgstr "La ruta completa de Python del objeto de aplicación WSGI que usarán los servidores incorporados de Django (por ejemplo, runserver). El comando django-admin startproject management creará un archivo wsgi.py simple con una aplicación invocable en él, y señalará esta configuración a esa aplicación." #: settings.py:396 msgid "Celery" @@ -782,27 +596,19 @@ msgstr "Celery" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "" -"Valor predeterminado: \"amqp://\". URL del intermediario predeterminado Debe " -"ser una URL en forma de: transporte://usuario:contraseña@servidor:puerto/" -"virtual_host Solo se requiere la parte de esquema (transporte: //), el resto " -"es opcional y se predetermina a los valores predeterminados de transporte " -"específico." +msgstr "Valor predeterminado: \"amqp://\". URL del intermediario predeterminado Debe ser una URL en forma de: transporte://usuario:contraseña@servidor:puerto/virtual_host Solo se requiere la parte de esquema (transporte: //), el resto es opcional y se predetermina a los valores predeterminados de transporte específico." #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" -msgstr "" -"Predeterminado: Sin back-end de resultados habilitado por defecto. El " -"backend utilizado para almacenar resultados de tareas (lápidas). Consulte " +"task results (tombstones). Refer to " "http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" "backend" +msgstr "Predeterminado: Sin back-end de resultados habilitado por defecto. El backend utilizado para almacenar resultados de tareas (lápidas). Consulte http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -835,9 +641,7 @@ msgstr "Crear" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Introduzca un nombre interno válido que conste de letras, números y " -"subrayados." +msgstr "Introduzca un nombre interno válido que conste de letras, números y subrayados." #: views.py:31 msgid "About" @@ -881,9 +685,7 @@ msgstr "No hay opciones de configuración disponibles." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "" -"Ningún resultado aquí significa que no tiene los permisos necesarios para " -"realizar tareas administrativas." +msgstr "Ningún resultado aquí significa que no tiene los permisos necesarios para realizar tareas administrativas." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo index f23852f5b5508c47b5b73cd1e4f7af0acedc6a8c..18db48fa260868a007f4d728bc2c1a61c7f3afff 100644 GIT binary patch delta 21 ccmbQOF, 2017 # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -199,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -318,31 +317,30 @@ msgstr "به طور خودکار ورود به سیستم را به تمام ب #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"زمان برای به تاخیر انداختن وظایف پس زمینه که به پایگاه داده متعهد به انتشار " -"است." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "زمان برای به تاخیر انداختن وظایف پس زمینه که به پایگاه داده متعهد به انتشار است." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -376,14 +374,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -391,10 +389,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -418,10 +417,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -478,8 +477,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -503,8 +502,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -522,8 +521,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -570,8 +569,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -595,17 +594,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo index 2c9bf41705689e6f05f0e0a9da21570556bdad2b..ee48a870dcc361f5808710c47ec0711743af2a52 100644 GIT binary patch delta 21 ccmbPXJHvK^o*;*jrGkN(m673QGr=TY07UHtnE(I) delta 21 ccmbPXJHvK^o*;*zse*yIm5Ie>Gr=TY07UTxo&W#< diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index 5d0d25fbc6..ce398fd7f3 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2016-2018 # Franck Boucher , 2016 @@ -17,14 +17,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -41,8 +40,7 @@ msgstr "Champs disponibles: \n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "" -"Utilisé pour permettre la traduction hors ligne des chaînes de texte du code." +msgstr "Utilisé pour permettre la traduction hors ligne des chaînes de texte du code." #: dependencies.py:401 msgid "Provides style checking." @@ -186,10 +184,7 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Votre serveur de base de données est configuré pour utiliser SQLite. SQLite " -"ne devrait être utilisé qu'à des fins de développement et de test, pas en " -"production." +msgstr "Votre serveur de base de données est configuré pour utiliser SQLite. SQLite ne devrait être utilisé qu'à des fins de développement et de test, pas en production." #: literals.py:34 msgid "Days" @@ -210,8 +205,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -329,31 +324,30 @@ msgstr "Activation automatique de la trace pour toutes les applications." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Durée de temporisation des tâches d'arrière plan dépendant d'une mise à jour " -"de la base de données." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Durée de temporisation des tâches d'arrière plan dépendant d'une mise à jour de la base de données." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -362,15 +356,11 @@ msgstr "" #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Activer la journalisation des erreurs en dehors des capacités de " -"journalisation du système d'erreur." +msgstr "Activer la journalisation des erreurs en dehors des capacités de journalisation du système d'erreur." #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" -"Chemin d'accès au fichier journal qui enregistrera les erreurs pendant la " -"production." +msgstr "Chemin d'accès au fichier journal qui enregistrera les erreurs pendant la production." #: settings.py:82 msgid "Name to be displayed in the main menu." @@ -382,9 +372,7 @@ msgstr "URL de l'installation ou de la page d'accueil du projet." #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un espace de stockage que tous les agents pourront utiliser pour partager " -"des fichiers." +msgstr "Un espace de stockage que tous les agents pourront utiliser pour partager des fichiers." #: settings.py:103 msgid "Django" @@ -393,14 +381,14 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -408,19 +396,18 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "" -"La liste des validateurs utilisés pour vérifier la force des mots de passe " -"de l'utilisateur." +msgstr "La liste des validateurs utilisés pour vérifier la force des mots de passe de l'utilisateur." #: settings.py:146 msgid "" @@ -437,10 +424,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -497,8 +484,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -522,8 +509,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -541,8 +528,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -589,8 +576,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -614,17 +601,18 @@ msgstr "Celery" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 @@ -658,9 +646,7 @@ msgstr "Créer" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Entrez un 'nom interne' valide composé de lettres, de chiffres et de " -"soulignement." +msgstr "Entrez un 'nom interne' valide composé de lettres, de chiffres et de soulignement." #: views.py:31 msgid "About" @@ -685,8 +671,7 @@ msgstr "Effacer les entrées du journal des erreurs pour : %s" #: views.py:135 msgid "Object error log cleared successfully" -msgstr "" -"Les entrées concernées du journal des erreurs ont été effacées avec succès" +msgstr "Les entrées concernées du journal des erreurs ont été effacées avec succès" #: views.py:154 msgid "Date and time" @@ -705,9 +690,7 @@ msgstr "Aucune option d'installation disponible." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "" -"Aucun résultat ici signifie que vous ne disposez pas des autorisations " -"requises pour effectuer des tâches administratives." +msgstr "Aucun résultat ici signifie que vous ne disposez pas des autorisations requises pour effectuer des tâches administratives." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo index 7e99c9d346271de5d23ac74f5c934a19a1e27a01..b2c0ff9d06c346a4eceed89f3207e0fee878acd2 100644 GIT binary patch delta 21 ccmeC>>gC$-jfum^Qo+E?%E)l@KPG-A07--fF#rGn delta 21 ccmeC>>gC$-jfun1RKdX9%EV&xKPG-A07-}jHUIzs diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index 45f2ee98cb..d2043a58cc 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -198,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,29 +316,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -373,14 +373,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -388,10 +388,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -415,10 +416,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -475,8 +476,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -500,8 +501,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -519,8 +520,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -567,8 +568,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -592,17 +593,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.mo b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo index 38822dee445b1fa79fcfa9938992e9dbd70b7728..bafbc9c3d40d9fc56f9db582c8e1da63ee4b3e91 100644 GIT binary patch delta 21 ccmdnPwTEkiEHj6ZrGkN(m673QRc3J}06+=^=Kufz delta 21 ccmdnPwTEkiEHj6pse*yIm5Ie>Rc3J}06-1|>;M1& diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index ae27663290..c0d1555e9a 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -197,8 +196,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -316,29 +315,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -372,14 +372,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -387,10 +387,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -414,10 +415,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -474,8 +475,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -499,8 +500,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -518,8 +519,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -566,8 +567,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -591,17 +592,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.mo b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo index 0fbd099a22af714527514d7619cbd6e3c2691791..9af94a3266916be1953e302db10bae5ec558bf06 100644 GIT binary patch delta 21 dcmewr@GD@$SuqYHO9cZnD, 2012 # Daniele Bortoluzzi , 2019 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -38,9 +37,7 @@ msgstr "Campi disponibili:\n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "" -"Usato per consentire la traduzione offline delle stringhe di testo nel " -"codice." +msgstr "Usato per consentire la traduzione offline delle stringhe di testo nel codice." #: dependencies.py:401 msgid "Provides style checking." @@ -67,20 +64,14 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Seleziona le voci da rimuovere. Tieni premuto Ctrl per selezionare più di " -"una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai " -"doppio clic sulla lista per attivare l'azione." +msgstr "Seleziona le voci da rimuovere. Tieni premuto Ctrl per selezionare più di una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai doppio clic sulla lista per attivare l'azione." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Seleziona le voci da aggiungere. Tieni premuto Ctrl per selezionare più di " -"una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai " -"doppio clic sulla lista per attivare l'azione." +msgstr "Seleziona le voci da aggiungere. Tieni premuto Ctrl per selezionare più di una voce. Quando hai finito di selezionare, clicca il bottone sotto o fai doppio clic sulla lista per attivare l'azione." #: generics.py:287 msgid "Add all" @@ -190,9 +181,7 @@ msgstr "Questa funzionalità è obsoleta e verrà rimossa nelle versioni future. msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Il tuo database attuale è impostato a SQLite, che dovrebbe essere usato solo " -"per sviluppo e test, non in produzione." +msgstr "Il tuo database attuale è impostato a SQLite, che dovrebbe essere usato solo per sviluppo e test, non in produzione." #: literals.py:34 msgid "Days" @@ -209,32 +198,25 @@ msgstr "Minuti" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "" -"Limita i dati del dump a una specifica app_label o app_label.ModelName." +msgstr "Limita i dati del dump a una specifica app_label o app_label.ModelName." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"Il database da cui esportare i dati. Se non specificato, verrà usato il " -"database chiamato \"default\"." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "Il database da cui esportare i dati. Se non specificato, verrà usato il database chiamato \"default\"." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"Il database sul quale importare i dati. Se non specificato, verrà usato il " -"database chiamato \"default\"." +msgstr "Il database sul quale importare i dati. Se non specificato, verrà usato il database chiamato \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" -"Forza la conversione del database anche se il database di destinazione non è " -"vuoto." +msgstr "Forza la conversione del database anche se il database di destinazione non è vuoto." #: menus.py:10 msgid "System" @@ -339,34 +321,31 @@ msgstr "Abilita automaticamente i log per tutte le app." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Il ritardo per i task in background dipende dalla propagazione del commit su " -"database." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Il ritardo per i task in background dipende dalla propagazione del commit su database." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." -msgstr "" -"Nome della vista collegata all'ancora brand nel menù principale. Questa è " -"anche la vista alla quale gli utenti verranno reindirizzati dopo il login." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." +msgstr "Nome della vista collegata all'ancora brand nel menù principale. Questa è anche la vista alla quale gli utenti verranno reindirizzati dopo il login." #: settings.py:61 msgid "The number objects that will be displayed per page." @@ -378,8 +357,7 @@ msgstr "" #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" -"Percorso del file di log su cui verranno scritti gli errori in produzione." +msgstr "Percorso del file di log su cui verranno scritti gli errori in produzione." #: settings.py:82 msgid "Name to be displayed in the main menu." @@ -391,9 +369,7 @@ msgstr "URL dell'installazione o pagina home del progetto." #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un backend di memorizzazione che tutti i lavoratori possono utilizzare per " -"condividere i file." +msgstr "Un backend di memorizzazione che tutti i lavoratori possono utilizzare per condividere i file." #: settings.py:103 msgid "Django" @@ -402,46 +378,33 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"Una lista di stringhe con i nomi host o nomi di dominio che questo sito può " -"servire. Si tratta di una misura di sicurezza per prevenire attacchi con " -"l'intestazione HTTP Host, che sono possibili in tante configurazioni dei web " -"server anche apparentemente sicure. I valori in questa lista possono essere " -"FQDN (es. 'www.nomesito.it'), nel quale caso verranno confrontati con " -"l'header di richiesta Host in maniera esatta (senza controllo maiuscole e " -"senza la porta). Una stringa che inizi con un punto può essere usata come " -"wildcard per il sottodominio: '.nomesito.it' sarà valido per nomesito.it, " -"www.nomesito.it e qualunque altro sottodominio di nomesito.it. Il valore '*' " -"corrisponde a qualunque sito; in questo caso sei tu responsabile di validare " -"in qualche modo l'intestazione Host (magari in un middleware, in tal caso " -"deve essere il primo della lista MIDDLEWARE)." +msgstr "Una lista di stringhe con i nomi host o nomi di dominio che questo sito può servire. Si tratta di una misura di sicurezza per prevenire attacchi con l'intestazione HTTP Host, che sono possibili in tante configurazioni dei web server anche apparentemente sicure. I valori in questa lista possono essere FQDN (es. 'www.nomesito.it'), nel quale caso verranno confrontati con l'header di richiesta Host in maniera esatta (senza controllo maiuscole e senza la porta). Una stringa che inizi con un punto può essere usata come wildcard per il sottodominio: '.nomesito.it' sarà valido per nomesito.it, www.nomesito.it e qualunque altro sottodominio di nomesito.it. Il valore '*' corrisponde a qualunque sito; in questo caso sei tu responsabile di validare in qualche modo l'intestazione Host (magari in un middleware, in tal caso deve essere il primo della lista MIDDLEWARE)." #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "" -"La lista dei validatori usati per controllare l'efficacia delle password " -"degli utenti." +msgstr "La lista dei validatori usati per controllare l'efficacia delle password degli utenti." #: settings.py:146 msgid "" @@ -450,12 +413,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"Un dizionario che contiene le impostazioni per tutti i database da usare con " -"Django. È un dizionario innestato le cui chiavi sono alias di database e i " -"valori sono i dizionari con le opzioni per ogni database. L'impostazione " -"DATABASES deve contenere un database chiamato 'default'; è possibile poi " -"specificare ulteriori database aggiuntivi." +msgstr "Un dizionario che contiene le impostazioni per tutti i database da usare con Django. È un dizionario innestato le cui chiavi sono alias di database e i valori sono i dizionari con le opzioni per ogni database. L'impostazione DATABASES deve contenere un database chiamato 'default'; è possibile poi specificare ulteriori database aggiuntivi." #: settings.py:158 msgid "" @@ -463,10 +421,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -523,8 +481,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -548,8 +506,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -567,8 +525,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -615,8 +573,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -640,17 +598,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 @@ -684,8 +643,7 @@ msgstr "Crea" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Inserisci un 'internal name' valido composto da lettere, numeri e underscore." +msgstr "Inserisci un 'internal name' valido composto da lettere, numeri e underscore." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo index 165056e7250409de679a395d1ea6eb2f2f9f68cf..f4d6f702306329e9882e4a450e2091c5a168d73a 100644 GIT binary patch delta 3920 zcmZ{ld2Ce28NffA1%o*Z1{ZTAjF)3=Fg6fQ11aV(nD`)$12iOr=iO)f;l0@R)_~h| z<0Ldut2PlEszgdeK`JG34^{g|6&2b>S)!(gnv@=qqO_!tq!LY28rqafDE)o=)-;jY z(SGkY-@KW5-!-$>UN8CcZ%Q(Ms0^GC+AuN~Sr8EU4y+%~gLbK0#K58U9 z`3o$AA3@g1$3=b2XZ#OOgfkgm1*gMyI1XB{9`?ft@C2L(Pr{|}$57|J4=eb-T&JTS z3a}eS$|R^0=D_(d2z8?th%>UQsPBgaOZuU%k3qrHG%SUK)gs3jIyy^a1^UM@4Oh$& z+0Xb{!o8O7OWAEAzlWRP7Fd0|NFLq~SKxXL=3hte4vKt*4O+44C+NRjAkqWBzEI=| z#&1A1;E|BX47!h!C!#ISKy~OWR0qBXH6rI>MlFAf4nKK^hlX+ri5(AvumvuG9WVu_ z!IvP;$VI3hcpvHqZbD6AV6h*Wa;W=Mz`J2J)b|JBa+q99{B_`TapGC127MoDDqbw= zKZOKCUW3Qr2XGNgFY#0J9Mqhjf$G3Ts3Cq25^ZVWrKYL}s-b;wA&l1(|BZB>W`K0b zuZt6|!gBP#!yWKualC~Jnt=Lzk<}STq%zK8>*w@ zGL61PQ(%OFDyTUfg8zVT!Kvi*;xds=^ee>e4!ClK2t(2jTj8^?9bSeS^5slYLzoC0saBPqilz%EXgZS9lH)G9~rYv4JQ8$bTk+DL0#Ab zC&4t-4IhCT(r4iYcpB>bKSDL&J*e|Pf?8aG7GIwTYw@%imc!=lBH!YD8wJ&lejT37 z(Am6`Bf*P5-Q^#*_BKEFPeaY=mwCJc-+(_PBtPm9`78QRm&i9+@7#ki=oR;J3BeEG z8O9&jjlnRmS0u!E^XEjkV#I-J=;JV>A^92|y%3&<>dASCP4Y8nVAXy8#jzUhLEj1w zz~|s>coXXJtlsDAYoJD~3+jjV!LhIhYQ*{>Hp`KH#9t@;f&uDEEhYYppZx0w=5t##!X=O> z%RV> z)T4CvP}%fMir!OSh5hJXg=*SA;aFJG z>mSfE*vURCVKd{8_4)H&fi>u__mK?ke8|8oSjBER7Bs@g&@VfMe-~lj!Z`tjOIE3d zXp1AkLXW>LsIDDE$cua)(Kd{%LtIs8S_#^^^e`Us`-Lo475kL4q!G$k)*u=sZ5#zj zAOxn+LOk`vPxIBneX8Btka}dZD#f;=Nb)5Oql0|E&~E3s5z#P?wrH_KHVQSoaP$Q% zLo~a3|9t_`4D0{fdPJ*cDWXj?em6ou3$2wW*Ja_p+yXOoJlYU#4;P;P?R~V^p9#s1 z96`1ti;?-rZlno$2pMeybU0434OxvCO1vJ1Hj`DB}#d$s)4KyGmAiD09Nr(->K$|QOY+F{Q% zUccp;!%j46dTbMM++@@`YDY|xDM_o(&W*dHq9oJRX1s(+yS6#pZ^uo_?zK}XC*G%{ zu4j2p*z`J4+cnWd*z#EJ#LYe3&E2hA9_;Gu>~1jIj##l|)NV4tMt^=|&?HhO*zbAC zrpDq}gYD012q$8^Z|yblgl9Su@r+%MosN6UPArKSOO3ZpkA+!D%j-A2>}a{J?U{(( z>%<+;NyJ@KtCQO8h+~;>l-G5}ibo17eM@}9tz@#nw0b6%c0FS=0S_$WvY_8MvwMy1 zinA6b#h2Q#q<7Q|TG6zft6X`mbo`2SX4&ed70YwKTfHN&IOx~|7f$7~2OT?TYAuic z51dqfq$fYjaueLPw|iSxM{`@SE_-eAjBIlKv8kbhR;b?aOy-9#d?_8uR&BVR9ed}r zlE&PuI~NAZf_8jq+70G9H$M@W5VT^4G-|=@)t2QIhV6$VY>oS|{BZVo^}0-lopkK5 zV_!IB#Vq4F1D0dl{(Lq@%pz9)oJCYpR@_Y{QXU)C)f>K>!eWacJ1G;l6FpIxPnS#oVgwl-Anp$=%~}&+MF9 zp53#sBKKnVya3^Ob8qFOhE9rkz)Kq!N7dv3tqo_uH7O0vi07C=$Bq-Ds0KK9H4-ez z+}qXWPdu0(c7|eB+)LCO%X6)CIN>?ea(c+GZFj)2W2V<~qR?Mrd8tH%Z+xo8ckvoe zaqAOBK1k&MXO(AczswuVPD@ibVs3@W#H~T&rKur{y2t8*D@7YUV$Tq@G=z;|JAdxN zDPs)~-@&wB_xX{qgHJJ28%sw$XV8f-(LVqK)U#cu8FhCRj&1SOI<}Ya;?3u+O3xz*kaYYG-@XLZfe+vva1sxOkom9(u7I_$1x|uCyay&>9n8QY=9ky0;FSCV z>O_|z&dOD{gUF|FA@(h(1C`$?G6gPzYBxfXCM{6EZ-YX_n_xcdyi4R5O4x_wW)dne{{vHI*Mi-3GVd2KZmt1vgZS z%z)2Af|JuwCwLv|1Y=N_@G{iQybpDp>u?9W;lE!~L;jc2u)fCoUH6P}o0i1@9!t-zrEN9`>p_Nb_ZLTB#WKY)8&-|cX$>~XH8F&u5H-o8rc_c;xeL#tKnAo1k?k{+J`crk8iudl`BU z>Kb43`3anc{TbAyD{L3xDv)(>Cfoau8~OFG2R7{0Qp)lMkrq5|nK4J}iZk zu`8esxD0AaJ0VWXgHZdALUrJqQ2W0Oi{Oua`!%==`z<(=$meYo`2qG)Hqu_~Yw%2( zN^>V?mluED>>ab6Tf8-Y9_pH&;PEH;M|hr;ywN4{H|+FI_5DHxJOE#U z<*;bKcP!^awI6_*vHegd3cx}bf|{{Gh|h9#Kl#@V@6y2jl0QIAZRsQ4hjXCX3!pAV zHPnII;C$E#Prxv&ga3gVK=qeJ*uSz0YG7fgnfV4>4F3i7SQ@>5b%I)Mi3YeFl4S|N zIq-*2-@gr~z~4d5%tx>oHhje!s0m)j-T<${>I2^9E3v%DXF&~M4y=HUa1q>_rlJuY z_IcdrC`{1)JdDH1Tn7JykHbZIB11jiRr;-f7wKQ&I^Hh`a*4rSs1E)b7Q!pA7G8yI za7wTDKD~{~d>Z!o9D#RXzW}pLbPhg=9cENa!E`SUAO!1{6+UBdpfzxN9WtI<}ZMcZ|U>MlNnwA_hwZ68A&s0J-UdL*0C2pTV8DjWv)XL}XY zC4K-EAT0)!p>!dSX-MyGEgR8VG=TDv?gcH|5u4uq{kLEg=?U47+K?W*cC-NXAqN$q z#}W6>ZDj~+A8OShw^2Ea4x;g*m&hRM9&dp6qm}4xG#7En$!1iAW+DB@Vhj3WnUQ_3 z_^pB&fnd_^i&~By?K4(5Y^=4<8Fp~~_=p2jIn|7q}UXh?T50A#6Kg>|ipE8!-p-!bxj@sc%bd?r4uqW4+mIISI>VphPGdgw}u+ z7|vy!l58b|+x+5c#%E znf0x86HJ52CR!I4%k`{tm2KTrn&%C3TR-CNwZp;Bdp2Ya}UXFG=g diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po index 88ed2e6a55..20523c2d05 100644 --- a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -61,20 +59,14 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Atlasiet noņemamos ierakstus. Lai atlasītu vairākus ierakstus, turiet " -"Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās " -"pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." +msgstr "Atlasiet noņemamos ierakstus. Lai atlasītu vairākus ierakstus, turiet Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Atlasiet pievienojamos ierakstus. Lai atlasītu vairākus ierakstus, turiet " -"Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās " -"pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." +msgstr "Atlasiet pievienojamos ierakstus. Lai atlasītu vairākus ierakstus, turiet Control taustiņu. Kad atlase ir pabeigta, noklikšķiniet uz zemāk redzamās pogas vai veiciet dubultklikšķi uz saraksta, lai aktivizētu darbību." #: generics.py:287 msgid "Add all" @@ -184,9 +176,7 @@ msgstr "Šī funkcija ir novecojusi un tiks noņemta turpmākajā versijā." msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Jūsu datubāzes backend ir iestatīts, lai izmantotu SQLite. SQLite jāizmanto " -"tikai izstrādei un testēšanai, nevis ražošanai." +msgstr "Jūsu datubāzes backend ir iestatīts, lai izmantotu SQLite. SQLite jāizmanto tikai izstrādei un testēšanai, nevis ražošanai." #: literals.py:34 msgid "Days" @@ -207,26 +197,21 @@ msgstr "Ierobežo izgāztos datus uz norādīto app_label vai app_label.ModelNam #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"Datu bāze, no kuras tiks eksportēti dati. Ja tas tiks izlaists, tiks " -"izmantota datubāze ar nosaukumu \"default\"." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "Datu bāze, no kuras tiks eksportēti dati. Ja tas tiks izlaists, tiks izmantota datubāze ar nosaukumu \"default\"." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"Datu bāze, uz kuru tiks importēti dati. Ja tas tiks izlaists, tiks izmantota " -"datubāze ar nosaukumu \"default\"." +msgstr "Datu bāze, uz kuru tiks importēti dati. Ja tas tiks izlaists, tiks izmantota datubāze ar nosaukumu \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" -"Piespiest datu bāzes pārveidošanu pat tad, ja saņemošā datu bāze nav tukša." +msgstr "Piespiest datu bāzes pārveidošanu pat tad, ja saņemošā datu bāze nav tukša." #: menus.py:10 msgid "System" @@ -331,63 +316,39 @@ msgstr "Automātiski iespējojiet pierakstīšanos visās lietotnēs." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Laiks uz kādu aizkavēt fona uzdevumus, kas ir atkarīgs no datu bāzes " -"apņemšanās uz izplatīšanu." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Laiks uz kādu aizkavēt fona uzdevumus, kas ir atkarīgs no datu bāzes apņemšanās uz izplatīšanu." #: settings.py:33 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Saraksts ar virknēm, kas apzīmē visas programmas, kas ir iespējotas šajā " -"Django instalācijā. Katrai virknei vajadzētu būt punktveida Python ceļam uz: " -"lietojumprogrammas konfigurācijas klasi (vēlamo) vai paketi, kurā ir " -"lietojumprogramma." #: settings.py:43 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Saraksts ar virknēm, kas apzīmē visas programmas, kas ir iespējotas šajā " -"Django instalācijā. Katrai virknei vajadzētu būt punktveida Python ceļam uz: " -"lietojumprogrammas konfigurācijas klasi (vēlamo) vai paketi, kurā ir " -"lietojumprogramma." #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." -msgstr "" -"Zīmola enkuram pievienotā skata nosaukums galvenajā izvēlnē. Tas ir arī " -"skats, uz kuru pēc pierakstīšanās lietotāji tiks novirzīti." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." +msgstr "Zīmola enkuram pievienotā skata nosaukums galvenajā izvēlnē. Tas ir arī skats, uz kuru pēc pierakstīšanās lietotāji tiks novirzīti." #: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Objektu skaits, kas tiks rādīti vienā lapā." #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Iespējot kļūdu reģistrēšanu ārpus sistēmas kļūdu reģistrēšanas iespējām." +msgstr "Iespējot kļūdu reģistrēšanu ārpus sistēmas kļūdu reģistrēšanas iespējām." #: settings.py:75 msgid "Path to the logfile that will track errors during production." @@ -403,8 +364,7 @@ msgstr "Projekta instalācijas vai mājas lapas URL." #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Uzglabāšanas backend, ko visi darbinieki var izmantot, lai koplietotu failus." +msgstr "Uzglabāšanas backend, ko visi darbinieki var izmantot, lai koplietotu failus." #: settings.py:103 msgid "Django" @@ -413,51 +373,33 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"Saraksts ar virknēm, kas pārstāv vietnes / domēna vārdus, kurus šī vietne " -"var pasniegt. Šis ir drošības pasākums, lai novērstu HTTP uzņēmēja galvenes " -"uzbrukumus, kas ir iespējami pat daudzās šķietami drošās tīmekļa servera " -"konfigurācijās. Vērtības šajā sarakstā var būt pilnībā kvalificēti vārdi " -"(piemēram, “www.example.com”), un tādā gadījumā tie tiks precīzi saskaņoti " -"ar pieprasījuma Host galvenes virsrakstu (nejūtīga, neietverot portu). " -"Vērtību, kas sākas ar punktu, var izmantot kā apakšdomēna aizstājējzīmi: '." -"example.com' atbilst example.com, www.example.com un jebkuram citam example." -"com apakšdomēnam. Vērtība '*' atbilst jebkuram; šajā gadījumā jūs esat " -"atbildīgs par savas galvenes apstiprinājuma apstiprināšanu (varbūt " -"starpprogrammatūrā; ja tā, tad starpprogrammatūra vispirms jānorāda iekš " -"MIDDLEWARE)." +msgstr "Saraksts ar virknēm, kas pārstāv vietnes/domēna vārdus, kurus šī vietne var pasniegt. Šis ir drošības pasākums, lai novērstu HTTP uzņēmēja galvenes uzbrukumus, kas ir iespējami pat daudzās šķietami drošās tīmekļa servera konfigurācijās. Vērtības šajā sarakstā var būt pilnībā kvalificēti vārdi (piemēram, “www.example.com”), un tādā gadījumā tie tiks precīzi saskaņoti ar pieprasījuma Host galvenes virsrakstu (nejūtīga, neietverot portu). Vērtību, kas sākas ar punktu, var izmantot kā apakšdomēna aizstājējzīmi: '.example.com' atbilst example.com, www.example.com un jebkuram citam example.com apakšdomēnam. Vērtība '*' atbilst jebkuram; šajā gadījumā jūs esat atbildīgs par savas galvenes apstiprinājuma apstiprināšanu (varbūt starpprogrammatūrā; ja tā, tad starpprogrammatūra vispirms jānorāda iekš MIDDLEWARE)." #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." -msgstr "" -"Ja iestatījums ir True, un pieprasījuma URL neatbilst nevienam no URLconf " -"modeļiem un tas nenotiek slīpsvītrā, HTTP novirzīšana tiek izdota tam pašam " -"URL ar pievienoto slīpsvītru. Ņemiet vērā, ka novirzīšana var izraisīt " -"jebkādu POST pieprasījumā iesniegto datu pazaudēšanu. Iestatījums " -"APPEND_SLASH tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. " -"Starpprogrammatūra). Skatiet arī PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." +msgstr "Ja iestatījums ir True, un pieprasījuma URL neatbilst nevienam no URLconf modeļiem un tas nenotiek slīpsvītrā, HTTP novirzīšana tiek izdota tam pašam URL ar pievienoto slīpsvītru. Ņemiet vērā, ka novirzīšana var izraisīt jebkādu POST pieprasījumā iesniegto datu pazaudēšanu. Iestatījums APPEND_SLASH tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra). Skatiet arī PREPEND_WWW." #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "" -"Validatoru saraksts, kurus izmanto, lai pārbaudītu lietotāja paroļu stiprumu." +msgstr "Validatoru saraksts, kurus izmanto, lai pārbaudītu lietotāja paroļu stiprumu." #: settings.py:146 msgid "" @@ -466,11 +408,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"Vārdnīca ar visu Django lietojamo datu bāzu iestatījumiem. Tā ir ligzdota " -"vārdnīca, kuras saturs iezīmē datubāzes aizstājvārdu vārdnīcā, kurā ir " -"atsevišķas datu bāzes iespējas. DATABASES iestatījumam jākonfigurē " -"noklusējuma datu bāze; var norādīt arī jebkuru papildu datu bāzu skaitu." +msgstr "Vārdnīca ar visu Django lietojamo datu bāzu iestatījumiem. Tā ir ligzdota vārdnīca, kuras saturs iezīmē datubāzes aizstājvārdu vārdnīcā, kurā ir atsevišķas datu bāzes iespējas. DATABASES iestatījumam jākonfigurē noklusējuma datu bāze; var norādīt arī jebkuru papildu datu bāzu skaitu." #: settings.py:158 msgid "" @@ -478,38 +416,21 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums baitos, ko " -"pieprasīšanas struktūra var būt pirms aizdomīgas darbības " -"(RequestDataTooBig) palielināšanas. Pārbaude tiek veikta, piekļūstot " -"pieprasījumam.body vai request.POST, un tiek aprēķināta pēc kopējā " -"pieprasījuma lieluma, izņemot visus failu augšupielādes datus. To var " -"iestatīt uz Nav, lai izslēgtu pārbaudi. Lietojumprogrammām, kurām sagaidāms, " -"ka tās saņems neparasti lielas veidlapas ziņas, ir jākontrolē šis " -"iestatījums. Pieprasījuma datu apjoms ir saistīts ar atmiņas apjomu, kas " -"nepieciešams, lai apstrādātu pieprasījumu un aizpildītu GET un POST " -"vārdnīcas. Lielus pieprasījumus var izmantot kā pakalpojumu atteikšanas " -"uzbrukuma vektoru, ja tas netiek pārbaudīts. Tā kā tīmekļa serveri parasti " -"neveic dziļu pieprasījumu pārbaudi, nav iespējams veikt līdzīgu pārbaudi " -"šajā līmenī. Skatiet arī FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums baitos, ko pieprasīšanas struktūra var būt pirms aizdomīgas darbības (RequestDataTooBig) palielināšanas. Pārbaude tiek veikta, piekļūstot pieprasījumam.body vai request.POST, un tiek aprēķināta pēc kopējā pieprasījuma lieluma, izņemot visus failu augšupielādes datus. To var iestatīt uz Nav, lai izslēgtu pārbaudi. Lietojumprogrammām, kurām sagaidāms, ka tās saņems neparasti lielas veidlapas ziņas, ir jākontrolē šis iestatījums. Pieprasījuma datu apjoms ir saistīts ar atmiņas apjomu, kas nepieciešams, lai apstrādātu pieprasījumu un aizpildītu GET un POST vārdnīcas. Lielus pieprasījumus var izmantot kā pakalpojumu atteikšanas uzbrukuma vektoru, ja tas netiek pārbaudīts. Tā kā tīmekļa serveri parasti neveic dziļu pieprasījumu pārbaudi, nav iespējams veikt līdzīgu pārbaudi šajā līmenī. Skatiet arī FILE_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "" -"Noklusējums: “webmaster@localhost” Noklusējuma e-pasta adrese, ko izmanto " -"dažādai automatizētai sarakstei no vietnes pārvaldnieka (-iem). Tas neietver " -"kļūdas ziņojumus, kas nosūtīti ADMINS un MANAGERS; par to skatiet " -"SERVER_EMAIL." +msgstr "Noklusējums: “webmaster@localhost” Noklusējuma e-pasta adrese, ko izmanto dažādai automatizētai sarakstei no vietnes pārvaldnieka (-iem). Tas neietver kļūdas ziņojumus, kas nosūtīti ADMINS un MANAGERS; par to skatiet SERVER_EMAIL." #: settings.py:188 msgid "" @@ -517,20 +438,13 @@ msgid "" "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "" -"Noklusējums: [] (Tukšs saraksts). Sastādīto regulāro izteiksmes objektu " -"saraksts, kas pārstāv lietotāja-aģentu virknes, kurām nav atļauts apmeklēt " -"jebkuru lapu. Izmantojiet to sliktiem robotiem / rāpuļprogrammām. Tas tiek " -"izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. " -"Starpprogrammatūra)." +msgstr "Noklusējums: [] (Tukšs saraksts). Sastādīto regulāro izteiksmes objektu saraksts, kas pārstāv lietotāja-aģentu virknes, kurām nav atļauts apmeklēt jebkuru lapu. Izmantojiet to sliktiem robotiem/rāpuļprogrammām. Tas tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "" -"Noklusējums: “django.core.mail.backends.smtp.EmailBackend”. Backend, ko " -"izmanto e-pasta sūtīšanai." +msgstr "Noklusējums: “django.core.mail.backends.smtp.EmailBackend”. Backend, ko izmanto e-pasta sūtīšanai." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." @@ -542,45 +456,31 @@ msgid "" "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "" -"Noklusējums: '' (Tukša virkne). Parole, ko izmantot SMTP serverim, " -"kas definēts vietnē EMAIL_HOST. Šis iestatījums tiek izmantots kopā ar " -"EMAIL_HOST_USER autentificējot SMTP serveri. Ja kāds no šiem iestatījumiem " -"ir tukšs, Django neveic autentifikāciju." +msgstr "Noklusējums: '' (Tukša virkne). Parole, ko izmantot SMTP serverim, kas definēts vietnē EMAIL_HOST. Šis iestatījums tiek izmantots kopā ar EMAIL_HOST_USER autentificējot SMTP serveri. Ja kāds no šiem iestatījumiem ir tukšs, Django neveic autentifikāciju." #: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "" -"Noklusējums: '' (Tukša virkne). Lietotājvārds, ko izmantot SMTP " -"serverim, kas definēts pakalpojumā EMAIL_HOST. Ja tukšs, Django neizmēģinās " -"autentifikāciju." +msgstr "Noklusējums: '' (Tukša virkne). Lietotājvārds, ko izmantot SMTP serverim, kas definēts pakalpojumā EMAIL_HOST. Ja tukšs, Django neizmēģinās autentifikāciju." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "" -"Noklusējums: 25. Portu, ko izmantot SMTP serverim, kas definēts EMAIL_HOST." +msgstr "Noklusējums: 25. Portu, ko izmantot SMTP serverim, kas definēts EMAIL_HOST." #: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "" -"Noklusējums: nav. Norāda taimautu sekundēs, lai bloķētu darbības, piemēram, " -"savienojuma mēģinājumu." +msgstr "Noklusējums: nav. Norāda taimautu sekundēs, lai bloķētu darbības, piemēram, savienojuma mēģinājumu." #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "" -"Noklusējums: False. Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP " -"serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti 587. portā. " -"Ja rodas savienojumi ar kabeļiem, skatiet netiešo TLS iestatījumu " -"EMAIL_USE_SSL." +msgstr "Noklusējums: False. Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti 587. portā. Ja rodas savienojumi ar kabeļiem, skatiet netiešo TLS iestatījumu EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -590,37 +490,23 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "" -"Noklusējums: False. Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS " -"(drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS " -"savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas " -"problēmas, skatiet skaidru TLS iestatījumu EMAIL_USE_TLS. Ņemiet vērā, ka " -"EMAIL_USE_TLS / EMAIL_USE_SSL ir savstarpēji izslēdzoši, tāpēc tikai vienu " -"no šiem iestatījumiem iestatiet uz True." +msgstr "Noklusējums: False. Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu EMAIL_USE_TLS. Ņemiet vērā, ka EMAIL_USE_TLS/EMAIL_USE_SSL ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." #: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums (baitos), ko " -"augšupielāde būs pirms straumēšanas datņu sistēmā. Papildinformāciju skatiet " -"sadaļā Failu pārvaldīšana. Skatiet arī DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums (baitos), ko augšupielāde būs pirms straumēšanas datņu sistēmā. Papildinformāciju skatiet sadaļā Failu pārvaldīšana. Skatiet arī DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "" -"Noklusējums: '/ accounts / login /' URL, kurā pieprasījumi tiek " -"novirzīti, lai pieteiktos, īpaši, ja izmantojat login_required () " -"dekoratoru. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var " -"izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL " -"divās vietās (iestatījumi un URLconf)." +msgstr "Noklusējums: '/accounts/login/' URL, kurā pieprasījumi tiek novirzīti, lai pieteiktos, īpaši, ja izmantojat login_required () dekoratoru. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." #: settings.py:293 msgid "" @@ -629,29 +515,17 @@ msgid "" "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "" -"Noklusējums: '/ accounts / profile /' URL, kurā pieprasījumi tiek " -"novirzīti pēc pieteikšanās brīdī, kad skats par ieguldījumu.auth.login " -"nesaņem nākamo parametru. To izmanto, piemēram, login_required () " -"dekorētājs. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var " -"izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL " -"divās vietās (iestatījumi un URLconf)." +msgstr "Noklusējums: '/accounts/profile/' URL, kurā pieprasījumi tiek novirzīti pēc pieteikšanās brīdī, kad skats par ieguldījumu.auth.login nesaņem nākamo parametru. To izmanto, piemēram, login_required () dekorētājs. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "" -"Noklusējums: nav. URL, kurā pieprasījumi tiek novirzīti pēc tam, kad " -"lietotājs ir pieteicies, izmantojot LogoutView (ja skats nesaņem nākamo lapu " -"argumentu). Ja nav, netiks veikta novirzīšana un tiks atteikts logout skats. " -"Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai " -"samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās " -"(iestatījumi un URLconf)." +msgstr "Noklusējums: nav. URL, kurā pieprasījumi tiek novirzīti pēc tam, kad lietotājs ir pieteicies, izmantojot LogoutView (ja skats nesaņem nākamo lapu argumentu). Ja nav, netiks veikta novirzīšana un tiks atteikts logout skats. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." #: settings.py:318 msgid "" @@ -659,12 +533,7 @@ msgid "" "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "" -"IP adrešu saraksts kā virknes, kas: Ļauj atkļūdošanas () konteksta " -"procesoram pievienot dažus mainīgos veidnes kontekstam. Var izmantot " -"admindocs grāmatzīmes, pat ja nav pieteicies kā personāla lietotājs. Tiek " -"atzīmēti kā "iekšējie" (atšķirībā no "EXTERNAL") " -"AdminEmailHandler e-pastos." +msgstr "IP adrešu saraksts kā virknes, kas: Ļauj atkļūdošanas () konteksta procesoram pievienot dažus mainīgos veidnes kontekstam. Var izmantot admindocs grāmatzīmes, pat ja nav pieteicies kā personāla lietotājs. Tiek atzīmēti kā \"iekšējie\" (atšķirībā no \"EXTERNAL\") AdminEmailHandler e-pastos." #: settings.py:329 msgid "" @@ -673,12 +542,7 @@ msgid "" "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "" -"Visu pieejamo valodu saraksts. Sarakstā ir iekļauts divu ierakstu saraksts " -"(valodas kods, valodas nosaukums), piemēram, ('ja', '" -"japāņu'). Tas norāda, kuras valodas ir pieejamas valodas izvēlei. " -"Parasti pietiek ar noklusējuma vērtību. Iestatiet šo iestatījumu tikai tad, " -"ja vēlaties ierobežot valodu izvēli ar Django sniegto valodu apakškopu." +msgstr "Visu pieejamo valodu saraksts. Sarakstā ir iekļauts divu ierakstu saraksts (valodas kods, valodas nosaukums), piemēram, ('ja', 'japāņu'). Tas norāda, kuras valodas ir pieejamas valodas izvēlei. Parasti pietiek ar noklusējuma vērtību. Iestatiet šo iestatījumu tikai tad, ja vēlaties ierobežot valodu izvēli ar Django sniegto valodu apakškopu." #: settings.py:342 msgid "" @@ -690,15 +554,7 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "" -"Stringi, kas attēlo šīs instalācijas valodas kodu. Tam jābūt standarta " -"valodas ID formātā. Piemēram, ASV angļu valoda ir "en-us". Tas " -"kalpo diviem mērķiem: ja lokālā starpprogrammatūra netiek izmantota, tā " -"nolemj, kurš tulkojums tiek nodrošināts visiem lietotājiem. Ja lokalizācijas " -"starpprogrammatūra ir aktīva, tā nodrošina rezerves valodu, ja lietotāja " -"vēlamo valodu nevar noteikt vai vietne to neatbalsta. Tā arī nodrošina " -"rezerves tulkojumu, ja konkrētā literārā tulkojums nav lietotāja vēlamajai " -"valodai." +msgstr "Stringi, kas attēlo šīs instalācijas valodas kodu. Tam jābūt standarta valodas ID formātā. Piemēram, ASV angļu valoda ir \"en-us\". Tas kalpo diviem mērķiem: ja lokālā starpprogrammatūra netiek izmantota, tā nolemj, kurš tulkojums tiek nodrošināts visiem lietotājiem. Ja lokalizācijas starpprogrammatūra ir aktīva, tā nodrošina rezerves valodu, ja lietotāja vēlamo valodu nevar noteikt vai vietne to neatbalsta. Tā arī nodrošina rezerves tulkojumu, ja konkrētā literārā tulkojums nav lietotāja vēlamajai valodai." #: settings.py:357 msgid "" @@ -706,29 +562,22 @@ msgid "" "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "" +msgstr "URL, kas jāizmanto, atsaucoties uz statiskiem failiem, kas atrodas STATIC_ROOT. Piemērs: \"/static/\" vai \"http://static.example.com/\". Ja šī vērtība nav tukša, tā tiks izmantota kā bāzes ceļš aktīvu definīcijām (multivides Media klase) un staticfiles lietotnei. Ja vērtība nav tukša, tai ir jābeidzas ar slīpsvītru." #: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." -msgstr "" -"Failu glabāšanas dzinējs, ko izmanto, lai savāktu statiskos failus ar " -"kolektīvās pārvaldības komandu. Šajā iestatījumā definētais glabāšanas " -"backend piemērs ir pieejams vietnē django.contrib.staticfiles.storage." -"staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." +msgstr "Failu glabāšanas dzinējs, ko izmanto, lai savāktu statiskos failus ar kolektīvās pārvaldības komandu. Šajā iestatījumā definētais glabāšanas backend piemērs ir pieejams vietnē django.contrib.staticfiles.storage.staticfiles_storage." #: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "" -"Virkne, kas attēlo šīs instalācijas laika joslu. Ņemiet vērā, ka tas ne " -"vienmēr ir servera laika josla. Piemēram, viens serveris var kalpot vairākām " -"Django darbinātām vietnēm, katra ar atsevišķu laika joslu iestatījumu." +msgstr "Virkne, kas attēlo šīs instalācijas laika joslu. Ņemiet vērā, ka tas ne vienmēr ir servera laika josla. Piemēram, viens serveris var kalpot vairākām Django darbinātām vietnēm, katra ar atsevišķu laika joslu iestatījumu." #: settings.py:388 msgid "" @@ -736,11 +585,7 @@ msgid "" "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "" -"Pilns Python ceļš WSGI lietojumprogrammas objektam, ko izmantos Django " -"iebūvētie serveri (piemēram, palaišanas serveris). Django-admin startproject " -"vadības komanda izveidos vienkāršu wsgi.py failu ar tajā pieprasāmo " -"lietojumprogrammu un norādīs šo iestatījumu uz šo programmu." +msgstr "Pilns Python ceļš WSGI lietojumprogrammas objektam, ko izmantos Django iebūvētie serveri (piemēram, palaišanas serveris). Django-admin startproject vadības komanda izveidos vienkāršu wsgi.py failu ar tajā pieprasāmo lietojumprogrammu un norādīs šo iestatījumu uz šo programmu." #: settings.py:396 msgid "Celery" @@ -748,23 +593,19 @@ msgstr "Selerijas" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "" -"Noklusējums: "amqp: //". Noklusējuma starpnieka URL. Tam ir jābūt " -"URL:" +msgstr "Noklusējums: \"amqp://\". Noklusējuma starpnieka URL. Tam ir jābūt URL šādā formā: transport://userid:password@hostname:port/virtual_host Nepieciešama tikai shēmas daļa (transport://), pārējais ir neobligāts, un pēc noklusējuma konkrētās transportēšanas noklusējuma vērtības." #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" -msgstr "" -"Noklusējums: pēc noklusējuma nav iespējots rezultāts. Backend, ko izmanto " -"uzdevumu rezultātu (kapu pieminekļu) glabāšanai. Skatiet http://docs." -"celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" +msgstr "Noklusējums: pēc noklusējuma nav iespējots rezultāts. Backend, ko izmanto uzdevumu rezultātu (kapu pieminekļu) glabāšanai. Skatiet http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -797,9 +638,7 @@ msgstr "Izveidot" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Ievadiet derīgu “iekšējo nosaukumu”, kas sastāv no burtiem, cipariem un " -"pasvītrojumiem." +msgstr "Ievadiet derīgu “iekšējo nosaukumu”, kas sastāv no burtiem, cipariem un pasvītrojumiem." #: views.py:31 msgid "About" @@ -843,9 +682,7 @@ msgstr "Nav pieejamas iestatīšanas opcijas." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "" -"Neviens no rezultātiem šeit nenozīmē, ka nav nepieciešamo atļauju " -"administratīvā uzdevuma veikšanai." +msgstr "Neviens no rezultātiem šeit nenozīmē, ka nav nepieciešamo atļauju administratīvā uzdevuma veikšanai." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo index f937fe9acf91f4ecf4504f608d2b71740de5ff14..9ff8eae3aa4a931daf7dcc9cc2b1ff72c58d6aba 100644 GIT binary patch delta 21 ccmZpdYM0t@lbyrJQo+E?%E)l@Lv}S*07*LrF8}}l delta 21 ccmZpdYM0t@lbyrRRKdX9%EV&xLv}S*07*XvGynhq diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po index 4385092541..a2821bc6b8 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -200,8 +199,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -319,31 +318,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van " -"een database commit." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van een database commit." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -368,8 +366,7 @@ msgstr "" #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." +msgstr "Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." #: settings.py:103 msgid "Django" @@ -378,14 +375,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -393,10 +390,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -420,10 +418,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -480,8 +478,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -505,8 +503,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -524,8 +522,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -572,8 +570,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -597,17 +595,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo index dd58dd4c0a253584cbac2009ddd87eee0547940a..31858fe9cd0ec1044a45d0cdafed6a4d86b6ec36 100644 GIT binary patch delta 21 ccmbQKGE-&43N8*KO9cZnD, 2015 # Daniel Winiarski , 2017 @@ -15,17 +15,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -206,8 +203,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -325,29 +322,30 @@ msgstr "Włącz dla wszystkich aplikacji automatyczny zapis zdarzeń." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "Czas opóźnienia wykonania zadań zależnych od operacji na bazie danych." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -372,9 +370,7 @@ msgstr "" #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie " -"plików." +msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików." #: settings.py:103 msgid "Django" @@ -383,14 +379,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -398,10 +394,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -425,10 +422,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -485,8 +482,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -510,8 +507,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -529,8 +526,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -577,8 +574,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -602,17 +599,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 @@ -646,8 +644,7 @@ msgstr "Utwórz" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Podaj prawidłową 'internal name' składającą się z liter, liczb i podkreśleń." +msgstr "Podaj prawidłową 'internal name' składającą się z liter, liczb i podkreśleń." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index 54f37cf011bb508e655e11a4e84080bab2acd6e0..a9ddfde7063f24151bed416fd32da26a05c082be 100644 GIT binary patch delta 21 ccmeys`GIr8H6{)tO9cZnD, 2011 # Roberto Rosario, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -200,8 +199,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -319,29 +318,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -375,14 +375,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -390,10 +390,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -417,10 +418,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -477,8 +478,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -502,8 +503,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -521,8 +522,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -569,8 +570,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -594,17 +595,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo index e0597163de3b5ee916b77ca06f361304b2b122e1..54576439dc03fb1da62ff3cb04bef471e3ecf331 100644 GIT binary patch delta 2242 zcmYk-e@s?Y9LMp`11LWf4V3Ul;v*oxl^-gKLI|jpqCusFBmv5*t!9=Lt+A)AEL)8w z)tVJ$YyFt4Y|ymfnublc{^%cL&0K0T+p4u(`A0cjy+6;rZl3YIuY1mO@44rE?>U#< zZ$$RK8i}3BOnP0E9^xiqRigAFJ~WX7<&_jEihDwbv55LfEXFIL1*ySxE!Y^5cHm_C z`aDfq&UIglN1 zbf`nfpN??wecxgpj-&7Y7a4;Rxha+BD}$3H8fK$Ah`KjsP=pCse1o)$rm_sFiuy1< zju$ee4%*wNOUrN+oA7V^8kc5qJu|z4m#CM|lwRV#{8`db>YvS)x_Q2KIPd)M9dfV6 z=L9qQ4LyU)=n+S9g49n%XJ#3aeKq46+=v_SZDfr49eJj%qUV%N+T33udcq4a<_;Ed z(u%d{chn#H8v6G)(V2N4$)1M7`Y6)3#;^c?LZ>(-8VoQKJE#{RlhrQtgWp3B&A?J*URXR-VGf>#;HT- z0UgF{CU6X=9E?b8?1;5lkcJ1J$IP z8wQ!)c|5)X`F%eNyPp^Nb;+G}wq9>g9jT@%b`560I7meM|ip7Hk>#dD#NTY^QI zi$@}Suy7y0|HIyMfmIGl0-N|ZA3BQ+0P^HCN>f-w-L_H zHp2g4CJ;qL7qN+8-NmG-KZ}siO^(DSXX<*mHSL?m#SKx)m|Bv{4hj>}b zu_ipfhF{O*u;PDCTf_5C^s935T8YnprE6jF%J+6@A~uI@UL!6AL|y!hU4yH`^Fs6v z@^{1K9>QCY{T*K){y=#l@`;F-8$;&@$qp9HG#c+Byi%`~%#p#AnuL+jNvCI}RMkW) Ts+U()jtmxjkT_CTx-R-Z57pNn delta 2697 zcmYk7Yitx%6o5}@3#CwbRSN~=!WP0Q^AMx?S@61dKH+$y0_s+fNo^$Rw zv-@Aj+qEw*cX4>ZUZJ%jW02+fB2UA|`}3e3DiSfUBV;$MV%!6(;oyM*>!GgO2p8sw z?0`Lt&lIx;oo@^hX<*!SgGeE~3VD^2Kj{o$B5#NY>trCTh9$5J&VnOgGgO;m5Z$r~ zj)Pt}|03ikFY!=)Z$nf|C)9o2Fapm(-TyNz;e7ckoG2VBQoxHLP!*Iy!ILqt9~?VO zKrR1dDe68HzyE6B%vjm%`oZO8(+1TKXu;PVihXdO1KKvLA|4$A$LK2zXxh$_CXEpE8+MU#3nffC&90whWJ0I2KFBx zM5r9%v}}cX?%wglUp+g(#6;KuZ-bveoiCgq(gX)X9j}3^cs*1DTOoNRDX0Q{_e~uTL6OEICh`e7(zA*nSJ|?=LD=_{s1h3A43Db2zeE1QVv@x@*!7Nxs>=HV&d{L|HJ2d zL*Do;pJxo2k8DKvdJ11ozZLM*D|rCXa$12*K-M8^5pAdxQph({jVnZ|5qy;UkeNtC z@Bbk>RF_{Cn(5kb&~Gg~H9|zz|E4d1%?PRDHx09X^ZOxl5xoX&23d{ZsN92)vwbZ} zuYWk2$N5qb4v3B)J}om%$m`oM1``pg#{WcbfUU@SL~~^T(%ZC(^jmO!8_YnjR@)pT z?)SKVi%wBEC=Pi?NQG8{-WfUQXF2f8Nm+^9t{s{ts3x1XDn$PeD0RQx&r=gmt4qIn zTBbvhsX^d_Y-H?LfpR>eHM$1TuUT&!(Yd>5PQP5-&LrC$%S$?K#!97()!v>;#u&R! z#&`+KGgjI*wqr$8cHAT#=8_q+c$4L{xePNNoBY+arqPNeOvX#As!YPors5`Q8_UF9 z&tvb(tzN=)OuOYJjOR8O%i*w9eW#h2>$E1@vT0wNiKVPe##FVZ?N&RTw&T^4jhjYU zyA^xbYO{5ulV9)HWGAZL*t9%-WoE z60V8c*Bp+gtp?s%fm61=>vJ~HimpC;I3#r2c4A2@RXx|ZSyheet`~T2t1GJU+OE#} H>X`W-Rgr+~ diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po index 33430e1e3c..051da5214c 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -182,10 +181,7 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Sua base de dados de back-end está configurada para utilizar SQLite. SQLite " -"deve ser usado apenas em ambientes de desenvolvimento e testes, não de " -"produção." +msgstr "Sua base de dados de back-end está configurada para utilizar SQLite. SQLite deve ser usado apenas em ambientes de desenvolvimento e testes, não de produção." #: literals.py:34 msgid "Days" @@ -202,33 +198,25 @@ msgstr "Minutos" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "" -"Restringe os dados exportados para o app_label ou app_label.ModelName " -"especificado." +msgstr "Restringe os dados exportados para o app_label ou app_label.ModelName especificado." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"Base de dados a partir da qual os dados serão exportados. A base de dados " -"\"default\" será utilizada no caso de omissão." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "Base de dados a partir da qual os dados serão exportados. A base de dados \"default\" será utilizada no caso de omissão." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"Base de dados para a qual os dados serão importados. A base de dados " -"\"default\" será utilizada no caso de omissão." +msgstr "Base de dados para a qual os dados serão importados. A base de dados \"default\" será utilizada no caso de omissão." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" -"Força a conversão da base de dados ainda que a base de dados receptora não " -"esteja vazia." +msgstr "Força a conversão da base de dados ainda que a base de dados receptora não esteja vazia." #: menus.py:10 msgid "System" @@ -333,51 +321,30 @@ msgstr "Ativar automaticamente o registro de todos os aplicativos." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Tempo para atrasar as tarefas de fundo que dependem da propagação de " -"informação na base de dados." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Tempo para atrasar as tarefas de fundo que dependem da propagação de informação na base de dados." #: settings.py:33 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Uma lista de strings designando todas as aplicações que estão habilitadas " -"nesta instalação Django. Cada string deve ser um caminho de Python para: uma " -"classe de configuração da aplicação (preferencial); ou um pacote contendo " -"uma aplicação." #: settings.py:43 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"Uma lista de strings designando todas as aplicações que estão habilitadas " -"nesta instalação Django. Cada string deve ser um caminho de Python para: uma " -"classe de configuração da aplicação (preferencial); ou um pacote contendo " -"uma aplicação." #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -386,14 +353,11 @@ msgstr "" #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Habilite registro de erros fora das capacidades do registro de erros do " -"sistema." +msgstr "Habilite registro de erros fora das capacidades do registro de erros do sistema." #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" -"Caminho para o arquivo de registro que rastreará erros durante a produção." +msgstr "Caminho para o arquivo de registro que rastreará erros durante a produção." #: settings.py:82 msgid "Name to be displayed in the main menu." @@ -405,9 +369,7 @@ msgstr "URL da instalação ou homepage do projeto." #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Um suporte de armazenamento que todos os trabalhadores podem usar para " -"compartilhar arquivos." +msgstr "Um suporte de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." #: settings.py:103 msgid "Django" @@ -416,45 +378,27 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"Uma lista de strings representando os nomes de host/domínio que este site " -"pode utilizar. Esta é uma medida de segurança para prevenir ataques " -"virtuais que utilizem Host header do protocolo HTTP, os quais são " -"possíveis mesmo sob configurações aparentemente seguras de servidor web. " -"Valores nesta lista podem ser nomes totalmente qualificados (por exemplo " -"'www.example.com'), que nestes casos coincidirão exatamente com as " -"requisições do Host header (sem considerar maiúsculas ou minúsculas, não " -"incluindo porta). Valores que começam com ponto podem ser usados como " -"curingas para subdomínios: \".example.com\" coincidirá com \"example.com\", " -"\"www.example.com\" e quaisquer outros subdomínios de \"example.com\". Um " -"valor de '*' coincidirá com qualquer outro; nesse caso você será responsável " -"porfornecer sua própria validação para o Host header (talvez num middleware; " -"assim sendo o middleware deve ser listado primeiro em MIDDLEWARE)." +msgstr "Uma lista de strings representando os nomes de host/domínio que este site pode utilizar. Esta é uma medida de segurança para prevenir ataques virtuais que utilizem Host header do protocolo HTTP, os quais são possíveis mesmo sob configurações aparentemente seguras de servidor web. Valores nesta lista podem ser nomes totalmente qualificados (por exemplo 'www.example.com'), que nestes casos coincidirão exatamente com as requisições do Host header (sem considerar maiúsculas ou minúsculas, não incluindo porta). Valores que começam com ponto podem ser usados como curingas para subdomínios: \".example.com\" coincidirá com \"example.com\", \"www.example.com\" e quaisquer outros subdomínios de \"example.com\". Um valor de '*' coincidirá com qualquer outro; nesse caso você será responsável porfornecer sua própria validação para o Host header (talvez num middleware; assim sendo o middleware deve ser listado primeiro em MIDDLEWARE)." #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." -msgstr "" -"Quando indicado como Verdadeiro, caso a URL requisitada não coincida com os " -"padrões na URLconf e não termine com uma barra, haverá um redirecionamento " -"HTTP para a mesma URL com uma barra adicionada. Note que o redirecionamento " -"pode fazer com que quaisquer dados submetidos numa requisição POST sejam " -"perdidos. A configuração APPEND_SLASH é usada apenas se o CommonMiddleware " -"estiver instalado (veja Middleware). Veja também PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." +msgstr "Quando indicado como Verdadeiro, caso a URL requisitada não coincida com os padrões na URLconf e não termine com uma barra, haverá um redirecionamento HTTP para a mesma URL com uma barra adicionada. Note que o redirecionamento pode fazer com que quaisquer dados submetidos numa requisição POST sejam perdidos. A configuração APPEND_SLASH é usada apenas se o CommonMiddleware estiver instalado (veja Middleware). Veja também PREPEND_WWW." #: settings.py:139 msgid "" @@ -469,13 +413,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"Um dicionário contendo as configurações de todas as bases de dados a serem " -"usadas com Django. Trata-se de um dicionário aninhado cujo conteúdo mapeia " -"pseudônimos de bases de dados para um dicionário contendo as opções para " -"cada base de dados específica. O parâmetro DATABASES deve configurar uma " -"base de dados padrão; qualquer número de bases de dados adicionais deve ser " -"especificado." +msgstr "Um dicionário contendo as configurações de todas as bases de dados a serem usadas com Django. Trata-se de um dicionário aninhado cujo conteúdo mapeia pseudônimos de bases de dados para um dicionário contendo as opções para cada base de dados específica. O parâmetro DATABASES deve configurar uma base de dados padrão; qualquer número de bases de dados adicionais deve ser especificado." #: settings.py:158 msgid "" @@ -483,28 +421,14 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo em bytes que um corpo " -"de requisição pode atingir antes que se gere uma Operação Suspeita " -"(RequestDataTooBig). A checagem é feita quando se acessa request.body ou " -"request.POST e é calculada em relação ao tamanho total da solicitação, " -"excluindo qualquer arquivo de carga de dados. Você pode configurá-la para " -"\"nenhuma\" para desativar a verificação. Aplicações para as quais se " -"esperam publicações de tamanho muito grande devem ajustar esse parâmetro. A " -"quantidade de dados da requisição está correlacionada com a quantidade de " -"memória necessária para processá-la e povoar os dicionários GET e POST. As " -"requisições grandes podem ser usadas como vetor de ataques de negação de " -"serviço - \"denial-of-service\" - caso o parâmetro não seja preenchido. Dado " -"que os servidores webnormalmente não realizam uma inspeção profunda das " -"requisições, não é possível realizar uma verificação similar nesse nível. " -"Veja também FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo em bytes que um corpo de requisição pode atingir antes que se gere uma Operação Suspeita (RequestDataTooBig). A checagem é feita quando se acessa request.body ou request.POST e é calculada em relação ao tamanho total da solicitação, excluindo qualquer arquivo de carga de dados. Você pode configurá-la para \"nenhuma\" para desativar a verificação. Aplicações para as quais se esperam publicações de tamanho muito grande devem ajustar esse parâmetro. A quantidade de dados da requisição está correlacionada com a quantidade de memória necessária para processá-la e povoar os dicionários GET e POST. As requisições grandes podem ser usadas como vetor de ataques de negação de serviço - \"denial-of-service\" - caso o parâmetro não seja preenchido. Dado que os servidores webnormalmente não realizam uma inspeção profunda das requisições, não é possível realizar uma verificação similar nesse nível. Veja também FILE_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:178 msgid "" @@ -519,19 +443,13 @@ msgid "" "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "" -"Valor padrão: [] (Lista vazia). Lista de objetos de expressões regulares " -"compilados representando strings de User-Agent que não tem permissão para " -"visitar nenhuma página em todo o sistema. Use contra maus robôs/rastradores. " -"Este parâmetro só é usado com o CommonMiddleware instalado (veja Middleware)." +msgstr "Valor padrão: [] (Lista vazia). Lista de objetos de expressões regulares compilados representando strings de User-Agent que não tem permissão para visitar nenhuma página em todo o sistema. Use contra maus robôs/rastradores. Este parâmetro só é usado com o CommonMiddleware instalado (veja Middleware)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "" -"Valor padrão: 'django.core.mail.backends.smtp.EmailBackend'. O back-end " -"usado para enviar e-mails." +msgstr "Valor padrão: 'django.core.mail.backends.smtp.EmailBackend'. O back-end usado para enviar e-mails." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." @@ -543,45 +461,31 @@ msgid "" "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "" -"Valor padrão: '' (String vazia). Senha utilizada para o servidor SMTP " -"definido em EMAIL_HOST. Este parâmetro é usado junto ao EMAIL_HOST_USER " -"durante a autenticação no servidor SMTP. Se qualquer um desses parâmetros " -"estiver vazio, Django não tentará a autenticação." +msgstr "Valor padrão: '' (String vazia). Senha utilizada para o servidor SMTP definido em EMAIL_HOST. Este parâmetro é usado junto ao EMAIL_HOST_USER durante a autenticação no servidor SMTP. Se qualquer um desses parâmetros estiver vazio, Django não tentará a autenticação." #: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "" -"Valor padrão '' (String vazia). Nome de usuário utilizado para o servidor " -"SMTP definido em EMAIL_HOST. Se estiver vazio, Django não tentará a " -"autenticação." +msgstr "Valor padrão '' (String vazia). Nome de usuário utilizado para o servidor SMTP definido em EMAIL_HOST. Se estiver vazio, Django não tentará a autenticação." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "" -"Valor padrão: 25. Porta usada para o servidor SMTP definido em EMAIL_HOST." +msgstr "Valor padrão: 25. Porta usada para o servidor SMTP definido em EMAIL_HOST." #: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "" -"Valor padrão: Nenhum. Especifica um tempo de espera em segundos para " -"operações de bloqueio, como tentativas de conexão." +msgstr "Valor padrão: Nenhum. Especifica um tempo de espera em segundos para operações de bloqueio, como tentativas de conexão." #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "" -"Valor padrão: Falso. Define se deve ser utilizada uma conexão TLS (segura) " -"quando se comunica com o servidor SMTP. Isto é usado para conexões " -"explícitas de TLS, geralmente na porta 587. Se você está experimentando " -"conexões suspensas, consulte o parâmetro de TLS implícita EMAIL_USE_SSL." +msgstr "Valor padrão: Falso. Define se deve ser utilizada uma conexão TLS (segura) quando se comunica com o servidor SMTP. Isto é usado para conexões explícitas de TLS, geralmente na porta 587. Se você está experimentando conexões suspensas, consulte o parâmetro de TLS implícita EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -591,39 +495,23 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "" -"Valor padrão: Falso. Define se deve ser utilizada uma conexão implícita TLS " -"(segura) ao comunicar-se com o servidor SMTP. Na maior parte da documentação " -"de e-mail este tipo de conexão TLS é conhecida como SSL. Geralmente é usada " -"a porta 465. Se você está experimentando problemas, veja o parâmetro de TSL " -"explícita EMAIL_USE_TLS. Tenha em mente que EMAIL_USE_TLS / EMAIL_USE_SSL " -"são mutuamente excludentes, razão pela qual apenas um dos parâmetros pode " -"ser Verdadeiro." +msgstr "Valor padrão: Falso. Define se deve ser utilizada uma conexão implícita TLS (segura) ao comunicar-se com o servidor SMTP. Na maior parte da documentação de e-mail este tipo de conexão TLS é conhecida como SSL. Geralmente é usada a porta 465. Se você está experimentando problemas, veja o parâmetro de TSL explícita EMAIL_USE_TLS. Tenha em mente que EMAIL_USE_TLS / EMAIL_USE_SSL são mutuamente excludentes, razão pela qual apenas um dos parâmetros pode ser Verdadeiro." #: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo (em bytes) que um " -"upload terá antes de ser transmitida ao sistema de arquivos. Veja " -"Administração de arquivos para detalhes. Veja ainda " -"DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo (em bytes) que um upload terá antes de ser transmitida ao sistema de arquivos. Veja Administração de arquivos para detalhes. Veja ainda DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "" -"Valor padrão: '/accounts/login/' A URL onde as requisições são " -"redirecionadas para iniciar a sessão, especialmente quando se utiliza o " -"decorador login_required(). Este parâmetro também aceita padrões de URL que " -"podem ser usados para reduzir a duplicação de configuração, uma vez que você " -"não precisa definir a URL em dois lugares (parâmetros e URLconf)." +msgstr "Valor padrão: '/accounts/login/' A URL onde as requisições são redirecionadas para iniciar a sessão, especialmente quando se utiliza o decorador login_required(). Este parâmetro também aceita padrões de URL que podem ser usados para reduzir a duplicação de configuração, uma vez que você não precisa definir a URL em dois lugares (parâmetros e URLconf)." #: settings.py:293 msgid "" @@ -632,19 +520,13 @@ msgid "" "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "" -"Valor padrão: '/accounts/profile/' A URL para onde são redirecionadas as " -"requisições após o início da sessão quando a vista contrib.auth.login não " -"obtêm o próximo parâmetro. Isto é utilizado pelo decorador " -"login_required() , por exemplo. Este parâmetro também aceita padrões de URL " -"que podem ser usados para reduzir a duplicação de configuração, uma vez que " -"você não precisa definir a URL em dois lugares (parâmetros e URLconf)." +msgstr "Valor padrão: '/accounts/profile/' A URL para onde são redirecionadas as requisições após o início da sessão quando a vista contrib.auth.login não obtêm o próximo parâmetro. Isto é utilizado pelo decorador login_required() , por exemplo. Este parâmetro também aceita padrões de URL que podem ser usados para reduzir a duplicação de configuração, uma vez que você não precisa definir a URL em dois lugares (parâmetros e URLconf)." #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -691,8 +573,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -716,26 +598,19 @@ msgstr "Celery" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "" -"Valor padrão: \"amqp://\". URL do intermediário padrão. Deve ser uma URL em " -"forma de: \"transport://userid:password@hostname:port/virtual_host\". Apenas " -"a parte de esquema (transport://) é requerida, o resto é opcional e " -"determina os valores padrão específicos de transportes." +msgstr "Valor padrão: \"amqp://\". URL do intermediário padrão. Deve ser uma URL em forma de: \"transport://userid:password@hostname:port/virtual_host\". Apenas a parte de esquema (transport://) é requerida, o resto é opcional e determina os valores padrão específicos de transportes." #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" -msgstr "" -"Valor padrão: Sem back-end de resultado habilitado por padrão. O back-end " -"usado para armazenar resultados de tarefas (tombstones). Consulte http://" -"docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend. " +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" +msgstr "Valor padrão: Sem back-end de resultado habilitado por padrão. O back-end usado para armazenar resultados de tarefas (tombstones). Consulte http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend. " #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -768,8 +643,7 @@ msgstr "Criar" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Insira um 'nome interno' válido que contenha letras, números e subtraços." +msgstr "Insira um 'nome interno' válido que contenha letras, números e subtraços." #: views.py:31 msgid "About" @@ -813,9 +687,7 @@ msgstr "Não há opções de configuração disponíveis." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "" -"Nenhum resultado aqui significa que o usuário não possui as permissões " -"necessárias para realizar tarefas administrativas." +msgstr "Nenhum resultado aqui significa que o usuário não possui as permissões necessárias para realizar tarefas administrativas." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo index 465085ac5625a634e3ddab6604f5d472fc6de6b1..847df109cec12c7fd0b4937e7189472a66771f03 100644 GIT binary patch delta 3646 zcmaKu3v3j}8GwJ=hcSlO6hnC9iNT2thYiM1;x@c-aAIR(oL9>udv|-jrRTllcF$ni z^qQccN{!m6DhXDSKGG_pY8%v8YSTwV5LRU=iV_v|k*G8zkkFQ(NLAXzttkEe-E|wO zQb+#xoB4Nk=6}tcUw@1VX=1z- zHpA|SLr~{^8*V8RIRody*bO2cTvQ`6qeA4dT9FRsJv~cgMY)vZ_jKMu5t}121-=W} zOWuQ1;fIj#68tS~Ou$KMh13J1< zjMXqwWl1sf$H^2RFg3aNZJ;F}Me|;rdOO{{iFv29d9@Ko?fM#P~PML=y1vMv*V0 zpMYw>!?%dcrhAk;5p6jE)uEG69XJIwA}_*{T7I4mfAS6w4P_09t%41(6RvcBauA-)WWwsi7RQf=m2blZk+hvM&}zSNSFLN zns5bHGyW^w0k1{+PAX^`;~w}!crSbo##%!CC{%}Dgwx?!sHu1rQonL3(*Fahqm`xB z(4rccLNNzwPLII9!Siq?IX$;Zq?hp};4-FWHdY&iX zr(yf8Yz7ZPmXPP+6MT0WZi6Lu*YOyWAFCk$dp3ydW#ZM%Y*H?A=N6HV7{9VDjLfgL zhoO80s%Ni5O~Knxi}5}9N%$`~53ZwPInmM!HP>mV5g3Fw!0$kOkW(IN-PBeEXq#yyZ=$UU$YJ_={Rry_nIYLWc}>il0oqn^UW@SPnZUq@eYhscAB zABQiO=*;dG$?@U>31p7!+R0@BN1*0(gv5UcFT)CUcym{HwO;IJ6TbiF-6B_b|I>R3 zFZ}L(B7Z@@^nPjz)_j(09lf_lWEMOD)!`q&l7{4YIt}n8s8xFr>P7TE)MK}X{HVSU zrr^i7<3apwDTOhIapRzzDTvKgUXq#V)nu1(MX zUPMpJ1IQq<0Qn5E37L*;L$sEt)!@`<0e%tTo{}R7P5tLzC4|c=_yO4oReK1TZ1d^p z`L!k$a09XyS%~P7;xd#w5G~r-2$!VXiF~}xoE$VZ~g8(NK9 z98A~+6Tb0`pRs&%$jN3+!Zs<#%V(`&J7w}r$y)>VXyuyPvQl5S@pGo=+2&Bjc1^)f z+l7MT4ye}iE#FC+w3D?xlg%Y9pU)lF?C#&(-?eprUvF=Ji`jnI8q8^OEh-hb@Gl9aL3c-tf_%*tDS#-v%% z@;uu&DLd`Bj_>4L&ot?z9y{e&CYj}Rv$5P%@MUO8XtH1#*i66!%XoZ{ zG0uXt(N%HQ!X$U4J(%~0&5)HX+M~1De_3ADcB@&nuA^=B=x^86PaXa9h8vf+^(Gu5 zZ)a@{xLt6Pwn=e(kZ&dY}{Z7TM`*{F`dii*cdkq<^W=m(tI7^ z+q~`ig<_Pbf^G4s?+n@565(mmJXvARnuBkxeAY=?<4=;qk0q_e^hd$*Sdl>BUNU17 wEINK+WsbcHV@KmA6_^{?N*;q45~ZAGFsC^Q0v&o&Wt)MVl_eXy4^&qC8?8ZFh5!Hn delta 3242 zcmY+FYiw0j7ROf~6sW~gsG`-{Qv_{kDW$`+mWK#MP!JzQ5vFo_?`iLmJNK4*PkA_% ziy?+d1{5U(4eAG9s6h?s7tjyt$e0>ubQm)OVn#rdnW&hFj)Nxif%*NW;O!8ak&|D z+1qd=`~dQueH_~-pcZf%PJp9%Foe~^GB^`9!wxta`mhe>;Z(R6mNCD*Lxn}zFw{gR zA&a#$VF$B+!)vk6Lk(1Oh1nQ53CeDRIL$hszP}L~J6;Bh;qoiZ9;RtU4Slgch6At+ zcXu_&s(5tNA?x)K0=X*e_2u>w))QXZAbV z{|vQ&)x@cq>fN|W8%#raW)NxvJ79q^?J+7^`C+Ko9))t{=TK>I9(KYDa3$=VVpawB zK{jUxp(c0-YJ%fXAv_7?na`lc`2yY!&&BWOH{t*3G%Rk4KG+1+aS&=j4?~4wcWgfe zaf&?;<B?5(4iCez#PlHUx()kC8+ido{fgbgxo`#C0p-EtP$4)4`PmsBH^Ax{ zkq1`6@z{kfDq5KjFNNFS7AD#aH)EI0GJ6Jl8)QvZOQve#6_E35+h7Mg3KzojkWX#) zTz1WOX}B1cGP~?$bp8+T&*JVqCB*-4^UZ!uL+>K9hlneZc62}h6+74Wi{6QPo88XN^@K!+XAgSD`mI6Y4L;BvDEu`6%kQY%o|eXCiP z7i(5VN%lUxfIW^tE2iUCnf(CQ!xCn=hcl$BbzK*k4TIHYU-Q289^I#0-D}LgqWvkD zgge)AS^N+^r2yf(5yxiONJc7b;uVL0v#8sN;4hZvOx(IZr^=W*wX@xqKI_ zgD*g3_aC8>?^7sGoP{IdS5O}N4zhN;(9L?)vFko=IJg#a(b*$V?T5gXuX?CCM9aFZtZ7RsalgWAAIFB-QNUW46UprQ%ZK!qX+ zwZk0D!>up}zk!PR`d$(XZt07z(pOW_#dQG^W}D~pKLDSET3{)L#v20{!fLn#cENI3 zI6$SI%8Rf84nwW%Td3q3yMf(f|0x~*rx^2xrvw;Y56jG$O5$tdx{jO{z~|xdejsk& z4i&23Ms~sOiYj&|)J|3837ugTlG_Fl$sGPm$}1`*NHN8;VbS8{a)n6+hlNF(nTl?T z%<#D^uCLd5nf9|6s@9?Ts9Z)|eiM`M+E{d5YzxZl2}p^hay@E8x)pV!wjhOQ9|3X4Hfxp}P^cs|})yg=iVaJ^b6&?Whnh zM5Rc@LAu-uBY0GzR;02NEkcCfiqVxwWfkg1+)d`947v&_>25?7NQpHOk(=QuQQ|#_ zxR-uWHeub1=4nV>B-_wtbg|S>*@${BHoygF7P=bMqAqj`YD79(T#9xp`gy4u`lS5* z(yFAF_xmz#;Ai?AH=TCey&Ij&3mLa3?Ij&Q;{+)`?<~IG&Gcn4^8tP6oXxa2OWZ`t z$p<-onNMX0(n+Vsb6h8x4FbMhwKYg(Gfux7q?{nz?zkDp?e9yRR`&!gKS%u^sW& z)H&K~i___Q;m5;I`Ya^p1Uau~z<2U=?)5z<>m=N?_tP#1GKs*|KxwyK@7NDUGF*7H zPlk3KcVXy(;RC+sU)-)fYjpDNfHNR>B~o6%*mP&lbj)Zj_ovT>?w#K}W$2C6>Y}0j I8%j(54_f%numAu6 diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po index 0fd5641297..c4e4e2402c 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -62,20 +60,14 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Selectați intrările pentru a fi eliminate. Țineți Control pentru a selecta " -"mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai " -"jos sau faceți dublu clic pe listă pentru a activa acțiunea." +msgstr "Selectați intrările pentru a fi eliminate. Țineți Control pentru a selecta mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai jos sau faceți dublu clic pe listă pentru a activa acțiunea." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" -"Selectați intrările pentru a fi adăugate. Țineți Control pentru a selecta " -"mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai " -"jos sau faceți dublu clic pe listă pentru a activa acțiunea." +msgstr "Selectați intrările pentru a fi adăugate. Țineți Control pentru a selecta mai multe intrări. După finalizarea selecției, faceți clic pe butonul de mai jos sau faceți dublu clic pe listă pentru a activa acțiunea." #: generics.py:287 msgid "Add all" @@ -179,17 +171,13 @@ msgstr "Unelte" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "" -"Această caracteristică a fost depreciată și va fi eliminată într-o versiune " -"viitoare." +msgstr "Această caracteristică a fost depreciată și va fi eliminată într-o versiune viitoare." #: literals.py:16 msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"Backendul bazei de date este setat să utilizeze SQLite. SQLite ar trebui " -"folosit numai pentru dezvoltare și testare, nu pentru producție." +msgstr "Backendul bazei de date este setat să utilizeze SQLite. SQLite ar trebui folosit numai pentru dezvoltare și testare, nu pentru producție." #: literals.py:34 msgid "Days" @@ -206,33 +194,25 @@ msgstr "Minute" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." -msgstr "" -"Restricționează datele care fac obiectul unui dumping la etichetele " -"app_label sau app_label.ModelName specificate." +msgstr "Restricționează datele care fac obiectul unui dumping la etichetele app_label sau app_label.ModelName specificate." #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"Baza de date din care vor fi exportate datele. Dacă este omisă, va fi " -"utilizată baza de date numită \"default\" ." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "Baza de date din care vor fi exportate datele. Dacă este omisă, va fi utilizată baza de date numită \"default\" ." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"Baza de date în care vor fi importate datele. Dacă este omisă, va fi " -"utilizată baza de date numită \"default\"." +msgstr "Baza de date în care vor fi importate datele. Dacă este omisă, va fi utilizată baza de date numită \"default\"." #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" -"Forțați conversia bazei de date chiar dacă baza de date de primire nu este " -"goală." +msgstr "Forțați conversia bazei de date chiar dacă baza de date de primire nu este goală." #: menus.py:10 msgid "System" @@ -337,69 +317,43 @@ msgstr "Activați juranlizarea automată la toate aplicațiile." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Timpul de întârziere pentru sarcini de fundal care depind de propagarea " -"schimbărilor în baza de date." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Timpul de întârziere pentru sarcini de fundal care depind de propagarea schimbărilor în baza de date." #: settings.py:33 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"O listă de șiruri care indică toate aplicațiile activate în această " -"instalare Django. Fiecare șir ar trebui să fie o cale Python punctată la: o " -"clasă de configurare a aplicației (preferată) sau un pachet care conține o " -"aplicație." #: settings.py:43 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"O listă de șiruri care indică toate aplicațiile activate în această " -"instalare Django. Fiecare șir ar trebui să fie o cale Python punctată la: o " -"clasă de configurare a aplicației (preferată) sau un pachet care conține o " -"aplicație." #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." -msgstr "" -"Numele afișării atașate ancorei de marcă din meniul principal. Aceasta este " -"și perspectiva la care utilizatorii vor fi redirecționați după conectare." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." +msgstr "Numele afișării atașate ancorei de marcă din meniul principal. Aceasta este și perspectiva la care utilizatorii vor fi redirecționați după conectare." #: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Obiectele numerice care vor fi afișate pe pagină." #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" -"Activați înregistrarea erorilor în afara capabilităților de înregistrare a " -"erorilor de sistem." +msgstr "Activați înregistrarea erorilor în afara capabilităților de înregistrare a erorilor de sistem." #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" -"Calea către fișierul jurnal care va urmări erorile în timpul producției." +msgstr "Calea către fișierul jurnal care va urmări erorile în timpul producției." #: settings.py:82 msgid "Name to be displayed in the main menu." @@ -411,9 +365,7 @@ msgstr "Adresa URL a instalării sau a paginii de pornire a proiectului." #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un backend de stocare pe care toți lucrătorii îl pot folosi pentru " -"partajarea fișierelor." +msgstr "Un backend de stocare pe care toți lucrătorii îl pot folosi pentru partajarea fișierelor." #: settings.py:103 msgid "Django" @@ -422,53 +374,33 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"O listă de șiruri reprezentând numele gazdă / domenii pe care acest site le " -"poate difuza. Aceasta este o măsură de securitate pentru a preveni atacurile " -"de antet gazdă HTTP, care sunt posibile chiar și în cazul multor " -"configurații aparent confortabile ale serverului web. Valorile din această " -"listă pot fi nume calificate complet (de exemplu, \"www.example.com\"), caz " -"în care acestea vor fi potrivite exact cu antetul gazdei gazdă (fără " -"majuscule, fără a include portul). O valoare care începe cu o un punct poate " -"fi folosită ca un wildcard subdomeniu: '.example.com' se va potrivi cu " -"example.com, www.example.com și orice alt subdomeniu al example.com. O " -"valoare de '*' se va potrivi cu orice; în acest caz, sunteți responsabil să " -"vă asigurați validarea propriu-zisă a antetului Host (poate într-un " -"middleware, dacă acest lucru trebuie să fie menționat mai întâi în " -"MIDDLEWARE)." +msgstr "O listă de șiruri reprezentând numele gazdă / domenii pe care acest site le poate difuza. Aceasta este o măsură de securitate pentru a preveni atacurile de antet gazdă HTTP, care sunt posibile chiar și în cazul multor configurații aparent confortabile ale serverului web. Valorile din această listă pot fi nume calificate complet (de exemplu, \"www.example.com\"), caz în care acestea vor fi potrivite exact cu antetul gazdei gazdă (fără majuscule, fără a include portul). O valoare care începe cu o un punct poate fi folosită ca un wildcard subdomeniu: '.example.com' se va potrivi cu example.com, www.example.com și orice alt subdomeniu al example.com. O valoare de '*' se va potrivi cu orice; în acest caz, sunteți responsabil să vă asigurați validarea propriu-zisă a antetului Host (poate într-un middleware, dacă acest lucru trebuie să fie menționat mai întâi în MIDDLEWARE)." #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." -msgstr "" -"Când este setat la True, dacă adresa URL a solicitării nu se potrivește cu " -"niciunul dintre modelele din URLconf și nu se termină într-un / , " -"redirecționarea HTTP se emite aceluiași URL cu / adăugat. Rețineți că " -"redirecționarea poate duce la pierderea datelor transmise într-o solicitare " -"POST. Setarea APPEND_SLASH este utilizată numai dacă este instalat " -"CommonMiddleware (consultați Middleware). Consultați și PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." +msgstr "Când este setat la True, dacă adresa URL a solicitării nu se potrivește cu niciunul dintre modelele din URLconf și nu se termină într-un / , redirecționarea HTTP se emite aceluiași URL cu / adăugat. Rețineți că redirecționarea poate duce la pierderea datelor transmise într-o solicitare POST. Setarea APPEND_SLASH este utilizată numai dacă este instalat CommonMiddleware (consultați Middleware). Consultați și PREPEND_WWW." #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." -msgstr "" -"Lista de validatori folosită pentru a verifica puterea parolelor " -"utilizatorului." +msgstr "Lista de validatori folosită pentru a verifica puterea parolelor utilizatorului." #: settings.py:146 msgid "" @@ -477,13 +409,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"Un dicționar care conține setările pentru toate bazele de date care vor fi " -"utilizate cu Django. Acesta este un dicționar imbricat al cărui conținut " -"alcătuiește un alias de bază de date într-un dicționar care conține " -"opțiunile pentru o bază de date individuală. Setarea DATABASES trebuie să " -"configureze o bază de date implicită; poate fi specificat orice număr de " -"baze de date adiționale." +msgstr "Un dicționar care conține setările pentru toate bazele de date care vor fi utilizate cu Django. Acesta este un dicționar imbricat al cărui conținut alcătuiește un alias de bază de date într-un dicționar care conține opțiunile pentru o bază de date individuală. Setarea DATABASES trebuie să configureze o bază de date implicită; poate fi specificat orice număr de baze de date adiționale." #: settings.py:158 msgid "" @@ -491,39 +417,21 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă în octeți pe care un " -"corp de solicitare ar putea fi înainte ca o SuspiciousOperation " -"(RequestDataTooBig) să fie ridicată. Verificarea se face când se accesează " -"request.body sau request.POST și se calculează în funcție de dimensiunea " -"totală a solicitării, excluzând datele de încărcare a fișierelor. Puteți " -"seta această opțiune la None pentru a dezactiva verificarea. Aplicațiile " -"care sunt așteptate să primească posturi neobișnuit de mari trebuie să " -"ajusteze această setare. Suma datelor solicitate este corelată cu cantitatea " -"de memorie necesară pentru procesarea solicitării și cu conținutul " -"dicționarelor GET și POST. Solicitările mari ar putea fi folosite ca vector " -"de atac al refuzului de serviciu dacă nu sunt bifate. Întrucât serverele web " -"nu efectuează în mod obișnuit o inspecție profundă a solicitărilor, nu este " -"posibil să efectuați o verificare similară la acel nivel. Consultați și " -"FILE_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă în octeți pe care un corp de solicitare ar putea fi înainte ca o SuspiciousOperation (RequestDataTooBig) să fie ridicată. Verificarea se face când se accesează request.body sau request.POST și se calculează în funcție de dimensiunea totală a solicitării, excluzând datele de încărcare a fișierelor. Puteți seta această opțiune la None pentru a dezactiva verificarea. Aplicațiile care sunt așteptate să primească posturi neobișnuit de mari trebuie să ajusteze această setare. Suma datelor solicitate este corelată cu cantitatea de memorie necesară pentru procesarea solicitării și cu conținutul dicționarelor GET și POST. Solicitările mari ar putea fi folosite ca vector de atac al refuzului de serviciu dacă nu sunt bifate. Întrucât serverele web nu efectuează în mod obișnuit o inspecție profundă a solicitărilor, nu este posibil să efectuați o verificare similară la acel nivel. Consultați și FILE_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." -msgstr "" -"Implicit: 'webmaster @ localhost' Adresa de e-mail implicită pentru a fi " -"utilizată pentru diverse corespondențe automate de la administratorii site-" -"ului. Aceasta nu include mesajele de eroare trimise ADMINS și MANAGERS; " -"pentru asta, vezi SERVER_EMAIL." +msgstr "Implicit: 'webmaster @ localhost' Adresa de e-mail implicită pentru a fi utilizată pentru diverse corespondențe automate de la administratorii site-ului. Aceasta nu include mesajele de eroare trimise ADMINS și MANAGERS; pentru asta, vezi SERVER_EMAIL." #: settings.py:188 msgid "" @@ -531,25 +439,17 @@ msgid "" "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "" -"Implicit: [] (Listă goală). Lista de obiecte de expresie obișnuită compilate " -"care reprezintă șiruri de caractere ale utilizatorilor care nu au " -"permisiunea de a vizita nicio pagină, la nivel de sistem. Utilizați acest " -"lucru pentru roboți / crawlere rele. Acest lucru este folosit numai dacă " -"este instalat CommonMiddleware (consultați Middleware)." +msgstr "Implicit: [] (Listă goală). Lista de obiecte de expresie obișnuită compilate care reprezintă șiruri de caractere ale utilizatorilor care nu au permisiunea de a vizita nicio pagină, la nivel de sistem. Utilizați acest lucru pentru roboți / crawlere rele. Acest lucru este folosit numai dacă este instalat CommonMiddleware (consultați Middleware)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "" -"Implicit: 'django.core.mail.backends.smtp.EmailBackend'. Backend-ul de " -"utilizat pentru trimiterea de e-mailuri." +msgstr "Implicit: 'django.core.mail.backends.smtp.EmailBackend'. Backend-ul de utilizat pentru trimiterea de e-mailuri." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." -msgstr "" -"Implicit: \"localhost\". Gazda de utilizat pentru trimiterea de e-mailuri." +msgstr "Implicit: \"localhost\". Gazda de utilizat pentru trimiterea de e-mailuri." #: settings.py:214 msgid "" @@ -557,44 +457,31 @@ msgid "" "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "" -"Implicit: '' (Șir gol). Parolă de utilizat pentru serverul SMTP definit în " -"EMAIL_HOST. Această setare este utilizată împreună cu EMAIL_HOST_USER atunci " -"când se autentifică la serverul SMTP. Dacă oricare dintre aceste setări este " -"goală, Django nu va încerca autentificarea." +msgstr "Implicit: '' (Șir gol). Parolă de utilizat pentru serverul SMTP definit în EMAIL_HOST. Această setare este utilizată împreună cu EMAIL_HOST_USER atunci când se autentifică la serverul SMTP. Dacă oricare dintre aceste setări este goală, Django nu va încerca autentificarea." #: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "" -"Implicit: '' (Șir gol). Utilizator de utilizat pentru serverul SMTP definit " -"în EMAIL_HOST. Dacă este gol, Django nu va încerca autentificarea." +msgstr "Implicit: '' (Șir gol). Utilizator de utilizat pentru serverul SMTP definit în EMAIL_HOST. Dacă este gol, Django nu va încerca autentificarea." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "" -"Implicit: 25. Portul de utilizat pentru serverul SMTP definit în EMAIL_HOST." +msgstr "Implicit: 25. Portul de utilizat pentru serverul SMTP definit în EMAIL_HOST." #: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." -msgstr "" -"Implicit: Niciuna. Specifică un interval de timp în secunde pentru blocarea " -"operațiilor, cum ar fi încercarea de conectare." +msgstr "Implicit: Niciuna. Specifică un interval de timp în secunde pentru blocarea operațiilor, cum ar fi încercarea de conectare." #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "" -"Implicit: Fals. Dacă să utilizați o conexiune TLS (securizată) atunci când " -"vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS " -"explicite, în general pe portul 587. Dacă întâmpinați conexiuni suspendate, " -"consultați setarea implicită TLS EMAIL_USE_SSL." +msgstr "Implicit: Fals. Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în general pe portul 587. Dacă întâmpinați conexiuni suspendate, consultați setarea implicită TLS EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -604,39 +491,23 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "" -"Implicit: Fals. Dacă să utilizați o conexiune implicită TLS (securizată) " -"atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, " -"acest tip de conexiune TLS este denumit SSL. În general, este folosit pe " -"portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS " -"EMAIL_USE_TLS. Rețineți că EMAIL_USE_TLS / EMAIL_USE_SSL se exclud reciproc, " -"deci setați numai una dintre aceste setări la True." +msgstr "Implicit: Fals. Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de conexiune TLS este denumit SSL. În general, este folosit pe portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS EMAIL_USE_TLS. Rețineți că EMAIL_USE_TLS / EMAIL_USE_SSL se exclud reciproc, deci setați numai una dintre aceste setări la True." #: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă (în octeți) pe care o " -"încărcare va declanșa transmiterea în flux la sistemul de fișiere. " -"Consultați Gestionarea fișierelor pentru detalii. Consultați și " -"DATA_UPLOAD_MAX_MEMORY_SIZE." +msgstr "Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă (în octeți) pe care o încărcare va declanșa transmiterea în flux la sistemul de fișiere. Consultați Gestionarea fișierelor pentru detalii. Consultați și DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "" -"Implicit: '/ accounts / login /' URL-ul în cazul în care cererile sunt " -"redirecționate pentru autentificare, mai ales când utilizați decoratorul " -"login_required (). Această setare acceptă, de asemenea, șabloanele URL " -"denumite care pot fi utilizate pentru a reduce duplicarea configurației, " -"deoarece nu trebuie să definiți adresa URL în două locuri (setări și " -"URLconf)." +msgstr "Implicit: '/ accounts / login /' URL-ul în cazul în care cererile sunt redirecționate pentru autentificare, mai ales când utilizați decoratorul login_required (). Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." #: settings.py:293 msgid "" @@ -645,31 +516,17 @@ msgid "" "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "" -"Implicit: '/ accounts / profile /' Adresa URL unde cererile sunt " -"redirecționate după autentificare când vizualizarea contrib.auth.login nu " -"primește niciun alt parametru. Acest lucru este folosit, de exemplu, de " -"decoratorul login_required (). Această setare acceptă, de asemenea, " -"șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea " -"configurației, deoarece nu trebuie să definiți adresa URL în două locuri " -"(setări și URLconf)." +msgstr "Implicit: '/ accounts / profile /' Adresa URL unde cererile sunt redirecționate după autentificare când vizualizarea contrib.auth.login nu primește niciun alt parametru. Acest lucru este folosit, de exemplu, de decoratorul login_required (). Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." -msgstr "" -"Implicit: Niciuna. Adresa URL unde cererile sunt redirecționate după ce un " -"utilizator se deconectează utilizând LogoutView (dacă vizualizarea nu are un " -"argument next_page). Dacă nu există, nu va fi efectuată nicio redirecționare " -"și va fi redată vizualizarea logout. Această setare acceptă, de asemenea, " -"șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea " -"configurației, deoarece nu trebuie să definiți adresa URL în două locuri " -"(setări și URLconf)." +msgstr "Implicit: Niciuna. Adresa URL unde cererile sunt redirecționate după ce un utilizator se deconectează utilizând LogoutView (dacă vizualizarea nu are un argument next_page). Dacă nu există, nu va fi efectuată nicio redirecționare și va fi redată vizualizarea logout. Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." #: settings.py:318 msgid "" @@ -677,12 +534,7 @@ msgid "" "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "" -"O listă de adrese IP, ca șiruri de caractere, care: Permite procesorului de " -"context debug () să adauge unele variabile în contextul șablonului. Poate " -"utiliza marcajele admindocs chiar dacă nu este logat ca personal utilizator. " -"Sunt marcate ca \"interne\" (spre deosebire de \"EXTERNAL\") în e-mailurile " -"AdminEmailHandler." +msgstr "O listă de adrese IP, ca șiruri de caractere, care: Permite procesorului de context debug () să adauge unele variabile în contextul șablonului. Poate utiliza marcajele admindocs chiar dacă nu este logat ca personal utilizator. Sunt marcate ca \"interne\" (spre deosebire de \"EXTERNAL\") în e-mailurile AdminEmailHandler." #: settings.py:329 msgid "" @@ -691,13 +543,7 @@ msgid "" "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "" -"O listă a tuturor limbilor disponibile. Lista este o listă cu două perechi " -"în format (codul limbii, numele limbii), de exemplu, ('ja', 'japoneză'). " -"Aceasta specifică limbile disponibile pentru selectarea limbii. În general, " -"valoarea implicită ar trebui să fie suficientă. Setați această setare numai " -"dacă doriți să restricționați selectarea limbii pe un subset de limbi " -"furnizate de Django." +msgstr "O listă a tuturor limbilor disponibile. Lista este o listă cu două perechi în format (codul limbii, numele limbii), de exemplu, ('ja', 'japoneză'). Aceasta specifică limbile disponibile pentru selectarea limbii. În general, valoarea implicită ar trebui să fie suficientă. Setați această setare numai dacă doriți să restricționați selectarea limbii pe un subset de limbi furnizate de Django." #: settings.py:342 msgid "" @@ -709,16 +555,7 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "" -"Un șir reprezentând codul de limbă pentru această instalare. Aceasta ar " -"trebui să fie în format standard de limbă. De exemplu, engleza americană " -"este 'en-us'. Acesta servește două scopuri: dacă middleware-ul locale nu " -"este utilizat, acesta decide ce traducere este servită tuturor " -"utilizatorilor. Dacă middleware-ul local este activ, acesta oferă o limbă de " -"rezervă în cazul în care limba preferată a utilizatorului nu poate fi " -"determinată sau nu este acceptată de site-ul web. De asemenea, oferă " -"traducerea de rezervă atunci când o traducere pentru un cuvânt dat nu există " -"pentru limba preferată a utilizatorului." +msgstr "Un șir reprezentând codul de limbă pentru această instalare. Aceasta ar trebui să fie în format standard de limbă. De exemplu, engleza americană este 'en-us'. Acesta servește două scopuri: dacă middleware-ul locale nu este utilizat, acesta decide ce traducere este servită tuturor utilizatorilor. Dacă middleware-ul local este activ, acesta oferă o limbă de rezervă în cazul în care limba preferată a utilizatorului nu poate fi determinată sau nu este acceptată de site-ul web. De asemenea, oferă traducerea de rezervă atunci când o traducere pentru un cuvânt dat nu există pentru limba preferată a utilizatorului." #: settings.py:357 msgid "" @@ -726,30 +563,22 @@ msgid "" "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "" +msgstr "Adresa URL care trebuie utilizată atunci când se face referire la fișiere statice situate în STATIC_ROOT. Exemplu: \"/static /\" sau \"http://static.example.com/\" Dacă nu este niciunul, acesta va fi folosit ca și cale de bază pentru definirea activelor (clasa Media) și aplicația staticfiles. Trebuie să se încheie într-o bară, dacă este setată la o valoare care nu este goală." #: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." -msgstr "" -"Motorul de stocare a fișierelor utilizat la colectarea fișierelor statice cu " -"comanda de gestionare collectstatic. O instanță gata de utilizare a backend-" -"ului de stocare definită în această setare poate fi găsită la django.contrib." -"staticfiles.storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." +msgstr "Motorul de stocare a fișierelor utilizat la colectarea fișierelor statice cu comanda de gestionare collectstatic. O instanță gata de utilizare a backend-ului de stocare definită în această setare poate fi găsită la django.contrib.staticfiles.storage.staticfiles_storage." #: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." -msgstr "" -"Un șir reprezentând fusul orar pentru această instalare. Rețineți că acest " -"lucru nu este neapărat fusul orar al serverului. De exemplu, un server poate " -"servi mai multe site-uri cu putere Django, fiecare având o setare de fus " -"orar separată." +msgstr "Un șir reprezentând fusul orar pentru această instalare. Rețineți că acest lucru nu este neapărat fusul orar al serverului. De exemplu, un server poate servi mai multe site-uri cu putere Django, fiecare având o setare de fus orar separată." #: settings.py:388 msgid "" @@ -757,11 +586,7 @@ msgid "" "servers (e.g. runserver) will use. The django-admin startproject management " "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." -msgstr "" -"Calea completă Python a obiectului aplicației WSGI pe care o vor utiliza " -"serverele încorporate Django (de exemplu, runserver). Comanda django-admin " -"startproject de administrare va crea un simplu fișier wsgi.py cu o aplicație " -"care poate fi apelată în ea și va indica această setare acelei aplicații." +msgstr "Calea completă Python a obiectului aplicației WSGI pe care o vor utiliza serverele încorporate Django (de exemplu, runserver). Comanda django-admin startproject de administrare va crea un simplu fișier wsgi.py cu o aplicație care poate fi apelată în ea și va indica această setare acelei aplicații." #: settings.py:396 msgid "Celery" @@ -769,26 +594,19 @@ msgstr "Celery" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "" -"Implicit: \"amqp: //\". Adresa URL a brokerului implicit. Aceasta trebuie să " -"fie o adresă URL sub forma: transport://userid:password@hostname:port/" -"virtual_host Este necesar doar partea sistemului (transport: //), restul " -"este opțional și are implicit valorile implicite pentru transport." +msgstr "Implicit: \"amqp: //\". Adresa URL a brokerului implicit. Aceasta trebuie să fie o adresă URL sub forma: transport://userid:password@hostname:port/virtual_host Este necesar doar partea sistemului (transport: //), restul este opțional și are implicit valorile implicite pentru transport." #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" -msgstr "" -"Implicit: niciun rezultat de backend activat în mod implicit. Backend-ul " -"folosit pentru a stoca rezultatele sarcinilor (pietre funerare). Consultați " +"task results (tombstones). Refer to " "http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend " +"backend" +msgstr "Implicit: niciun rezultat de backend activat în mod implicit. Backend-ul folosit pentru a stoca rezultatele sarcinilor (pietre funerare). Consultați http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend " #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -821,9 +639,7 @@ msgstr "Creează" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Introduceți un \"nume intern\" valabil format din litere, numere și " -"subliniere." +msgstr "Introduceți un \"nume intern\" valabil format din litere, numere și subliniere." #: views.py:31 msgid "About" @@ -867,9 +683,7 @@ msgstr "Nu sunt disponibile opțiuni de configurare." msgid "" "No results here means that don't have the required permissions to perform " "administrative task." -msgstr "" -"Niciun rezultat aici înseamnă că nu aveți permisiunile necesare pentru a " -"efectua o sarcină administrativă." +msgstr "Niciun rezultat aici înseamnă că nu aveți permisiunile necesare pentru a efectua o sarcină administrativă." #: views.py:195 msgid "Setup items" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo index 7d4c30374233f20a38420cbba91c8e1cbbb7672e..63fc345c8eec93ee79f69a6fd20999c27660977d 100644 GIT binary patch delta 21 ccmeyU`%!m88yAO>rGkN(m674*KCWaQ09M!r%>V!Z delta 21 ccmeyU`%!m88yAP6se*yIm5IgXKCWaQ09M=v(f|Me diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 3cee0cac91..3d772cf0cf 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -10,17 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -180,9 +177,7 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"В качестве базы данных задан SQLite. SQLite не должен использоваться в " -"рабочем окружении, только для разработки и тестирования!" +msgstr "В качестве базы данных задан SQLite. SQLite не должен использоваться в рабочем окружении, только для разработки и тестирования!" #: literals.py:34 msgid "Days" @@ -203,19 +198,15 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." -msgstr "" -"База данных из которой данные будет экспортированы. Будет использована база " -"данных с именем \"default\" если оставить пустым." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." +msgstr "База данных из которой данные будет экспортированы. Будет использована база данных с именем \"default\" если оставить пустым." #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." -msgstr "" -"База данных в которую данные будут импортированы. Будет использована база " -"данных с именем \"default\" если оставить пустым." +msgstr "База данных в которую данные будут импортированы. Будет использована база данных с именем \"default\" если оставить пустым." #: management/commands/convertdb.py:61 msgid "" @@ -322,37 +313,34 @@ msgstr "" #: settings.py:19 msgid "Automatically enable logging to all apps." -msgstr "" -"Автоматически разрешать всем установленным приложениям делать записи в " -"журнале." +msgstr "Автоматически разрешать всем установленным приложениям делать записи в журнале." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Время задержки фоновых задач зависящих от процесса распространения " -"записанных в БД данных." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Время задержки фоновых задач зависящих от процесса распространения записанных в БД данных." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -377,8 +365,7 @@ msgstr "" #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Бекенд хранения, который каждый может использовать для хранения файлов." +msgstr "Бекенд хранения, который каждый может использовать для хранения файлов." #: settings.py:103 msgid "Django" @@ -387,14 +374,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -402,10 +389,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -429,10 +417,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -489,8 +477,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -514,8 +502,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -533,8 +521,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -581,8 +569,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -606,17 +594,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo index 20ef32ee2094bc4f7973b6e0fe12f2c4d74f15ea..049c4280e4eeb0e25d222eb12ed84a6fcd02a46d 100644 GIT binary patch delta 21 ccmX@lcAjlRKO={crGkN(m674*>5MxV0ZeZOg#Z8m delta 21 ccmX@lcAjlRKO={sse*yIm5IgX>5MxV0ZelSiU0rr diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po index 2ce54bc8f9..459122ebcf 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" @@ -198,8 +196,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,29 +315,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -373,14 +372,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -388,10 +387,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -415,10 +415,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -475,8 +475,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -500,8 +500,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -519,8 +519,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -567,8 +567,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -592,17 +592,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.mo index 6f49290745040e175ccf40b3d730c0b8881fa94e..6a07c5f6cd0647ff4e15b40f894af22ff979854b 100644 GIT binary patch delta 21 ccmZovY*gIvj+4X4Qo+E?%E)l@H_mQ0088iw#Q*>R delta 21 ccmZovY*gIvj+4XCRKdX9%EV&xH_mQ0088u!$^ZZW diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po index 0900d91595..6f6cfdce78 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -199,8 +198,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -318,31 +317,30 @@ msgstr "Tüm uygulamalara günlük kaydını otomatik olarak etkinleştirin." #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Veritabanına bağımlı arka plan görevlerini geciktirme zamanını oluşturmak " -"için kullanılır." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Veritabanına bağımlı arka plan görevlerini geciktirme zamanını oluşturmak için kullanılır." #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -367,8 +365,7 @@ msgstr "" #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Tüm çalışanların dosyaları paylaşmak için kullanabileceği bir depolama alanı." +msgstr "Tüm çalışanların dosyaları paylaşmak için kullanabileceği bir depolama alanı." #: settings.py:103 msgid "Django" @@ -377,14 +374,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -392,10 +389,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -419,10 +417,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -479,8 +477,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -504,8 +502,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -523,8 +521,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -571,8 +569,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -596,17 +594,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 @@ -640,8 +639,7 @@ msgstr "Oluştur" msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "" -"Harfler, rakamlar ve alt çizgilerden oluşan geçerli bir 'dahili ad' girin." +msgstr "Harfler, rakamlar ve alt çizgilerden oluşan geçerli bir 'dahili ad' girin." #: views.py:31 msgid "About" diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo index 88adfc74f004ac3613b65fb0360a74ca5fe0f40c..6f08d7b35fb3f209d80090207610271663e8b673 100644 GIT binary patch delta 21 ccmZqXZ06ih#>8P{sbFAcWn{Ryj)|2C06n?|5dZ)H delta 21 ccmZqXZ06ih#>8Q0s$gJlWn!_pj)|2C06o41761SM diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po index 5a4c4d9dbe..547495bc80 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:15-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -198,8 +197,8 @@ msgstr "" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "" #: management/commands/convertdb.py:54 @@ -317,29 +316,30 @@ msgstr "" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: settings.py:33 msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:43 msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -373,14 +373,14 @@ msgstr "" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." msgstr "" @@ -388,10 +388,11 @@ msgstr "" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." msgstr "" #: settings.py:139 @@ -415,10 +416,10 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." @@ -475,8 +476,8 @@ msgstr "" #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" @@ -500,8 +501,8 @@ msgstr "" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." @@ -519,8 +520,8 @@ msgstr "" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -567,8 +568,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -592,17 +593,18 @@ msgstr "" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" msgstr "" #: templatetags/common_tags.py:31 diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo index f93208c9a6bdb7e147f46ee012a9f9afc116b330..e7b3327e2d416b51f248299d4286f21906229346 100644 GIT binary patch delta 2169 zcmYk-e`u9e9LMp`-IlwyW$J8hy3M;SH}|7?cWZN7b4_RFtSnd7W;)jjDk%!WQfb~G zgJ>GG5Q(4?N|DGvoD~fXOC#Be6r>+eQz#;W=m(X51kwBRJcsD8@AG=jInQ(M`T1;O zcjD)#6WQsxdHX~fCd!D$T-txQmdg|zkX zSJzrPM@J0Jcsk~Z!E&1S(5uwi?pdGT!d|*ydP;uTaZ6J z5XzsxYVsrK_YNRU>aCD}AM^Nqo#Ms~oI%m^vzUYDu9Tjo==^LcLw@5NX&dgHD-BYf zJC9D_F!tapcp5KYh7rASmGlSsFH4v$-utvvI!V5NVLaQVp6)CaPjSOL8Yz!QI)?7) z%jl^-gr14BxEjC5b=XiL(I@Rh+SVSV&pL>nv3D^KPavzKk8nLsp_ihZY0Ubjnj1e* zhn|THdNMjfz885%>#+tOLr>{`bjJ?hAijePPV-Xn52w)`X~D(ViOX>qUH*EC`Cr4$ zp-}KEy5URcjwLFk0?bFxP!Te#S`x~;&>dcjZmq%BpyPkD}Y%j@RO@ zs%+fTqZD`~@1cKa3OxfCaeG4g1)n7U;MLM*@)yxl-c=Kyntt?BZNmn9H8>gS|H6FU zE2@=F<}gb<+|F~~Wb5Oe7xPvj1?4yc>x0dhCf|naLp>DS8R|#T?~NhbLa&AL6T#D= zek$a@Li(-?=$X#uHO8A}7P_GdWb>*4-I1mEC${20*m#Zfg6o^8XG9a&f*&rGhA6*8 zZ@aL+Io_=MagzKr9%1B%GtwunZ(+F-tbeLiI!?jk%Q#|~=1h62Mv;@ImzXDaGMCyO(zxSL&coy;~6MHzfcye zMmJm^>X&0B`4#96-G_zv9J*us&>cI1K0Uvo+nddg+4)$>@2i3vcc42|j9?G>-64M_ z_<8UP^bdWDJ`FzweYU)&#poYM1#8jAvkCigFS=ttVAc=Tv0yfh9?`OpA3%>}D7XVX z17o;}C3+LLlF#XmKAhZ13^Gc^T)iBuN|egD<`F)wg9MZ9k5^Wl2(h=Ka- z4dKx^`6%8@_#`-`qHBEF2<$)h42ws3H~;Yy;gyIC&pw{E=jP&iL~MM;9bB?WuHYN2Ymv ORn2!f<3HB*mHZ0>cf(%* delta 2612 zcmY+Fdr*{B6u=LQ0+FO?rK!nhhC=y30wGfKiH2HYX=aKp>SVO1uysSwNsEnbSRo0EfRurWB5VJ;zTU?rs0P$8M_gtz>9`44@AbL!f8<=d9aoK z>Ufbp%(?DCk!2J?JF_>CPIzrS;*Xy4HMxE z<99)wXEo$g@f-g}I08Ea^}9Nl0FT>tP~=-0y>Og^I>Ap+$lxM$z)Ssz8rSa+i=<(% z>@Ttg?j@>x{Cyu4$$}m@9ex5&!z(b2j6QozWCw1MfhcIQq#*UwD*oPM zL^zi+!EhGT%ojubZaLIrRcid34L>mbdyE}CNaHC69)()+^H2}ZZ%`+?0;A#IP#3rZ z|Af(FMef0W;5O|aM?aZuBDxH?ZM?_|{HN16M=*&p=Rg-c3y;8h2m8M^UF16*kSVf& z53j)%>?xFE3A_unWQ%z{xOuYT`A8ss!*`%2umKK&hu}1L63&K>iIMN-Kz&d0jlCAe zu)c)shR6=671#~=ll{hj8EOT>#_lq_0X3jorazt|JskTXr~#!yt>8kaffYavY(3Ol zbOOe(zFg7>O9vBZ^C@+ z+c3D8#*!Bzku^dc_?O{br~&nw67i3On#mZ$9Hw zSD>2MGL%PAZ%z5f!<%eYFe3BQO=Wa&28a~ z%4k$?%Kh>N#xPX3VG24)*I!D5L~WVRZwBf>v(Q{rB@xvpGY5Sc)&FGOvYduiO+~Np z2)iXR6F!YSVGdM5gzJO#G! zDB3c^(1QA!E{8@3Cj-bo!FDddk10|j!%UN1#Im^mQOA4{Q9={bRb_Oh` z&uzIq&Vo|6%PR5UEAd-1RyjRIUQB<0kL=N7t(nfkV#^=!=~Vt=@0wDVRp7RqmdhIm z@a_D!1I1pCRpty7TLEvj<@B&vUe9V)q1Usrq-c%Lp3N#Ob^85Qa+%M)((UuPT`8k2 zuaC*foQ12MMQ$A(aF%%NuyvxIc^X&6pBWrCKEq1Q%udg0%t~r?1lzZ63fI?!_tm!7 zeH;lrTp#K@P}$a07v9m(QC-_nQ_&tOZ{HURH&?4!yCvMb9cQ?1cgN8~ZB56*Rl7U) z*S3~#Y;V}!)^zwke{*$b!@>4F4Q);3_&fL3bTpsj!$`87#~Z>YDy~m%skwjNuFCg2 szO3)~{EO=?Rb7X6b(M#%w}jfOc7?ZAhIbsff22mRwX$(w@}fci0{uLt@c;k- diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po index 31b5fb66e5..95b138f61c 100644 --- a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:89 permissions_runtime.py:7 settings.py:14 @@ -177,8 +176,7 @@ msgstr "" msgid "" "Your database backend is set to use SQLite. SQLite should only be used for " "development and testing, not for production." -msgstr "" -"您的数据库后端设置为使用SQLite。 SQLite只应用于开发和测试,而不能用于生产。" +msgstr "您的数据库后端设置为使用SQLite。 SQLite只应用于开发和测试,而不能用于生产。" #: literals.py:34 msgid "Days" @@ -199,8 +197,8 @@ msgstr "将转储数据限制为指定的app_label或app_label.ModelName。" #: management/commands/convertdb.py:47 msgid "" -"The database from which data will be exported. If omitted the database named " -"\"default\" will be used." +"The database from which data will be exported. If omitted the database named" +" \"default\" will be used." msgstr "将从中导出数据的数据库。如果省略,将使用名为“default”的数据库。" #: management/commands/convertdb.py:54 @@ -318,45 +316,30 @@ msgstr "自动启用所有应用程序的日志记录。" #: settings.py:25 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "是时候延迟依赖于数据库提交传播的后台任务了。" #: settings.py:33 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are to be removed from " "the list normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"指定在此Django安装中启用的所有应用程序的字符串列表。每个字符串应该是一个虚线" -"的Python路径:应用程序配置类(首选)或包含应用程序的包。" #: settings.py:43 -#, fuzzy -#| msgid "" -#| "A list of strings designating all applications that are enabled in this " -#| "Django installation. Each string should be a dotted Python path to: an " -#| "application configuration class (preferred), or a package containing an " -#| "application." msgid "" "A list of strings designating all applications that are installed beyond " "those normally installed by Mayan EDMS. Each string should be a dotted " -"Python path to: an application configuration class (preferred), or a package " -"containing an application." +"Python path to: an application configuration class (preferred), or a package" +" containing an application." msgstr "" -"指定在此Django安装中启用的所有应用程序的字符串列表。每个字符串应该是一个虚线" -"的Python路径:应用程序配置类(首选)或包含应用程序的包。" #: settings.py:52 msgid "" -"Name of the view attached to the brand anchor in the main menu. This is also " -"the view to which users will be redirected after log in." +"Name of the view attached to the brand anchor in the main menu. This is also" +" the view to which users will be redirected after log in." msgstr "" #: settings.py:61 @@ -390,37 +373,27 @@ msgstr "Django" #: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " -"serve. This is a security measure to prevent HTTP Host header attacks, which " -"are possible even under many seemingly-safe web server configurations. " +"serve. This is a security measure to prevent HTTP Host header attacks, which" +" are possible even under many seemingly-safe web server configurations. " "Values in this list can be fully qualified names (e.g. 'www.example.com'), " -"in which case they will be matched against the request's Host header exactly " -"(case-insensitive, not including port). A value beginning with a period can " -"be used as a subdomain wildcard: '.example.com' will match example.com, www." -"example.com, and any other subdomain of example.com. A value of '*' will " -"match anything; in this case you are responsible to provide your own " +"in which case they will be matched against the request's Host header exactly" +" (case-insensitive, not including port). A value beginning with a period can" +" be used as a subdomain wildcard: '.example.com' will match example.com, " +"www.example.com, and any other subdomain of example.com. A value of '*' will" +" match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "" -"表示此站点可以提供的主机/域名的字符串列表。这是一种防止HTTP主机头攻击的安全措" -"施,即使在许多看似安全的Web服务器配置下也是如此。此列表中的值可以是完全限定名" -"称(例如“www.example.com”),在这种情况下,它们将与请求的主机标头完全匹配(不" -"区分大小写,不包括端口)。以句点开头的值可用作子域通配符:'.example.com'将匹" -"配example.com,www.example.com和example.com的任何其他子域。值'*'将匹配任何内" -"容;在这种情况下,您有责任提供自己的主机头验证(可能在中间件中;如果是这样,则" -"必须首先在MIDDLEWARE中列出此中间件)。" +msgstr "表示此站点可以提供的主机/域名的字符串列表。这是一种防止HTTP主机头攻击的安全措施,即使在许多看似安全的Web服务器配置下也是如此。此列表中的值可以是完全限定名称(例如“www.example.com”),在这种情况下,它们将与请求的主机标头完全匹配(不区分大小写,不包括端口)。以句点开头的值可用作子域通配符:'.example.com'将匹配example.com,www.example.com和example.com的任何其他子域。值'*'将匹配任何内容;在这种情况下,您有责任提供自己的主机头验证(可能在中间件中;如果是这样,则必须首先在MIDDLEWARE中列出此中间件)。" #: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " -"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " -"same URL with a slash appended. Note that the redirect may cause any data " +"the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" +" same URL with a slash appended. Note that the redirect may cause any data " "submitted in a POST request to be lost. The APPEND_SLASH setting is only " -"used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." -msgstr "" -"设置为True时,如果请求URL与URLconf中的任何模式都不匹配,并且不以斜杠结尾,则" -"会向相同的URL发出HTTP重定向,并附加斜杠。请注意,重定向可能导致POST请求中提交" -"的任何数据丢失。 APPEND_SLASH设置仅在安装了CommonMiddleware时使用(请参阅" -"Middleware)。另见PREPEND_WWW。" +"used if CommonMiddleware is installed (see Middleware). See also " +"PREPEND_WWW." +msgstr "设置为True时,如果请求URL与URLconf中的任何模式都不匹配,并且不以斜杠结尾,则会向相同的URL发出HTTP重定向,并附加斜杠。请注意,重定向可能导致POST请求中提交的任何数据丢失。 APPEND_SLASH设置仅在安装了CommonMiddleware时使用(请参阅Middleware)。另见PREPEND_WWW。" #: settings.py:139 msgid "" @@ -435,10 +408,7 @@ msgid "" "dictionary containing the options for an individual database. The DATABASES " "setting must configure a default database; any number of additional " "databases may also be specified." -msgstr "" -"包含要与Django一起使用的所有数据库的设置的字典。它是一个嵌套字典,其内容将数" -"据库别名映射到包含单个数据库选项的字典。 DATABASES设置必须配置默认数据库;还可" -"以指定任意数量的附加数据库。" +msgstr "包含要与Django一起使用的所有数据库的设置的字典。它是一个嵌套字典,其内容将数据库别名映射到包含单个数据库选项的字典。 DATABASES设置必须配置默认数据库;还可以指定任意数量的附加数据库。" #: settings.py:158 msgid "" @@ -446,21 +416,14 @@ msgid "" "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " "check is done when accessing request.body or request.POST and is calculated " "against the total request size excluding any file upload data. You can set " -"this to None to disable the check. Applications that are expected to receive " -"unusually large form posts should tune this setting. The amount of request " -"data is correlated to the amount of memory needed to process the request and " -"populate the GET and POST dictionaries. Large requests could be used as a " +"this to None to disable the check. Applications that are expected to receive" +" unusually large form posts should tune this setting. The amount of request " +"data is correlated to the amount of memory needed to process the request and" +" populate the GET and POST dictionaries. Large requests could be used as a " "denial-of-service attack vector if left unchecked. Since web servers don't " "typically perform deep request inspection, it's not possible to perform a " "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"默认值:2621440(即2.5 MB)。引发可疑操作(请求数据太大)之前请求正文的最大大" -"小(以字节为单位)。在访问request.body或request.POST时完成检查,并根据不包括" -"任何文件上传数据的总请求大小计算。您可以将其设置为“无”以禁用检查。预计会收到" -"异常大型表单提交的应用程序应调整此设置。请求数据量与处理请求和填充GET和POST词" -"典所需的内存量相关联。如果不加以检查,大请求可以用作拒绝服务攻击载体。由于Web" -"服务器通常不执行深度请求检查,因此无法在该级别执行类似检查。另请参见" -"FILE_UPLOAD_MAX_MEMORY_SIZE。" +msgstr "默认值:2621440(即2.5 MB)。引发可疑操作(请求数据太大)之前请求正文的最大大小(以字节为单位)。在访问request.body或request.POST时完成检查,并根据不包括任何文件上传数据的总请求大小计算。您可以将其设置为“无”以禁用检查。预计会收到异常大型表单提交的应用程序应调整此设置。请求数据量与处理请求和填充GET和POST词典所需的内存量相关联。如果不加以检查,大请求可以用作拒绝服务攻击载体。由于Web服务器通常不执行深度请求检查,因此无法在该级别执行类似检查。另请参见FILE_UPLOAD_MAX_MEMORY_SIZE。" #: settings.py:178 msgid "" @@ -475,18 +438,13 @@ msgid "" "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "" -"默认值:[](空列表)。在系统范围内表示不允许访问任何页面的用户代理字符串的已" -"编译正则表达式对象的列表。用于防范恶意的机器人/爬虫。这仅在安装了" -"CommonMiddleware时使用(请参阅Middleware)。" +msgstr "默认值:[](空列表)。在系统范围内表示不允许访问任何页面的用户代理字符串的已编译正则表达式对象的列表。用于防范恶意的机器人/爬虫。这仅在安装了CommonMiddleware时使用(请参阅Middleware)。" #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." -msgstr "" -"默认值:'django.core.mail.backends.smtp.EmailBackend'。用于发送电子邮件的后" -"端。" +msgstr "默认值:'django.core.mail.backends.smtp.EmailBackend'。用于发送电子邮件的后端。" #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." @@ -498,18 +456,13 @@ msgid "" "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "" -"默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的密码。在向SMTP服务" -"器进行身份验证时,此设置与EMAIL_HOST_USER结合使用。如果这些设置中的任何一个为" -"空,Django将不会尝试身份验证。" +msgstr "默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与EMAIL_HOST_USER结合使用。如果这些设置中的任何一个为空,Django将不会尝试身份验证。" #: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "" -"默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的用户名。如果为空," -"Django将不会尝试身份验证。" +msgstr "默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的用户名。如果为空,Django将不会尝试身份验证。" #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." @@ -523,13 +476,11 @@ msgstr "默认值:无。指定阻塞操作(如连接尝试)的超时(以 #: settings.py:249 msgid "" -"Default: False. Whether to use a TLS (secure) connection when talking to the " -"SMTP server. This is used for explicit TLS connections, generally on port " +"Default: False. Whether to use a TLS (secure) connection when talking to the" +" SMTP server. This is used for explicit TLS connections, generally on port " "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." -msgstr "" -"默认值:False。与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接," -"通常在端口587上。如果遇到挂起连接,请参阅隐式TLS设置EMAIL_USE_SSL。" +msgstr "默认值:False。与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587上。如果遇到挂起连接,请参阅隐式TLS设置EMAIL_USE_SSL。" #: settings.py:259 msgid "" @@ -539,32 +490,23 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "" -"默认值:False。与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮" -"件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式" -"TLS设置EMAIL_USE_TLS。请注意,EMAIL_USE_TLS / EMAIL_USE_SSL是互斥的,因此只将" -"其中一个设置为True。" +msgstr "默认值:False。与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置EMAIL_USE_TLS。请注意,EMAIL_USE_TLS / EMAIL_USE_SSL是互斥的,因此只将其中一个设置为True。" #: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." -msgstr "" -"默认值:2621440(即2.5 MB)。上传在流式传输到文件系统之前的最大大小(以字节为" -"单位)。有关详情,请参阅管理文件。另请参见DATA_UPLOAD_MAX_MEMORY_SIZE。" +msgstr "默认值:2621440(即2.5 MB)。上传在流式传输到文件系统之前的最大大小(以字节为单位)。有关详情,请参阅管理文件。另请参见DATA_UPLOAD_MAX_MEMORY_SIZE。" #: settings.py:281 msgid "" -"Default: '/accounts/login/' The URL where requests are redirected for login, " -"especially when using the login_required() decorator. This setting also " +"Default: '/accounts/login/' The URL where requests are redirected for login," +" especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "" -"默认值:'/ accounts / login /',重定向请求以进行登录的URL,尤其是在使用" -"login_required()装饰器时。此设置还接受命名的URL模式,可用于减少配置重复,因" -"为您不必在两个位置(设置和URLconf)定义URL。" +msgstr "默认值:'/ accounts / login /',重定向请求以进行登录的URL,尤其是在使用login_required()装饰器时。此设置还接受命名的URL模式,可用于减少配置重复,因为您不必在两个位置(设置和URLconf)定义URL。" #: settings.py:293 msgid "" @@ -573,16 +515,13 @@ msgid "" "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "" -"默认值:'/ accounts / profile /',当contrib.auth.login视图没有下一个参数时," -"登录后重定向请求的URL。例如,login_required()装饰器使用它。此设置还接受命名" -"的URL模式,可用于减少重复配置,因此您不必在两个位置(设置和URLconf)定义URL。" +msgstr "默认值:'/ accounts / profile /',当contrib.auth.login视图没有下一个参数时,登录后重定向请求的URL。例如,login_required()装饰器使用它。此设置还接受命名的URL模式,可用于减少重复配置,因此您不必在两个位置(设置和URLconf)定义URL。" #: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " -"using LogoutView (if the view doesn't get a next_page argument). If None, no " -"redirect will be performed and the logout view will be rendered. This " +"using LogoutView (if the view doesn't get a next_page argument). If None, no" +" redirect will be performed and the logout view will be rendered. This " "setting also accepts named URL patterns which can be used to reduce " "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." @@ -629,8 +568,8 @@ msgstr "" msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " -"backend defined in this setting can be found at django.contrib.staticfiles." -"storage.staticfiles_storage." +"backend defined in this setting can be found at " +"django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" #: settings.py:378 @@ -654,23 +593,19 @@ msgstr "Celery" #: settings.py:401 msgid "" -"Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " -"transport://userid:password@hostname:port/virtual_host Only the scheme part " -"(transport://) is required, the rest is optional, and defaults to the " +"Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" +" transport://userid:password@hostname:port/virtual_host Only the scheme part" +" (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "" -"默认值:“amqp://”。默认代理URL。这必须是以下形式的URL:transport:// userid:" -"password @ hostname:port / virtual_host只需要方案部分(transport://),其余部" -"分是可选的,默认为特定传输的默认值。" +msgstr "默认值:“amqp://”。默认代理URL。这必须是以下形式的URL:transport:// userid:password @ hostname:port / virtual_host只需要方案部分(transport://),其余部分是可选的,默认为特定传输的默认值。" #: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " -"task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" -"userguide/configuration.html#result-backend" -msgstr "" -"默认值:默认情况下未启用结果后端。后端用于存储任务结果(墓碑)。请参阅http://" -"docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" +"task results (tombstones). Refer to " +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" +msgstr "默认值:默认情况下未启用结果后端。后端用于存储任务结果(墓碑)。请参阅http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 7fa6b67367..7d0661c048 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index 79f72705fe..1d5683a989 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po index e0ab6ef980..db9d8f3dd4 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -82,9 +80,7 @@ msgstr "Transformacije" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Red u kojem će se transformacije izvršiti. Ako je ostalo nepromenjeno, biće " -"dodeljena automatska vrijednost porudžbine." +msgstr "Red u kojem će se transformacije izvršiti. Ako je ostalo nepromenjeno, biće dodeljena automatska vrijednost porudžbine." #: models.py:39 msgid "Order" @@ -98,9 +94,7 @@ msgstr "Ime" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Unesite argumente za transformaciju kao IAML rečnik. npr .: {\"stepeni\": " -"180}" +msgstr "Unesite argumente za transformaciju kao IAML rečnik. npr .: {\"stepeni\": 180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po index 52f9b3223c..401dd00b91 100644 --- a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" diff --git a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po index de851bcb2d..d8137d5d83 100644 --- a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po index 2f6180c92a..46780383bc 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bjoern Kowarsch , 2018 # Jesaja Everling , 2017 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 22:15+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -51,16 +50,13 @@ msgstr "Kein Office-Dateiformat" #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "" -"Programm aus dem poppler-utils Paket für die Inspektion von PDF Dateien." +msgstr "Programm aus dem poppler-utils Paket für die Inspektion von PDF Dateien." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "" -"Programm aus dem poppler-utils Paket für die Extraktion von Seiten aus PDF-" -"Dateien in PPM-Bilder." +msgstr "Programm aus dem poppler-utils Paket für die Extraktion von Seiten aus PDF-Dateien in PPM-Bilder." #: forms.py:28 #, python-format @@ -87,9 +83,7 @@ msgstr "Transformationen" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird " -"automatisch eine Reihenfolge zugewiesen." +msgstr "Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird automatisch eine Reihenfolge zugewiesen." #: models.py:39 msgid "Order" @@ -103,9 +97,7 @@ msgstr "Name" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Argumemte für die Transformation als YAML dictionary eingeben, z.B: " -"{\"degrees\": 180}" +msgstr "Argumemte für die Transformation als YAML dictionary eingeben, z.B: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -195,23 +187,18 @@ msgstr "Transformation erstellen für %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Transformation \"%(transformation)s\" für %(content_object)s wirklich " -"löschen?" +msgstr "Transformation \"%(transformation)s\" für %(content_object)s wirklich löschen?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" +msgstr "Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "" -"Transformationen erlauben Veränderungen in der visuellen Darstellung eines " -"Dokuments ohne diese im Dokument selbst zu speichern." +msgstr "Transformationen erlauben Veränderungen in der visuellen Darstellung eines Dokuments ohne diese im Dokument selbst zu speichern." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po index 1abc3eb067..5c27a089b3 100644 --- a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -79,9 +78,7 @@ msgstr "Μετασχηματισμός" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Προτεραιότητα με την οποία θα εφαρμοστεί ο μετασχηματισμός. Αν αφαιθεί κενό, " -"θα αποδοθεί αυτόματα μια τιμή σειράς προτεραιότητας." +msgstr "Προτεραιότητα με την οποία θα εφαρμοστεί ο μετασχηματισμός. Αν αφαιθεί κενό, θα αποδοθεί αυτόματα μια τιμή σειράς προτεραιότητας." #: models.py:39 msgid "Order" @@ -185,14 +182,12 @@ msgstr "Δημιουργία νέου μετασχηματισμού για: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Διαγραφή μετασχηματισμού \"%(transformation)s\" για: %(content_object)s?" +msgstr "Διαγραφή μετασχηματισμού \"%(transformation)s\" για: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Τροποποίηση μετασχηματισμού \"%(transformation)s\" για: %(content_object)s" +msgstr "Τροποποίηση μετασχηματισμού \"%(transformation)s\" για: %(content_object)s" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index 554e3d14d5..4b4ebbd525 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015-2019 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-28 19:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -48,16 +47,13 @@ msgstr "No es un formato de archivo de la oficina." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "" -"Utilidad del paquete poppler-utils utilizado para inspeccionar archivos PDF." +msgstr "Utilidad del paquete poppler-utils utilizado para inspeccionar archivos PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "" -"Utilidad del paquete popper-utils que se utiliza para extraer páginas de " -"archivos PDF a imágenes en formato PPM." +msgstr "Utilidad del paquete popper-utils que se utiliza para extraer páginas de archivos PDF a imágenes en formato PPM." #: forms.py:28 #, python-format @@ -84,9 +80,7 @@ msgstr "Transformaciones" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor " -"de orden sera asignado automáticamente. " +msgstr "Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor de orden sera asignado automáticamente. " #: models.py:39 msgid "Order" @@ -100,9 +94,7 @@ msgstr "Nombre" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Entre el argumento de la transformación como un diccionario YAML. Ejemplo: " -"{\"degrees\": 180}" +msgstr "Entre el argumento de la transformación como un diccionario YAML. Ejemplo: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -192,8 +184,7 @@ msgstr "Crear transformación para :%s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" +msgstr "¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" #: views.py:171 #, python-format @@ -204,9 +195,7 @@ msgstr "Editar transformación \"%(transformation)s\" para: %(content_object)s" msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "" -"Las transformaciones permiten cambiar la apariencia visual de los documentos " -"sin realizar cambios permanentes en el archivo del documento." +msgstr "Las transformaciones permiten cambiar la apariencia visual de los documentos sin realizar cambios permanentes en el archivo del documento." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 19bf11d47c..8f4d474ace 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -80,9 +79,7 @@ msgstr "تغییرات" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"سفارش که در آن تحولات اجرا خواهد شد. اگر بدون تغییر باقی بماند، یک مقدار " -"سفارش خودکار تعیین می شود." +msgstr "سفارش که در آن تحولات اجرا خواهد شد. اگر بدون تغییر باقی بماند، یک مقدار سفارش خودکار تعیین می شود." #: models.py:39 msgid "Order" @@ -96,9 +93,7 @@ msgstr "نام" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"آرگومان را برای تبدیل به عنوان یک فرهنگ لغت YAML وارد کنید. یعنی: {\"درجه\": " -"180}" +msgstr "آرگومان را برای تبدیل به عنوان یک فرهنگ لغت YAML وارد کنید. یعنی: {\"درجه\": 180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 999e7daba1..cdbb485023 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-09 13:35+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -39,8 +38,7 @@ msgstr "Exception lors de la détermination du nombre de pages du PDF ; %s" #: backends/python.py:195 #, python-format msgid "Exception determining page count using Pillow; %s" -msgstr "" -"Exception lors de la détermination du nombre de pages à l'aide de Pillow ; %s" +msgstr "Exception lors de la détermination du nombre de pages à l'aide de Pillow ; %s" #: classes.py:118 msgid "LibreOffice not installed or not found." @@ -52,16 +50,13 @@ msgstr "Format de fichier non reconnu." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "" -"Utilitaire du paquet poppler-utils utilisé pour inspecter les fichiers PDF." +msgstr "Utilitaire du paquet poppler-utils utilisé pour inspecter les fichiers PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "" -"Utilitaire du paquet popper-utils utilisé pour extraire des pages de " -"fichiers PDF en images au format PPM." +msgstr "Utilitaire du paquet popper-utils utilisé pour extraire des pages de fichiers PDF en images au format PPM." #: forms.py:28 #, python-format @@ -88,9 +83,7 @@ msgstr "Transformations" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Ordre dans lequel les transformations seront exécutées. En l'absence de " -"modification, un ordre est automatiquement assigné." +msgstr "Ordre dans lequel les transformations seront exécutées. En l'absence de modification, un ordre est automatiquement assigné." #: models.py:39 msgid "Order" @@ -104,9 +97,7 @@ msgstr "Nom" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Saisir les arguments pour la transformation sous la forme d'un dictionnaire " -"YAML. Par exemple : {\"degrees\": 180}" +msgstr "Saisir les arguments pour la transformation sous la forme d'un dictionnaire YAML. Par exemple : {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -196,23 +187,18 @@ msgstr "Créer une nouvelle transformation pour : %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s" -"\" pour : %(content_object)s ?" +msgstr "Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s\" pour : %(content_object)s ?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" +msgstr "Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "" -"Les transformations permettent de modifier l'apparence visuelle des " -"documents sans apporter de modifications permanentes au fichier." +msgstr "Les transformations permettent de modifier l'apparence visuelle des documents sans apporter de modifications permanentes au fichier." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index bad513fca1..3ccb0643b7 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index e740b3a373..fed985edf7 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-12 18:08+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index 1ca89fe2f6..a57040bfa9 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011,2015 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -81,9 +80,7 @@ msgstr "Trasformazioni" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato " -"l'ordine automatico." +msgstr "Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato l'ordine automatico." #: models.py:39 msgid "Order" @@ -97,9 +94,7 @@ msgstr "Nome " msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Scrivi gli argomenti per la trasformazione come dizionario YAML. es: " -"{\"degrees\": 180}" +msgstr "Scrivi gli argomenti per la trasformazione come dizionario YAML. es: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -189,14 +184,12 @@ msgstr "Crea una nuove trasformazioni per: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" +msgstr "Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" +msgstr "Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.mo index ae177b7483de51b744a4a69078c4d77ddb602edd..e459edd68fd242a1c30f8b127395025f417e8a00 100644 GIT binary patch delta 453 zcmZwCJxD@f6vpvmUHrURfqMIZxZV)7NT^5$hnyM$X=tbh2cZufQcK?a*Bc)8mhUaplGN?m-hZIH8%YY=XuXLyhqV5^J3rC7!i>(zlaa-FpWhScG_^W3xN_N1m}(&qH6llSFZniZ>AcH93QvSRUiwNR>U smaE%^da+ze5Zq{n{T9d=|Al6yU|(xtds*M{T3glI=6ca`UUjGU2YT{H82|tP delta 486 zcmajayDvj=6u|LQZ7%J-$`!OCnp>}Ugrr0a9lA>-B*J8<_Z`~C?KMi%1S3hClz)Li zq<1h2i$s_Vov;{e1`?a^FRj`1Ilq(h_?-`{6u&y~6$VA*A|w*TC!EC^hSAhTVrXGM zrf>k)umz7$!xNmt3P$h^)w~~EK))dp#U->bgDZG!NI}L3-btj;Y!wOMBAU32lemN9 zc#3NAZNmpti=I){zhDo3A|plTiULNl9nVnppJO*x!+b*p_awUT72EI|RfERE#t3#| z5qq(Mn^;A4d6eQfuA^Ff=+&C`wdR?L>4cS-@>YZMzVPtwUd~Mp, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" -"PO-Revision-Date: 2019-05-31 12:00+0000\n" +"PO-Revision-Date: 2019-06-27 13:00+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -48,21 +46,18 @@ msgstr "Ne biroja faila formāts." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "" -"Utility no poppler-utils paketes, ko izmanto, lai pārbaudītu PDF failus." +msgstr "Utility no poppler-utils paketes, ko izmanto, lai pārbaudītu PDF failus." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "" -"Utility no popper-utils paketes, ko izmanto, lai no PDF failiem izņemtu " -"lapas PPM formāta attēlos." +msgstr "Utility no popper-utils paketes, ko izmanto, lai no PDF failiem izņemtu lapas PPM formāta attēlos." #: forms.py:28 #, python-format msgid "\"%s\" not a valid entry." -msgstr ""%s" nav derīgs ieraksts." +msgstr "\"%s\" nav derīgs ieraksts." #: links.py:36 msgid "Create new transformation" @@ -84,9 +79,7 @@ msgstr "Transformācijas" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Kārtība, kādā tiks veiktas transformācijas. Ja tas netiek mainīts, tiks " -"piešķirta automātiskā pasūtījuma vērtība." +msgstr "Kārtība, kādā tiks veiktas transformācijas. Ja tas netiek mainīts, tiks piešķirta automātiskā pasūtījuma vērtība." #: models.py:39 msgid "Order" @@ -100,9 +93,7 @@ msgstr "Nosaukums" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Ievadiet transformācijas argumentus kā YAML vārdnīcu. ti: {"" -"grādi": 180}" +msgstr "Ievadiet transformācijas argumentus kā YAML vārdnīcu. ti: {\"grādi\": 180}" #: models.py:49 msgid "Arguments" @@ -192,22 +183,18 @@ msgstr "Izveidot jaunu transformāciju: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Dzēst transformāciju "%(transformation)s": %(content_object)s?" +msgstr "Dzēst transformāciju \"%(transformation)s\": %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Rediģēt transformāciju "%(transformation)s" par: %(content_object)s" +msgstr "Rediģēt transformāciju \"%(transformation)s\" par: %(content_object)s" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "" -"Pārveidojumi ļauj mainīt dokumentu vizuālo izskatu, neveicot pastāvīgas " -"izmaiņas dokumenta failā." +msgstr "Pārveidojumi ļauj mainīt dokumentu vizuālo izskatu, neveicot pastāvīgas izmaiņas dokumenta failā." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po index 40ed8c4e86..03ffc2a3a5 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -83,9 +82,7 @@ msgstr "Transformaties" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Volgorde waarin de transformaties worden uitgevoerd. Indien ongewijzigd zal " -"automatisch een volgorde toegekend worden." +msgstr "Volgorde waarin de transformaties worden uitgevoerd. Indien ongewijzigd zal automatisch een volgorde toegekend worden." #: models.py:39 msgid "Order" @@ -99,9 +96,7 @@ msgstr "Naam" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Voer de argumenten voor de transformatie in als een YAML statement, " -"bijvoorbeeld: {\"degrees\": 180}" +msgstr "Voer de argumenten voor de transformatie in als een YAML statement, bijvoorbeeld: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -191,8 +186,7 @@ msgstr "Maak een nieuwe transformatie aan voor: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Transformatie verwijderen \"%(transformation)s\" voor: %(content_object)s?" +msgstr "Transformatie verwijderen \"%(transformation)s\" voor: %(content_object)s?" #: views.py:171 #, python-format diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index c128cd6600..4506b2a814 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2016 @@ -13,15 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -84,9 +81,7 @@ msgstr "Przekształcenia" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Kolejność wykonywania przekształceń. Jeśli nie zostanie zmieniona, przyjmie " -"wartość automatyczną." +msgstr "Kolejność wykonywania przekształceń. Jeśli nie zostanie zmieniona, przyjmie wartość automatyczną." #: models.py:39 msgid "Order" @@ -100,9 +95,7 @@ msgstr "Nazwa" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Wprowadź argumenty dla przekształcenia w postaci słownika YAML np.: " -"{\"degrees\": 180}" +msgstr "Wprowadź argumenty dla przekształcenia w postaci słownika YAML np.: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index 107e5f5a44..206c07b55b 100644 --- a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Renata Oliveira , 2011 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po index 78b2420a98..ad82fccd3e 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -84,9 +83,7 @@ msgstr "Transformações" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Ordem de execução das transformações. Se deixar em branco, um valor " -"automático vai ser atribuído." +msgstr "Ordem de execução das transformações. Se deixar em branco, um valor automático vai ser atribuído." #: models.py:39 msgid "Order" @@ -100,9 +97,7 @@ msgstr "Nome" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Entre com os argumentos da transformação como um dicionário YAML. ie: " -"{\"degrees\": 180}" +msgstr "Entre com os argumentos da transformação como um dicionário YAML. ie: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -203,9 +198,7 @@ msgstr "Editar transformação \"%(transformation)s\" para: %(content_object)s" msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "" -"As transformações permitem mudar a aparência de documentos sem fazer " -"mudanças permanentes nos arquivos dos documentos." +msgstr "As transformações permitem mudar a aparência de documentos sem fazer mudanças permanentes nos arquivos dos documentos." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po index 822a466c81..a6a0e9c0b4 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 08:08+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -49,17 +47,13 @@ msgstr "Nu este un format de fișier Office." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "" -"Utilitar din pachetul poppler-utils folosit pentru inspectarea fișierelor " -"PDF." +msgstr "Utilitar din pachetul poppler-utils folosit pentru inspectarea fișierelor PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." -msgstr "" -"Utilitar din pachetul popper-utils folosit pentru extragerea paginilor din " -"fișiere PDF în imagini în format PPM." +msgstr "Utilitar din pachetul popper-utils folosit pentru extragerea paginilor din fișiere PDF în imagini în format PPM." #: forms.py:28 #, python-format @@ -86,9 +80,7 @@ msgstr "Transformări" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Ordinea în care vor fi executate transformările. Dacă este lăsat neschimbat, " -"va fi alocată o ordine automată." +msgstr "Ordinea în care vor fi executate transformările. Dacă este lăsat neschimbat, va fi alocată o ordine automată." #: models.py:39 msgid "Order" @@ -102,9 +94,7 @@ msgstr "Nume" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Introduceți argumentele pentru transformare ca dicționar YAML. adică: " -"{\"grade\": 180}" +msgstr "Introduceți argumentele pentru transformare ca dicționar YAML. adică: {\"grade\": 180}" #: models.py:49 msgid "Arguments" @@ -194,22 +184,18 @@ msgstr "Creați o nouă transformare pentru: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Ștergeți transformarea \"%(transformation)s\" pentru: %(content_object)s?" +msgstr "Ștergeți transformarea \"%(transformation)s\" pentru: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Editați transformarea \"%(transformation)s\" pentru: %(content_object)s" +msgstr "Editați transformarea \"%(transformation)s\" pentru: %(content_object)s" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." -msgstr "" -"Transformările permit modificarea aspectului vizual al documentelor, fără a " -"face modificări permanente ale fișierului documentului în sine." +msgstr "Transformările permit modificarea aspectului vizual al documentelor, fără a face modificări permanente ale fișierului documentului în sine." #: views.py:231 msgid "No transformations" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index e6a41065ad..ea66780f41 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" @@ -82,9 +79,7 @@ msgstr "Преобразования" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Порядок выполнения преобразований. Если оставить неизменным, будет " -"установлен флаг автоматического выставления порядка." +msgstr "Порядок выполнения преобразований. Если оставить неизменным, будет установлен флаг автоматического выставления порядка." #: models.py:39 msgid "Order" @@ -98,9 +93,7 @@ msgstr "Имя" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Введите аргументы для преобразования в формате YAML-словаря, например: " -"{\"degrees\": 180}" +msgstr "Введите аргументы для преобразования в формате YAML-словаря, например: {\"degrees\": 180}" #: models.py:49 msgid "Arguments" @@ -195,9 +188,7 @@ msgstr "Удалить преобразование \"%(transformation)s\" дл #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Изменить преобразование \"%(transformation)s\" for: " -"%(content_object)sjavascript:;" +msgstr "Изменить преобразование \"%(transformation)s\" for: %(content_object)sjavascript:;" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po index c87af06212..c3b8d185b2 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" diff --git a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po index 5f118ce3e5..22791db4ba 100644 --- a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:7 settings.py:12 @@ -81,9 +80,7 @@ msgstr "Dönüşümler" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Dönüşümlerin gerçekleştirileceği sıralama. Eğer değiştirilmeden bırakılırsa, " -"otomatik sipariş değeri verilecektir." +msgstr "Dönüşümlerin gerçekleştirileceği sıralama. Eğer değiştirilmeden bırakılırsa, otomatik sipariş değeri verilecektir." #: models.py:39 msgid "Order" @@ -97,9 +94,7 @@ msgstr "İsim" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Dönüşüm için argümanları bir YAML sözlüğü olarak girin. Yani: {\"derece\": " -"180}" +msgstr "Dönüşüm için argümanları bir YAML sözlüğü olarak girin. Yani: {\"derece\": 180}" #: models.py:49 msgid "Arguments" diff --git a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po index f6a3fc712a..035d1bb5fb 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po index 943aa2945f..b29be47ae8 100644 --- a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:7 settings.py:12 diff --git a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po index 52a3e3d372..545a447c4d 100644 --- a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po index d8ded40354..38db37ff97 100644 --- a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pavlin Koldamov , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Pavlin Koldamov , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po index 369272dcb7..09189ac228 100644 --- a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Atdhe Tabaku , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po index 8a49116806..547cc60bc4 100644 --- a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po index 56b5f3b3d0..33ae204438 100644 --- a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po index 239096c5df..15b290e513 100644 --- a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jesaja Everling , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po index 0113c2a9d8..b4178f3202 100644 --- a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po index 0a30110673..8e517375c7 100644 --- a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po index 83269de8f3..d00761f889 100644 --- a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mehdi Amani , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po index 2d3e32768e..fe2820dec6 100644 --- a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Christophe CHAUVET , 2019 # Pierre Lhoste , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,10 +17,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po index ba3431b714..c8bf570139 100644 --- a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po index 1140dc4fbd..6b1cf8437c 100644 --- a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po index a7c60f9201..35c4762e52 100644 --- a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Marco Camplese , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po index f34c86b9da..a8e4fe26a3 100644 --- a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po index 50f5cf6967..c672852925 100644 --- a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Martin Horseling , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Martin Horseling , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po index 5b76ea34af..6379aff1ff 100644 --- a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Daniel Winiarski , 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,13 +16,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po index 50749cb549..aefccb84bc 100644 --- a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po index af9235cf47..457b73a636 100644 --- a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jadson Ribeiro , 2019 # José Samuel Facundo da Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Last-Translator: José Samuel Facundo da Silva , " -"2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Last-Translator: José Samuel Facundo da Silva , 2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po index e5788e2610..4fec0edfe4 100644 --- a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po index 70ba3c49c3..9ddec07492 100644 --- a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sergey Glita , 2019 # mizhgan , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,13 +16,11 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po index 5225166d3a..75d4679536 100644 --- a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: kontrabant , 2019\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:14 msgid "Dashboards" diff --git a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po index e0d1f40389..96d2532844 100644 --- a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po index 1b47745af4..0f59501c38 100644 --- a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po index 14de8efcde..b902238212 100644 --- a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po index 94164bcfc5..36c077d9e4 100644 --- a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mohammed ALDOUB , 2019 # Yaman Sanobar , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -165,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po index 124e0b0cc1..48fa5d3d37 100644 --- a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Iliya Georgiev , 2019 # Pavlin Koldamov , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -165,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po index 7aaa157fdb..9483e5213b 100644 --- a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # www.ping.ba , 2019 # Atdhe Tabaku , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -166,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po index 525766e7c9..aadf6bfca0 100644 --- a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -163,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po index 8733600361..2ccfc6fa36 100644 --- a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po index b0fda50764..982158c096 100644 --- a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Berny , 2019 # Felix , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -170,8 +169,8 @@ msgstr "Binärdatei" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po index b7ea4aa7a5..edf2a1cdda 100644 --- a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -162,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index 77c5bf8d46..b5f16a989a 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # jmcainzos , 2019 # Lory977 , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,10 +17,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -69,8 +69,8 @@ msgid "" "users can ignore missing dependencies under this environment." msgstr "" "Entorno utilizado para la construcción de paquetes distribuibles del " -"software. Los usuarios finales pueden ignorar las dependencias que faltan en " -"este entorno." +"software. Los usuarios finales pueden ignorar las dependencias que faltan en" +" este entorno." #: classes.py:68 msgid "Build" @@ -108,8 +108,8 @@ msgid "" "usage." msgstr "" "Entorno usado para la ejecución del conjunto de pruebas para verificar la " -"funcionalidad del código. Las dependencias en este entorno no son necesarias " -"para el uso normal de producción." +"funcionalidad del código. Las dependencias en este entorno no son necesarias" +" para el uso normal de producción." #: classes.py:87 msgid "Testing" @@ -175,11 +175,11 @@ msgstr "Binario" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" -"Las librerias de JavaScript descargadas el registro de NPM y utilizadas para " -"la funcionalidad de front-end." +"Las librerias de JavaScript descargadas el registro de NPM y utilizadas para" +" la funcionalidad de front-end." #: classes.py:462 msgid "JavaScript" @@ -243,8 +243,8 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -"Mostrar los diferentes estados de las dependencias. \"Cierto\" significa que " -"las dependencias están instaladas y son de una versión correcta. \"Falso\" " +"Mostrar los diferentes estados de las dependencias. \"Cierto\" significa que" +" las dependencias están instaladas y son de una versión correcta. \"Falso\" " "significa que faltan las dependencias o que existe una versión incorrecta." #: classes.py:810 @@ -287,8 +287,8 @@ msgid "" "Comma separated names of dependencies to show in the list while excluding " "every other one." msgstr "" -"Nombres separados por comas de las dependencias se muestran en la lista y se " -"excluyen todos los demás." +"Nombres separados por comas de las dependencias se muestran en la lista y se" +" excluyen todos los demás." #: management/commands/installjavascript.py:15 msgid "Process a specific app." diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po index 12ba0af269..ef04f4a1dc 100644 --- a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mehdi Amani , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -163,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po index 193065b12e..e824bdf1c2 100644 --- a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Thierry Schott , 2019 # Yves Dubois , 2019 # Christophe CHAUVET , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -19,10 +19,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -169,8 +169,8 @@ msgstr "Binaire" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 @@ -271,8 +271,8 @@ msgid "" "Comma separated names of dependencies to show in the list while excluding " "every other one." msgstr "" -"Noms de dépendances à afficher dans la liste en excluant les autres, séparés " -"par des virgules." +"Noms de dépendances à afficher dans la liste en excluant les autres, séparés" +" par des virgules." #: management/commands/installjavascript.py:15 msgid "Process a specific app." diff --git a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po index 39853129c3..c2c195185b 100644 --- a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2019 # molnars , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po index c4c44cc6a5..382620f0ec 100644 --- a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sehat , 2019 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po index e4e5d4b594..a64c8455e5 100644 --- a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Pierpaolo Baldan , 2019 # Marco Camplese , 2019 # Giovanni Tricarico , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -18,10 +18,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -165,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo index 36450a6f686781f40ce3dfd9aa661410e2103071..5571d652ae201585535d1face9cecdd39454b183 100644 GIT binary patch literal 6778 zcmcJTS!`Ta8OKjc7wQ6~X`y9lIZa7Oh-YkPp{ZN9b>bvATdl+dXb^Bb_ssZs?%X@v zWt_1Pk|hK$NFZ4}Ai+ab5JG;b5K>!fu;YfWDvmkM_i{dby;27J#0~s#{N_fbc7QK}ZvtNfZvy`g@=v`{ z;*C7Ko%>rsd43N#58e+x0k*(fz#oCPfDBTQ2g@@DE|IF zD6W1E+z)5|^Kp_s^H_{{o6$vS=4@GbsM6fS15e zf?MFPK+)qH7%TpI3VamY1Vx`ef_$Q0Dc`>iivMpSXzu~<2ETQkQU^ha<8yB>`0)}b z@?I|SuOKF=*Fn*H3?Z`bPVh9i2Rskvpz!0zpxF5fQ2hKtdH?6~{@>u|cz!#^3qQUB zir>Bm@=E;sZ+5c8h_P-01_Y>f~;9>A?@S~vE-3C7o=AiihpWt`E&)%uj z`@!9iRO~$k9sn$UpT|W1RRxrIKUUs<7!*4%g3v=vb4t7q zamw+&0@Mde6u`w^rd;D@^$4fvwvSV4j>LJ6bDUFb+{-DknBbH{^so4<;z#V4<1tRr z?L(ZR(@{?Gf$&!jiC_N^u4DS(kX+bb-iiPEN0p07PF+4Y2ufV!fZ~J0*V6J%;&X(P z(5UM&LQXk}$_&mrt%Q-k^ z!^E1Pt6h|4CJb#*RkQ83I^rUebk&jEg@HP{Y-`QpSJ&f2=k35`HdRMMlkyw4T1Ka~ zZ4#aaIx;Pr>bR~0+qO|)qnhJBi?zK}3-iG0dJ?yEwrq9i(o8pOWc|YGe=jLrj#trm zTgd9N3vIc9iyGQ?Y|_;+nQGh z{E1HNXL2X9#49G!HtM(}j#@U#bjvlCGabd5Ub2^e=oPE#W0y<|t%jGS(|RF^gS?ix zI2zY;7!t;95h$9M{_N_VyV9N7l%Y#(14ml)82P4=#CaR70_0~&cUte-;~(u!$GP;+ z_72(8)&8wKNo$E~ivnC{#)a~1pof}^SEDdC0e-Glt6CjHIuY)p_r)OerBpUAKIn4c zol=kU2z`%jdu;ex=V|HHC1Ie1G{DBhE#;Y6!ewn!Ynn#EGoex%*Rxf^ic>L|)k&&r zM8q|sII#pHO}&u53x$#>06ns0mkvi@M5k>%g2DqL7b>?*)9P9bnQO}?LXZE;zDXWM zqO}-EzGXViT_)SZZddR6=k+}DTrr``V0_&_6wRu7z!x#rXUnLi8h`m%MAinSyYW`b zgt|T8ARfTaIOUS96~4y-%O>-SYrbL-n#9(!uuDp9Z_kP>G3Zv(hiSOh~q|RP1~i_THLCt<8e~6{gPyaiIUMovpyjGP`x_gS9?+FgeUzd$NaNY&G##u z&xu-`h|=Q9RG41A6?d2163%*p&qpLzgjb}psrgLfM#<}T45@^SL?ocLBrO+lBZW=M z<3P4H9g;|BTU95yKJU|O=#uKPlo&~(VgHCA@1wH|XDA?&U zwRSd8kK?RF)0IqlIj9eV!o6U!+OkNg(<+Lws62C|A!glnA37gj!^%kt1nV)yGYkZp*^*zE-7}ex=3?Dc_gVR&uWmRd5wn zh{|e_R3olx5kHpMth;euI!Yog%H)~MECIG$nV-C;JuTuab-`Cw7WvHQ&KHLZ&W;9F zeLT*S!EUV2+m$S?$QGVHE0mVXd{8L`(9~y-o|-*zOkX&5?)?1YXUERjcAR9DGik#G zl_Pm0tt`gVdTinG$~oI{vT0=wVbgm5s59s~-rw<+2H_0(}njEbxCIp01 z6DQO9Om96wjYaD^y>-I$aEp49Rx|GT=&?qN3M94lk#R2(0R>$ui`KNJ^=XrJ9RA+3 zoMr8FdSYUAb+tBQ85Lx&Gegq?}KV`t{i9NV^ZsyaD# zl(IyGD&o>f2vnL1;eADxM1qF6o&#%$+dh7C)h$KpV?TQhYP-vIX zJ96I%v=7*x8redi1VjDNO7{m>eyfTq_WV8`c*GgXCb)gEiYQ~g09pQZF8cB zyD-S|#{XH9V$8Lsr%ficf#4So@3ciQS(%x5I{XrC~cWFz()D-7%d|G9L;{>m55%?e=GQL zT1e)LoNkO}FM}cjSU+bm;~FUoLD^i!qj-r1Bh{D)Hha%*Z3bNTiCortA2_a!Ym%>C z8|JE-TO;)RpN@ltOfycdSS(dWrb9nXOB*N)V4bld*VMmuZ*!a3v+aJxSP`N&ZibET7q+yJ#|ec@PMBo(Q^pgw4J>{%`h*qck~ z*8LVuM`Y-(YTwL@j>J$YiQFWOi=HlSkbS5=6c!p1!R$-mR$L*8;z&+L`^z?qx5Jie zn#g)5CNeo&`q?^)*Ls_+-iByCEEN9rGfjLTjV$RWC2NaedSr1~-3LPG4AC7xNF zV9NmA+wkF2r+tK^3&`k8UP%VT9b1c6@|5CvvPjy|4`g_D?X(!4U9FVmD}o<@DIDjS YMI>=qEMZ=!l z?2W)6i146MK~N+Xsq~-!O_laRUaJr3vd%19zi-cnUXo4!Ub%`s|*rm zelt#^o{kCB4_1)>V*;y;sm3C##0CsuC+@+c$XZPjmAN4#31%F(;|murqkgx7`RF4J zWf+#sZ{jrcq60N?C)Q#YYJ!W%noK|L#X;0WuTcX}y7x1vOnt#B{DBWR&JcquL!+cY zNB9ag-UKGpn4-ZyGs8nG`-+;}7@{)3_0@gflxE!8YP?)E!zzWipR# z>j*=r@#;|T_oME>i9+(P72TvGhC`?wKF4-^gIZvAkuD1r^}ZTQaTC^H2Pz{cQ4^oV z&DiJS6l$FNsD(a8ZRmS~hCZ())KUC%v7dZt#g)hrng;3?s>)WXCQ;EOnz%`UE820Z zYwJr=(Q#IIt;~_BsSUL1<~Ay#WM}Ypq^ABRXw}-e3d!)Y)Mk5giW7B2B~)ECR_*Oa zhp2BwMTu64XYg)>w#3<)oz!(yT}Ksdoy%fcsJbaST%|>4qYI$2BZK$kRzL zWgE45G@ZLI%O?Hvb|5fiFXh+UC;7MSSivbf6l}6{!LHHaaKEoG7Vo{#bH2T{FQXlf g%-d@v@9p*IZu>EM*DjV0*oCr2+gjdjXDe>~2mfb+LI3~& diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po index aca4b5f22d..c3efcb316e 100644 --- a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -67,6 +66,8 @@ msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" +"Vide, ko izmanto programmatūras izplatāmo pakešu veidošanai. Gala lietotāji " +"var ignorēt trūkstošās atkarības šajā vidē." #: classes.py:68 msgid "Build" @@ -77,6 +78,8 @@ msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" +"Vide, ko izstrādātāji izmanto, lai veiktu izmaiņas kodā. Gala lietotāji var " +"ignorēt trūkstošās atkarības šajā vidē." #: classes.py:74 msgid "Development" @@ -87,6 +90,8 @@ msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" +"Normāla vide gala lietotājiem. Trūkstošas atkarības šajā vidē radīs " +"problēmas un kļūdas normālas lietošanas laikā." #: classes.py:80 msgid "Production" @@ -121,7 +126,7 @@ msgstr "Nepieciešams norādīt vismaz vienu: app_label vai moduli." #: classes.py:279 #, python-format msgid "Dependency \"%s\" already registered." -msgstr "Atkarība "%s" jau ir reģistrēta." +msgstr "Atkarība \"%s\" jau ir reģistrēta." #: classes.py:305 #, python-format @@ -154,7 +159,7 @@ msgstr "Nav precizēts" #: classes.py:405 msgid "Patching files... " -msgstr "" +msgstr "Notiek failu lāpīšana ..." #: classes.py:440 msgid "Executables that are called directly by the code." @@ -166,13 +171,15 @@ msgstr "Binārs" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" +"JavaScript bibliotēkas lejupielādēja no NPM reģistra un tika izmantotas " +"front-end funkcionalitātei." #: classes.py:462 msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #: classes.py:496 classes.py:729 msgid "Downloading... " @@ -196,11 +203,11 @@ msgstr "Python" #: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." -msgstr "" +msgstr "Fonti, kas lejupielādēti no fonts.googleapis.com." #: classes.py:712 msgid "Google font" -msgstr "" +msgstr "Google fonti" #: classes.py:791 msgid "Declared in app" @@ -208,7 +215,7 @@ msgstr "Paziņots lietotnē" #: classes.py:792 msgid "Show dependencies by the app that declared them." -msgstr "" +msgstr "Rādīt atkarības pēc lietotnēm, kas tās deklarēja." #: classes.py:796 msgid "Class" @@ -219,6 +226,8 @@ msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" +"Rādīt dažādu atkarību klases. Klases parasti tiek sadalītas pēc valodas vai " +"atkarības faila veidiem." #: classes.py:802 msgid "State" @@ -230,12 +239,16 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" +"Rādīt dažādos atkarību stāvokļus. True nozīmē, ka atkarības ir instalētas un" +" ir pareizas. False nozīmē, ka trūkst atkarību vai ir nepareiza versija." #: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Atkarības, kas nepieciešamas vienai videi, var nebūt nepieciešama citai. " +"Vides paraugi: Produkcijas vide, Izstrādes vide." #: links.py:11 views.py:35 msgid "Check for updates" diff --git a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po index 212ed41ae2..fa9bc33475 100644 --- a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2019 # Justin Albstbstmeijer , 2019 # Lucas Weel , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Lucas Weel , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -165,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po index 6e5caaf9bf..2e54876f62 100644 --- a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mic , 2019 # Roberto Rosario, 2019 # Przemysław Bodio , 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -18,13 +18,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -167,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index 8a85e889aa..a224bc7a4f 100644 --- a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Emerson Soares , 2019 # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,14 +15,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Manuela Silva , " -"2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva , 2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -166,8 +164,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po index e4aee56a71..dec46083d6 100644 --- a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rogerio Falcone , 2019 # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -166,8 +165,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.mo index 13c65dbc968e81541e98e4369450a5c94cbf15f6..025d8e3c06d0cf4274529ca3afb4cc788da6f49f 100644 GIT binary patch literal 7049 zcmcJTTZ|-C8OKZHx~Ry4fCzF}T%2LIdoH`k(#wFeJF~F3m&xw1iDJZ>?&_JtR#%mE znc3cu7}*D3NO&-ski{5<=z|F%CdR}>ePBp75?_o7Q3Fc6MU9sPOh^de?|-VQyJr>> zUZ_m(=R5QA)(gMsam;bvz79{fA_Vempeo&mRlJn|O62f+tH`R6B~ z{QWafuKpc34gR6J--=Vd#{IRRU;P>GMyJPrUzD@81ID|BDIQC&25#?|i`Xc7wd~e)G|i zAAbTR_iq*c3zXikg7VW_p!B-|VaLE*z!+Qw35EApQ1ku=ybgR5#3kM}7_0kj;G^JP zQ1<;CoCp65$}hJO9Pw-)D7y}Untu_Lo)3YVCjxhZYv4`b(;y>uY$7wyP)j(1$ZC$0x12iM)@W1 zCXlJUN5M~m-vSknAA{o4PeIxDI`|lP0Zt+0-s7O2KM9Ig-v^aX&wV0!ztcB1%5pypgHF?%O%iXPjr_Fl?JI29@%FC-?UUuN>Bgxkl8&DTnYTamGk)V< z&o^0+_$g02Ch~hhX5y~t1W6Eef~ak|&tnsuYKKK9Fx@onnS3QMq0Mr$97KT|*nIDj zvXyuZjfXCXNCpIthcEtGS>Z`YC!Y^@rEU^09huMB@!N zsM-#q44X$kF=_CX!b+CB;zuTkR&5$by&%d>&n~azCW>>j6m0&`Db_Uer~DpTjSkCN zW+9C`MLV}~wA0LCNEjy)D9tN>_RY5K**4=>p-Y2h92ua;hHsYBxJb~dgZw=0x6Jl2 z_h>xZ$)$TXK4MSbxVL(ewNsl&0j_i3hI%&8!<&oOqA>P5__^6^8gCxyM7T!hi$Uls zsZ3se(C5NAr5hI!`pyqMHhOJ}tn%uT7^skTurakuMeZ-*vczwn^p{JXiAq`A&DRJk zPQ_qGr#&_LAY1T9YzQ|aYEgLO0_{+s2 z3W84MZoJj=Lz4_RhzIa9PB|5{OW)&w6+d@_+pb~|nlxzVVV{&5PS1!u_0g@O$$>b^ zGt;Taqv=!zx_a7Nj^pJp@DrOg+i|by9f;F*P?scMOjJe_&F+BoBlYTDH`LS8BbQW{rPNmvjrvD|oR5wy9HxLM$Ej(`=RtDt zI?5XqS+ju#P4AGu6olU4iuDvH8*MiDh>STxjxDp3cr)aiR5+6eEAT&tm zQI%xD5nl1*Xfj&wR05@m%e|(VJwNCA?~-w5&4wWsW<`i^iE@?|xWZMgG>yr)PLV1w z6*-wfYLE_2Ya4XDqc|%ytV(`$Ij9eV!oA?o`13#*Ae}gzzT~uJI2Eql76rmRR)W{8K)-(tFFdNFk@>;7(OkJrlL*;uj zZIycoRKZnPA(g#FQjNHJi}gq4Nc+b^Dw2Qaj?^<1hA;j?*H8Ez4PY8{ITN)j~>}_ zEJ)%sZye5+ZKtuXSk4-Yam#F3INCTCtXfUlm_u00OixbT*_hnjn7+eIPq%L0wPTWF z%OP^Kv6vDNN==-$%zZRpVaLp;S$k!t8^kvyBN~f=-)os;anFw|J{_yB#?9DDo+nvr zVq$G=tx2(tGTRMKsRU1?aYjLk(}|qH*~HYY+xP6|;X}ucPK<9keDLu6(6p)MtmV)`OE{02O4{Z-)S-!-iU_T>7p$Rp_wyJhTs_o?I>D4&Q5k2gN&z<$lmbs(Q zQ?A!;Ah!(TdsZ7sT=J^5f-*-9;hV5skOw6E{UNm&93j> z9CMio*%Q{cwxg&I2iPe|zhuhgH@zIAAlJ`R& zrIJ(Jq$Hb9>XX~>P*bYQlT8D)R<(SPC9WTXkFgx0RZ1%%{gYf)Cl5J;KP7&|4WfQl z&d$GjFe{_r zK}n5JEBo#}I%$QCbt#o<1jJV#rjm(o>K-13Df7xnOxds3X}6tbdJ}1@l%&ME^|OeO zT(%dkGAS|XD_CNwGG*WH=wDJ+PF7ktqf|(h#PshJ)l#LpB&pD-01rC%Hq-QcOD9T2 zQ;{T^nPqk*K@vwQWU3b5z(0J>on=ntIk1`Es}zNT+=W+cGT9Rm zAo(Mp(YNmF-1bzC%Q=+Xwqm@x{$OBA?#;4xsplVAgX%=oo2r6&BaJ^3QHUKg%HH4c zH>T^am$rec6zFmvfTx1NKA^0M1iRW1oS!Y_R$$hx#0(vAid)c&1g8wvDH zWqur?5NLlWLzsog zsAxLUaF^SJv_}NjQrdY)m40L%i%vs>hB{@Ck*IC@I*ik5%fQST{bR&zst6+zYnAJ? zE=iz|;Gp{lN11swr^}6lOc@neuO*uVBO*A(x`nh6QNsjrI|mkI?Hq9bAf2FORX5{$ zX;cJVA!Ca5Gk6D~tTG`a^@sJreW5LcO;lE^Re)6o@#27U)0>fQ|7$fMigz7?*AQoL2fnFR| z7unlgK@hoKsEbMng6blOsBXHJt_%dT7wY?)rw5;X&i`!Z{QuAM|Kp{^Y&7>ZRGK$p zfNUn0JZ6XSotF>7S7sJMKk8O9mSY(Cvv$`Qu4CNej?;LM@gW?=Jo<4FEAc0;HOpB! zZ>!=)9oAw5BiM&=%%WaAje77FR^UB%{1ADOy>#!t$1vm1Sc5C5=K?%5i;cJwA7haD zZGnsJ+*rmKMtrLe45MC8-c1od1N z*D$}GqKBnB*Z%upjk(2Gzk)+<;?v zlWm^DT#y?b^j~|MK)ratHHG}f4xlQ}pcZl(Gk6wH;TxoA>t|L?ypN9t97eVNggc%< z6)=Nod=#Mns{9u>SiIG+8m+hmHE|TRz&Ib8Ac>tgh#PSn)v-Lz;T`w;qZ|k>Z3?^a zD)!=Q)PjDaI^nCP|C+F^+H4bcqADFi{csEiaT0YF=CKt&qFTL#+WQq$0SWp{Gc1J~ z524P&2nclor@i0Z{bT>%H!lK77FM6A3V;J%Hz(pDyMKGc->og Y9twL3CAFav=VJW@XQtt<^Qmd>A9NjU!T, YEAR. -# +# # Translators: # Badea Gabriel , 2019 # Stefaniu Criste , 2019 # Roberto Rosario, 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,14 +17,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -71,6 +69,8 @@ msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" +"Mediul utilizat pentru a construi pachete distribuite ale software-ului. " +"Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." #: classes.py:68 msgid "Build" @@ -81,6 +81,8 @@ msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" +"Mediul fost folosit de dezvoltatori pentru a face schimbări de cod. " +"Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." #: classes.py:74 msgid "Development" @@ -91,6 +93,8 @@ msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" +"Mediu normal pentru utilizatorii finali. O dependență lipsă în acest mediu " +"va duce la probleme și erori în timpul utilizării normale." #: classes.py:80 msgid "Production" @@ -170,13 +174,15 @@ msgstr "Binar" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" +"Bibliotecile JavaScript descărcate din registrul NPM și folosite la " +"funcționalitatea front-end." #: classes.py:462 msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #: classes.py:496 classes.py:729 msgid "Downloading... " @@ -212,7 +218,7 @@ msgstr "Declarate în aplicație" #: classes.py:792 msgid "Show dependencies by the app that declared them." -msgstr "" +msgstr "Afișați dependențele după aplicația care le-a declarat." #: classes.py:796 msgid "Class" @@ -223,6 +229,8 @@ msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" +"Arătați diferitele clase de dependențe. Clasele sunt de obicei împărțite în " +"funcție de limbă sau de tipurile de fișiere ale dependenței." #: classes.py:802 msgid "State" @@ -234,12 +242,17 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" +"Afișați diferitele stări ale dependențelor. True înseamnă că dependențele " +"sunt instalate și că au o versiune corectă. Fals înseamnă că lipsesc " +"dependențele sau există o versiune incorectă." #: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Este posibil ca dependențele necesare pentru un mediu să nu fie necesare " +"pentru altul. Exemplu de medii: producție, dezvoltare." #: links.py:11 views.py:35 msgid "Check for updates" diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po index e345c441b4..b073629e32 100644 --- a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Sergey Glita , 2019 @@ -11,7 +11,7 @@ # Roman Z , 2019 # D Muzzle , 2019 # lilo.panic, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -21,13 +21,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic, 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -170,8 +168,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po index 5baac7b608..d37074267f 100644 --- a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: kontrabant , 2019\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" @@ -164,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po index 72e268e8ff..7427e4125e 100644 --- a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Nurgül Özkan , 2019 # serhatcan77 , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 , 2019\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po index dc8a7467c8..c7af47bac8 100644 --- a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Trung Phan Minh , 2019 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -164,8 +163,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po index 13af7b2341..2513c0545c 100644 --- a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:27 links.py:43 permissions.py:7 @@ -162,8 +162,8 @@ msgstr "" #: classes.py:459 msgid "" -"JavaScript libraries downloaded the from NPM registry and used for front-end " -"functionality." +"JavaScript libraries downloaded the from NPM registry and used for front-end" +" functionality." msgstr "" #: classes.py:462 diff --git a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po index 12ae295070..d481cc5cef 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 msgid "Django GPG" @@ -273,8 +271,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -283,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po index d2d1174b10..336a54dad7 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -272,8 +271,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po index 5be9b89b25..210caeccfa 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Django GPG" @@ -207,9 +205,7 @@ msgstr "Potpisi" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " -"datoteka." +msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." #: settings.py:22 msgid "Path to the GPG binary." @@ -276,8 +272,8 @@ msgstr "Uvedi novi ključ" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -286,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po index b11097ea0a..3d8096c95a 100644 --- a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:33 msgid "Django GPG" @@ -272,8 +270,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +280,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po index df82e5d9a9..a8b6a23fb0 100644 --- a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -271,8 +270,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +280,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po index 46b0f6bf85..26bcd9f478 100644 --- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bjoern Kowarsch , 2018 # Mathias Behrle , 2019 @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-19 09:33+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -74,9 +73,7 @@ msgstr "Begriff" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " -"wird." +msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird." #: links.py:15 msgid "Delete" @@ -148,9 +145,7 @@ msgstr "Signaturfehler." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " -"verfügbar." +msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -257,10 +252,7 @@ msgstr "Schlüssel %(key_id)s erfolgreich heruntergeladen" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "" -"Namen, Nachnamen, Schlüssel-IDs oder E-Mail-Adressen bei der Suche nach " -"öffentlichen Schlüsseln verwenden, um diese vom Schlüsselserver zu " -"importieren." +msgstr "Namen, Nachnamen, Schlüssel-IDs oder E-Mail-Adressen bei der Suche nach öffentlichen Schlüsseln verwenden, um diese vom Schlüsselserver zu importieren." #: views.py:110 msgid "No results returned" @@ -284,12 +276,9 @@ msgstr "Neuen Schlüssel hochladen" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." -msgstr "" -"Private Schlüssel werden zum Signieren von Dokumenten benutzt. Sie können " -"ausschließlich von Benutzern hochgeladen werden. Die Ansicht zum Hochladen " -"von privaten und öffentlichen Schlüssel ist identisch." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." +msgstr "Private Schlüssel werden zum Signieren von Dokumenten benutzt. Sie können ausschließlich von Benutzern hochgeladen werden. Die Ansicht zum Hochladen von privaten und öffentlichen Schlüssel ist identisch." #: views.py:174 msgid "There no private keys" @@ -297,14 +286,10 @@ msgstr "Keine privaten Schlüssel vorhanden" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"Öffentliche Schlüssel werden zur Verifzierung von signierten Dokumenten " -"benutzt. Sie können von Benutzern hochgeladen oder von Schlüsselservern " -"heruntergeladen werden. Die Ansicht zum Hochladen von privaten und " -"öffentlichen Schlüssel ist identisch." +msgstr "Öffentliche Schlüssel werden zur Verifzierung von signierten Dokumenten benutzt. Sie können von Benutzern hochgeladen oder von Schlüsselservern heruntergeladen werden. Die Ansicht zum Hochladen von privaten und öffentlichen Schlüssel ist identisch." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po index 517af10b5e..1e47f63179 100644 --- a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -68,8 +67,7 @@ msgstr "Όρος" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Όνομα, e-mail, αναγνωριστικό κλειδιού ή δακτυλικό αποτύπωμα προς αναζήτηση." +msgstr "Όνομα, e-mail, αναγνωριστικό κλειδιού ή δακτυλικό αποτύπωμα προς αναζήτηση." #: links.py:15 msgid "Delete" @@ -141,9 +139,7 @@ msgstr "Σφάλμα υπογραφής." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Το έγγραφο είναι ψηφιακά υπογεγραμμένο αλλά δεν υπάρχει διαθέσιμο δημόσιο " -"κλειδί για επαλήθευση." +msgstr "Το έγγραφο είναι ψηφιακά υπογεγραμμένο αλλά δεν υπάρχει διαθέσιμο δημόσιο κλειδί για επαλήθευση." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -207,9 +203,7 @@ msgstr "Υπογραφές" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Ο προσωπικός φάκελος θα χρησιμοποιηθεί για την αποθήκευση κλειδιών και " -"αρχείων ρυθμήσεων." +msgstr "Ο προσωπικός φάκελος θα χρησιμοποιηθεί για την αποθήκευση κλειδιών και αρχείων ρυθμήσεων." #: settings.py:22 msgid "Path to the GPG binary." @@ -276,8 +270,8 @@ msgstr "Ανέβασμανέου κλειδιού" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -286,8 +280,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po index 5ceac197a9..3a5d75f796 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -71,9 +70,7 @@ msgstr "Término" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Nombre, dirección de correo electrónico, identificador de llave o huella " -"digital de llave a buscar." +msgstr "Nombre, dirección de correo electrónico, identificador de llave o huella digital de llave a buscar." #: links.py:15 msgid "Delete" @@ -145,9 +142,7 @@ msgstr "Error de firma." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"El documento ha sido firmado pero no hay llave pública disponible para " -"verificación." +msgstr "El documento ha sido firmado pero no hay llave pública disponible para verificación." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -211,9 +206,7 @@ msgstr "Firmas" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Directorio de inicio utilizado para almacenar las llaves, así como los " -"archivos de configuración." +msgstr "Directorio de inicio utilizado para almacenar las llaves, así como los archivos de configuración." #: settings.py:22 msgid "Path to the GPG binary." @@ -256,10 +249,7 @@ msgstr "Llave: %(key_id)s, recibida con éxito" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "" -"Utilice nombres, apellidos, identificaciones de llaves o correos " -"electrónicos para buscar llaves públicas para importar desde el servidor de " -"llaves." +msgstr "Utilice nombres, apellidos, identificaciones de llaves o correos electrónicos para buscar llaves públicas para importar desde el servidor de llaves." #: views.py:110 msgid "No results returned" @@ -283,12 +273,9 @@ msgstr "Subir una nueva llave" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." -msgstr "" -"Las llaves privadas se utilizan para firmar documentos. Las llaves privadas " -"solo pueden ser cargadas por el usuario. La vista para cargar llaves " -"privadas y públicas es la misma." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." +msgstr "Las llaves privadas se utilizan para firmar documentos. Las llaves privadas solo pueden ser cargadas por el usuario. La vista para cargar llaves privadas y públicas es la misma." #: views.py:174 msgid "There no private keys" @@ -296,14 +283,10 @@ msgstr "No hay llaves privadas" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"Las llaves públicas se utilizan para verificar documentos firmados. Las " -"llaves públicas pueden ser cargadas por el usuario o descargadas de los " -"servidores de llaves. La vista para subir llaves privadas y públicas es la " -"misma." +msgstr "Las llaves públicas se utilizan para verificar documentos firmados. Las llaves públicas pueden ser cargadas por el usuario o descargadas de los servidores de llaves. La vista para subir llaves privadas y públicas es la misma." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po index 24c06e4c1c..b3896e0ac5 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 # Nima Towhidi , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -273,8 +272,8 @@ msgstr "بارگذاری کلید جدید" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -283,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po index 587f6d4229..b7fec258ba 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Frédéric Sheedy , 2019 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-05 02:55+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -145,9 +144,7 @@ msgstr "Erreur de signature." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Ce document est signé mais aucune clé publique n'est disponible pour " -"vérifier la signature." +msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -211,9 +208,7 @@ msgstr "Signatures" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " -"de configuration" +msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" #: settings.py:22 msgid "Path to the GPG binary." @@ -256,9 +251,7 @@ msgstr "Clé : %(key_id)s reçue avec ssucès" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "" -"Utilisez prénoms, noms, identifiants des clés ou courriels pour rechercher " -"des clés publiques à importer du serveur de clés." +msgstr "Utilisez prénoms, noms, identifiants des clés ou courriels pour rechercher des clés publiques à importer du serveur de clés." #: views.py:110 msgid "No results returned" @@ -282,12 +275,9 @@ msgstr "Uploader une nouvelle clé" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." -msgstr "" -"Les clés privées sont utilisées pour signer les documents. Les clés privées " -"peuvent être téléversées par l'utilisateur. La page est la même pour " -"téléverser une clé privée ou publique." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." +msgstr "Les clés privées sont utilisées pour signer les documents. Les clés privées peuvent être téléversées par l'utilisateur. La page est la même pour téléverser une clé privée ou publique." #: views.py:174 msgid "There no private keys" @@ -295,14 +285,10 @@ msgstr "Aucune clé privée" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"Les clés publiques sont utilisées pour vérifier les documents signés. Les " -"clés publiques peuvent être téléversées par l'utilisateur ou téléchargées du " -"serveur de clés. La page est la même pour téléverser une clé privée ou " -"publique." +msgstr "Les clés publiques sont utilisées pour vérifier les documents signés. Les clés publiques peuvent être téléversées par l'utilisateur ou téléchargées du serveur de clés. La page est la même pour téléverser une clé privée ou publique." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po index ef2ff91e1e..97daa3513c 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -272,8 +271,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po index db9663cf58..eca448e13a 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-12 17:32+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -271,8 +270,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -281,8 +280,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po index 8c51982fe6..a96b34ff8a 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012,2015 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -142,9 +141,7 @@ msgstr "Errore di firma" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " -"verifica" +msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" #: literals.py:58 msgid "Document is signed, and signature is good." @@ -208,9 +205,7 @@ msgstr "Firme" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home directory utilizzata per memorizzare le chiavi così come i file di " -"configurazione." +msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." #: settings.py:22 msgid "Path to the GPG binary." @@ -277,8 +272,8 @@ msgstr "Carica nuova chiave" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -287,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po index cbdbb81987..4247ebe8db 100644 --- a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:33 msgid "Django GPG" @@ -142,8 +140,7 @@ msgstr "Paraksta kļūda." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Dokuments ir parakstīts, bet verifikācijai nav pieejama publiska atslēga." +msgstr "Dokuments ir parakstīts, bet verifikācijai nav pieejama publiska atslēga." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -207,9 +204,7 @@ msgstr "Paraksti" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Mājas katalogs tiek izmantots, lai saglabātu atslēgas, kā arī konfigurācijas " -"failus." +msgstr "Mājas katalogs tiek izmantots, lai saglabātu atslēgas, kā arī konfigurācijas failus." #: settings.py:22 msgid "Path to the GPG binary." @@ -252,9 +247,7 @@ msgstr "Veiksmīgi saņemtais taustiņš: %(key_id)s" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "" -"Izmantojiet vārdus, uzvārdus, atslēgas ID vai e-pastus, lai meklētu " -"publiskās atslēgas, lai importētu no atslēgas servera." +msgstr "Izmantojiet vārdus, uzvārdus, atslēgas ID vai e-pastus, lai meklētu publiskās atslēgas, lai importētu no atslēgas servera." #: views.py:110 msgid "No results returned" @@ -278,12 +271,9 @@ msgstr "Augšupielādējiet jaunu atslēgu" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." -msgstr "" -"Privātās atslēgas tiek izmantotas, lai parakstītu dokumentus. Privātās " -"atslēgas var augšupielādēt tikai lietotājs. Skats, lai augšupielādētu " -"privātās un publiskās atslēgas, ir vienāds." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." +msgstr "Privātās atslēgas tiek izmantotas, lai parakstītu dokumentus. Privātās atslēgas var augšupielādēt tikai lietotājs. Skats, lai augšupielādētu privātās un publiskās atslēgas, ir vienāds." #: views.py:174 msgid "There no private keys" @@ -291,13 +281,10 @@ msgstr "Nav privāto atslēgu" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"Publiskās atslēgas tiek izmantotas, lai pārbaudītu parakstītos dokumentus. " -"Publiskās atslēgas var augšupielādēt lietotājs vai lejupielādēt no atslēgas " -"serveriem. Privāto un publisko atslēgu augšupielāde ir tāda pati." +msgstr "Publiskās atslēgas tiek izmantotas, lai pārbaudītu parakstītos dokumentus. Publiskās atslēgas var augšupielādēt lietotājs vai lejupielādēt no atslēgas serveriem. Privāto un publisko atslēgu augšupielāde ir tāda pati." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po index 0e040fde17..1ce1f5f7a9 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -142,9 +141,7 @@ msgstr "Handtekeningfout" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Document is ondertekend, maar er is geen publieke sleutel beschikbaar voor " -"verificatie." +msgstr "Document is ondertekend, maar er is geen publieke sleutel beschikbaar voor verificatie." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -275,8 +272,8 @@ msgstr "Upload nieuwe sleutel" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -285,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po index 2f67d2c861..e43033fe79 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012,2015 @@ -13,15 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:33 msgid "Django GPG" @@ -145,9 +142,7 @@ msgstr "Błąd podpisu." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Dokument został podpisany, ale klucz publiczny nie jest dostępny dla " -"weryfikacji." +msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny dla weryfikacji." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -211,8 +206,7 @@ msgstr "Podpisy" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." #: settings.py:22 msgid "Path to the GPG binary." @@ -279,8 +273,8 @@ msgstr "Prześlij nowy klucz" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -289,8 +283,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po index 0e6b97c758..9e830fa94a 100644 --- a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2012 # Vítor Figueiró , 2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -142,9 +141,7 @@ msgstr "Erro de assinatura." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"O documento está assinado, mas não está disponível uma chave pública para " -"verificação." +msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -275,8 +272,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -285,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po index 10cefec220..d7e21e4f13 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -208,9 +207,7 @@ msgstr "Assinaturas" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Diretório inicial usado para armazenar as chaves, assim como os arquivos de " -"configuração." +msgstr "Diretório inicial usado para armazenar as chaves, assim como os arquivos de configuração." #: settings.py:22 msgid "Path to the GPG binary." @@ -253,9 +250,7 @@ msgstr "Chave: %(key_id)s, recebida com sucesso." msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "" -"Use nomes, sobrenomes, ID's de chaves ou e-mails para procurar chaves " -"públicas a serem importadas do servidor de chaves." +msgstr "Use nomes, sobrenomes, ID's de chaves ou e-mails para procurar chaves públicas a serem importadas do servidor de chaves." #: views.py:110 msgid "No results returned" @@ -279,12 +274,9 @@ msgstr "Carregar nova chave" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." -msgstr "" -"Chaves privadas são usadas para assinar documentos digitalmente. Chaves " -"públicas podem ser carregadas apenas pelo usuário. A vista para carregamento " -"de chaves públicas e privadas é a mesma." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." +msgstr "Chaves privadas são usadas para assinar documentos digitalmente. Chaves públicas podem ser carregadas apenas pelo usuário. A vista para carregamento de chaves públicas e privadas é a mesma." #: views.py:174 msgid "There no private keys" @@ -292,13 +284,10 @@ msgstr "Não há chaves privadas" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"Chaves públicas são usadas para verificar documentos assinados digitalmente. " -"Chaves públicas podem ser carregadas pelo usuário ou baixadas de servidores " -"de chaves. A vista para carregamento de chaves públicas e privadas é a mesma." +msgstr "Chaves públicas são usadas para verificar documentos assinados digitalmente. Chaves públicas podem ser carregadas pelo usuário ou baixadas de servidores de chaves. A vista para carregamento de chaves públicas e privadas é a mesma." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po index ce5c42c78d..ca51ec251a 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:33 msgid "Django GPG" @@ -143,9 +141,7 @@ msgstr "Eroare semnătură." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " -"verificare." +msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -209,9 +205,7 @@ msgstr "Semnături" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Cale director utilizată pentru a stoca cheile, precum și fișiere de " -"configurare." +msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." #: settings.py:22 msgid "Path to the GPG binary." @@ -254,9 +248,7 @@ msgstr "Ați primit cu succes cheia: %(key_id)s" msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." -msgstr "" -"Utilizați numele, numele de familie, identitatea cheilor sau e-mailurile " -"pentru a căuta cheile publice de importat de pe serverul de chei." +msgstr "Utilizați numele, numele de familie, identitatea cheilor sau e-mailurile pentru a căuta cheile publice de importat de pe serverul de chei." #: views.py:110 msgid "No results returned" @@ -280,12 +272,9 @@ msgstr "Încărcați o cheie nouă" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." -msgstr "" -"Cheile private sunt folosite pentru semnarea documentelor. Cheile private " -"pot fi încărcate numai de utilizator. Vizualizarea pentru a încărca cheile " -"private și publice este aceeași." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." +msgstr "Cheile private sunt folosite pentru semnarea documentelor. Cheile private pot fi încărcate numai de utilizator. Vizualizarea pentru a încărca cheile private și publice este aceeași." #: views.py:174 msgid "There no private keys" @@ -293,13 +282,10 @@ msgstr "Nu există chei private" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"Cheile publice sunt utilizate pentru a verifica documentele semnate. Cheile " -"publice pot fi încărcate de utilizator sau descărcate de la serverele de " -"chei. Vizualizarea pentru a încărca cheile private și publice este aceeași." +msgstr "Cheile publice sunt utilizate pentru a verifica documentele semnate. Cheile publice pot fi încărcate de utilizator sau descărcate de la serverele de chei. Vizualizarea pentru a încărca cheile private și publice este aceeași." #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po index bb1b56253b..446a835b09 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 msgid "Django GPG" @@ -207,9 +204,7 @@ msgstr "Подписи" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Домашний каталог, используемый для хранения ключей, а также файлов " -"конфигурации." +msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." #: settings.py:22 msgid "Path to the GPG binary." @@ -276,8 +271,8 @@ msgstr "Загрузить новый ключ" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -286,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po index 77e6ab41d3..a75d83028f 100644 --- a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:33 msgid "Django GPG" @@ -272,8 +270,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +280,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po index 53abde04fe..2d63aa0c7a 100644 --- a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -206,8 +205,7 @@ msgstr "İmzalar" #: settings.py:16 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Tuşları ve yapılandırma dosyalarını depolamak için kullanılan giriş dizini." +msgstr "Tuşları ve yapılandırma dosyalarını depolamak için kullanılan giriş dizini." #: settings.py:22 msgid "Path to the GPG binary." @@ -274,8 +272,8 @@ msgstr "Yeni anahtar yükle" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -284,8 +282,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po index 993fed294a..c7ba9712da 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -272,8 +271,8 @@ msgstr "" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "" #: views.py:174 @@ -282,8 +281,8 @@ msgstr "" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" diff --git a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po index 599fff6a16..00cdd6af86 100644 --- a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -272,8 +271,8 @@ msgstr "上传新密钥" #: views.py:169 msgid "" -"Private keys are used to signed documents. Private keys can only be uploaded " -"by the user.The view to upload private and public keys is the same." +"Private keys are used to signed documents. Private keys can only be uploaded" +" by the user.The view to upload private and public keys is the same." msgstr "私钥用于签名文档。私钥只能由用户上传。上传私钥和公钥的视图是相同的。" #: views.py:174 @@ -282,12 +281,10 @@ msgstr "没有私钥" #: views.py:192 msgid "" -"Public keys are used to verify signed documents. Public keys can be uploaded " -"by the user or downloaded from keyservers. The view to upload private and " +"Public keys are used to verify signed documents. Public keys can be uploaded" +" by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." -msgstr "" -"公钥用于验证签名文档。公钥可以由用户上传或从密钥服务器下载。上传私钥和公钥的" -"视图是相同的。" +msgstr "公钥用于验证签名文档。公钥可以由用户上传或从密钥服务器下载。上传私钥和公钥的视图是相同的。" #: views.py:198 msgid "There no public keys" diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po index d3f32b6952..bf527c5649 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Mohammed ALDOUB \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po index 83d5e7b84c..69723bf447 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Pavlin Koldamov \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po index 9dfa012c45..9ef8b85b38 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: www.ping.ba \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po index 80b4af2dc4..809bc7a6b0 100644 --- a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po index d951a30e08..9393207ec5 100644 --- a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po index f7a918c740..e1d068b5d6 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2018 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-26 21:45+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 @@ -112,9 +111,7 @@ msgstr "Kommentar bearbeiten: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "" -"Kommentare bei Dokumenten sind zeitgestempelte Texteinträge von Benutzers. " -"Sie eignen sich hervorragend für die Zusammenarbeit. " +msgstr "Kommentare bei Dokumenten sind zeitgestempelte Texteinträge von Benutzers. Sie eignen sich hervorragend für die Zusammenarbeit. " #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po index 481344c4ff..9d0622097f 100644 --- a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po index 128b949ad3..cff34d9cd9 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2018-2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 06:38+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 @@ -108,9 +107,7 @@ msgstr "¿Editar comentario: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "" -"Los comentarios de los documentos son entradas de texto con marcas de tiempo " -"de los usuarios. Son geniales para la colaboración." +msgstr "Los comentarios de los documentos son entradas de texto con marcas de tiempo de los usuarios. Son geniales para la colaboración." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po index 6200f37cb1..c184dd1f01 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po index 605181e354..44965da666 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Frédéric Sheedy , 2019 # Thierry Schott , 2016 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 13:23+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 @@ -110,9 +109,7 @@ msgstr "Modifier le commentaire: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "" -"Les commentaires de document sont des entrées de texte horodatées ajouté par " -"les utilisateurs. Ils sont parfaits pour la collaboration." +msgstr "Les commentaires de document sont des entrées de texte horodatées ajouté par les utilisateurs. Ils sont parfaits pour la collaboration." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po index 73e5239e51..795b58a6b4 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po index 28476cbb90..63a3e8dbb8 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po index 241f99503b..742567bc1b 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Pierpaolo Baldan \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po index 7a94f852d8..ec5f00f98d 100644 --- a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:39 events.py:8 msgid "Document comments" @@ -109,9 +107,7 @@ msgstr "Rediģēt komentāru: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "" -"Dokumentu komentāri ir laika zīmogoti teksta ieraksti no lietotājiem. Tās ir " -"lieliskas sadarbībai." +msgstr "Dokumentu komentāri ir laika zīmogoti teksta ieraksti no lietotājiem. Tās ir lieliskas sadarbībai." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po index 308aea5793..19f6df0e5b 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Johan Braeken\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po index 11b71e98f0..6301ed0be2 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po index 42e593954e..2a9330d0b8 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Emerson Soares \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po index 87c5a71f74..b9df4111f8 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 @@ -109,9 +108,7 @@ msgstr "" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "" -"Comentários nos documentos são entradas de texto dos usuários com data e " -"hora registradas. Eles são ótimos para a colaboração." +msgstr "Comentários nos documentos são entradas de texto dos usuários com data e hora registradas. Eles são ótimos para a colaboração." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po index a366353e74..da4ffe7707 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 18:46+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:39 events.py:8 msgid "Document comments" @@ -109,9 +107,7 @@ msgstr "Editează comentariul: %s?" msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." -msgstr "" -"Comentariile documentului sunt înregistrări de text marcate temporal de la " -"utilizatori. Ele sunt excelente pentru colaborare." +msgstr "Comentariile documentului sunt înregistrări de text marcate temporal de la utilizatori. Ele sunt excelente pentru colaborare." #: views.py:138 msgid "There are no comments" diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po index 9db985758b..5101bbc16a 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Sergey Glita \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po index b098614791..8d0ab87470 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:39 events.py:8 msgid "Document comments" diff --git a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po index ef69c77d68..02f1d272f3 100644 --- a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po index 09d73c7b13..e60b676ad7 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Trung Phan Minh \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po index 0ca6c34299..7a1ed46df8 100644 --- a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:39 events.py:8 diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po index ae3b46a211..937efc00bd 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:24 msgid "None" @@ -118,9 +116,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" +msgid "" "Causes this index to be visible and updated when document data changes." +msgstr "Causes this index to be visible and updated when document data changes." #: models.py:49 models.py:235 msgid "Enabled" @@ -154,11 +152,9 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." #: models.py:243 msgid "Link documents" @@ -284,8 +280,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po index a0a6fd89bf..8740bb25dc 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -117,10 +116,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Предизвиква този индекс да бъдат видим и актуализиран, когато данните в " -"документа се променят." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Предизвиква този индекс да бъдат видим и актуализиран, когато данните в документа се променят." #: models.py:49 models.py:235 msgid "Enabled" @@ -154,8 +152,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -282,8 +280,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po index 49941a273a..0669cdb5e1 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" @@ -112,18 +110,16 @@ msgstr "Labela" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj indeks." +msgstr "Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj indeks." #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci " -"dokumenta." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci dokumenta." #: models.py:49 models.py:235 msgid "Enabled" @@ -153,17 +149,13 @@ msgstr "Izraz indeksiranja" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci " -"dokumenta." +msgstr "Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci dokumenta." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao " -"parent za buduće nodove." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao parent za buduće nodove." #: models.py:243 msgid "Link documents" @@ -186,9 +178,7 @@ msgstr "Koren" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Greška u indeksiranju dokumenta:%(document)s; izraz:%(expression)s;" -"%(exception)s" +msgstr "Greška u indeksiranju dokumenta:%(document)s; izraz:%(expression)s;%(exception)s" #: models.py:351 msgid "Index template node" @@ -291,8 +281,8 @@ msgstr "Uredi indeks:%s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po index 7b9ea318fb..dfc9bc3728 100644 --- a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin.py:24 msgid "None" @@ -117,7 +115,8 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -152,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -280,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po index 13f695aab2..ef6d99b279 100644 --- a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -116,7 +115,8 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po index cfa7766f61..86506bb192 100644 --- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Mathias Behrle , 2019 @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -123,10 +122,9 @@ msgid "Slug" msgstr "Abkürzung" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " -"werden." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." #: models.py:49 models.py:235 msgid "Enabled" @@ -148,10 +146,7 @@ msgstr "Index-Instanzen" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" -"Sprache benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/" -"builtins/)" +msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -159,18 +154,13 @@ msgstr "Indexierungsausdruck" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " -"werden." +msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden " -"sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-" -"Knotenpunkte fungieren soll)." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-Knotenpunkte fungieren soll)." #: models.py:243 msgid "Link documents" @@ -193,9 +183,7 @@ msgstr "Wurzel" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: " -"%(expression)s; %(exception)s" +msgstr "Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -278,10 +266,7 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "" -"Dokumente diese Typs werden in verknüpften Indices erscheinen, wenn sie " -"aktualisiert werden. Ereignisse dieser Dokumente werden Aktualisierungen in " -"verknüpften Indices auslösen." +msgstr "Dokumente diese Typs werden in verknüpften Indices erscheinen, wenn sie aktualisiert werden. Ereignisse dieser Dokumente werden Aktualisierungen in verknüpften Indices auslösen." #: views.py:81 #, python-format @@ -301,14 +286,9 @@ msgstr "Index %s bearbeiten" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"Indizes gruppieren Dokumente automatisch in unterschiedliche Ebenen. Indizes " -"werden in Vorlagen definiert, in denen bestimmte Markierungen direkt durch " -"entsprechende Dokumenteneigenschaften ersetzt werden, wie zum Beispiel " -"Beschriftung oder Beschreibung, oder durch erweiterte Eigenschaften wie " -"Metadaten." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "Indizes gruppieren Dokumente automatisch in unterschiedliche Ebenen. Indizes werden in Vorlagen definiert, in denen bestimmte Markierungen direkt durch entsprechende Dokumenteneigenschaften ersetzt werden, wie zum Beispiel Beschriftung oder Beschreibung, oder durch erweiterte Eigenschaften wie Metadaten." #: views.py:148 msgid "There are no indexes." @@ -327,10 +307,7 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "" -"Nach der Erstellung werden nur Dokumente des ausgewählten Typs im Index " -"angezeigt. Eine Aktualisierung des Indexes kann nur durch Ereignisse von " -"Dokumenten des ausgewählten Typs ausgelöst werden." +msgstr "Nach der Erstellung werden nur Dokumente des ausgewählten Typs im Index angezeigt. Eine Aktualisierung des Indexes kann nur durch Ereignisse von Dokumenten des ausgewählten Typs ausgelöst werden." #: views.py:176 #, python-format @@ -361,9 +338,7 @@ msgstr "Indexvorlagen-Knotenpunkt %s bearbeiten?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" -"Dies könnte bedeuten, dass keine Index Vorlagen erstellt wurden, oder das " -"erstellte Index Vorlagen nicht korrekt definiert wurden." +msgstr "Dies könnte bedeuten, dass keine Index Vorlagen erstellt wurden, oder das erstellte Index Vorlagen nicht korrekt definiert wurden." #: views.py:291 msgid "There are no index instances available." @@ -383,9 +358,7 @@ msgstr "Inhalt von Index %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "" -"Weisen Sie dem Dokumententyp dieses Dokuments einen Index zu, damit es als " -"Instanz der Organisationseinheiten dieses Indexes auftaucht." +msgstr "Weisen Sie dem Dokumententyp dieses Dokuments einen Index zu, damit es als Instanz der Organisationseinheiten dieses Indexes auftaucht." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po index 5185c5a6e7..4077e88f6d 100644 --- a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -109,19 +108,16 @@ msgstr "Ετικέτα" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Αυτή η τιμή θα χρησιμοποιηθεί από τις άλλες εφαρμογές για να αναφέρονται σ' " -"αυτό το ευρετήριο." +msgstr "Αυτή η τιμή θα χρησιμοποιηθεί από τις άλλες εφαρμογές για να αναφέρονται σ' αυτό το ευρετήριο." #: models.py:41 msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Προκαλεί αυτό το ευρετήριο να είναι ορατό και να ενημερώνεται όταν αλλάζουν " -"τα δεδομένα των εγγράφων." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Προκαλεί αυτό το ευρετήριο να είναι ορατό και να ενημερώνεται όταν αλλάζουν τα δεδομένα των εγγράφων." #: models.py:49 models.py:235 msgid "Enabled" @@ -151,17 +147,13 @@ msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Προκαλεί αυτό τον κόμβο να είναι ορατό και να ενημερώνεται όταν αλλάζουν τα " -"δεδομένα των εγγράφων." +msgstr "Προκαλεί αυτό τον κόμβο να είναι ορατό και να ενημερώνεται όταν αλλάζουν τα δεδομένα των εγγράφων." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Επιλέξτε εδώ αν θέλετε ο κόμβος να περιλαμβάνει έγγραφα και να μην " -"χρησιμοποιηθεί σαν γονέας για άλλους κόμβους." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Επιλέξτε εδώ αν θέλετε ο κόμβος να περιλαμβάνει έγγραφα και να μην χρησιμοποιηθεί σαν γονέας για άλλους κόμβους." #: models.py:243 msgid "Link documents" @@ -184,9 +176,7 @@ msgstr "Ρίζα:" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Σφάλμα κατά την επεξεργασία εγγράφου: %(document)s; expression: " -"%(expression)s; %(exception)s" +msgstr "Σφάλμα κατά την επεξεργασία εγγράφου: %(document)s; expression: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -289,8 +279,8 @@ msgstr "Τροποποίηση ευρετηρίου: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po index 1f3dc76eeb..aa59be1fa5 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -112,19 +111,16 @@ msgstr "Etiqueta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Este valor será utilizado por otras aplicaciones para hacer referencia a " -"este índice." +msgstr "Este valor será utilizado por otras aplicaciones para hacer referencia a este índice." #: models.py:41 msgid "Slug" msgstr "Identificador" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Hace que este índice sea visible y actualizado cuando los datos de " -"documentos cambien." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Hace que este índice sea visible y actualizado cuando los datos de documentos cambien." #: models.py:49 models.py:235 msgid "Enabled" @@ -146,10 +142,7 @@ msgstr "Instancias de índices" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas " -"predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/" -"templates/builtins/)" +msgstr "Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -157,17 +150,13 @@ msgstr "Expresión de indexación" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Hace que este nodo sea visible y actualizado cuando los datos de los " -"documentos son cambiados." +msgstr "Hace que este nodo sea visible y actualizado cuando los datos de los documentos son cambiados." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Marque esta opción para que el nodo actúe como un contenedor de documentos y " -"no como un padre para otros nodos secundarios." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Marque esta opción para que el nodo actúe como un contenedor de documentos y no como un padre para otros nodos secundarios." #: models.py:243 msgid "Link documents" @@ -190,9 +179,7 @@ msgstr "Nodo principal" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Error indexando documento: %(document)s; expresión: %(expression)s; " -"%(exception)s" +msgstr "Error indexando documento: %(document)s; expresión: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -275,10 +262,7 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "" -"Los documentos de este tipo aparecerán en los índices vinculados cuando se " -"actualicen. Los eventos de los documentos de este tipo activarán " -"actualizaciones en los índices vinculados." +msgstr "Los documentos de este tipo aparecerán en los índices vinculados cuando se actualicen. Los eventos de los documentos de este tipo activarán actualizaciones en los índices vinculados." #: views.py:81 #, python-format @@ -298,13 +282,9 @@ msgstr "Editar índice: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"Los índices agrupan el documento automáticamente en niveles. Los índices se " -"definen mediante una plantilla cuyos marcadores se reemplazan con " -"propiedades directas de documentos como etiqueta o descripción, o el de " -"propiedades extendidas como metadatos." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "Los índices agrupan el documento automáticamente en niveles. Los índices se definen mediante una plantilla cuyos marcadores se reemplazan con propiedades directas de documentos como etiqueta o descripción, o el de propiedades extendidas como metadatos." #: views.py:148 msgid "There are no indexes." @@ -323,10 +303,7 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "" -"Solo los documentos de los tipos seleccionados se mostrarán en el índice " -"cuando se construyan. Solo los eventos de los documentos de los tipos " -"seleccionados activarán actualizaciones en el índice." +msgstr "Solo los documentos de los tipos seleccionados se mostrarán en el índice cuando se construyan. Solo los eventos de los documentos de los tipos seleccionados activarán actualizaciones en el índice." #: views.py:176 #, python-format @@ -357,9 +334,7 @@ msgstr "¿Editar el nodo de plantilla de indice: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" -"Esto podría significar que no se han creado plantillas de índice o que " -"existen plantillas de índice, pero no están definidas correctamente." +msgstr "Esto podría significar que no se han creado plantillas de índice o que existen plantillas de índice, pero no están definidas correctamente." #: views.py:291 msgid "There are no index instances available." @@ -379,9 +354,7 @@ msgstr "Contenido del indice: %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "" -"Asigne el tipo de documento de este documento a un índice para que aparezca " -"en unidades de organización de instancias de índices." +msgstr "Asigne el tipo de documento de este documento a un índice para que aparezca en unidades de organización de instancias de índices." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po index 3579744efe..a3db4b0018 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -117,9 +116,9 @@ msgid "Slug" msgstr "لاغر" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"این داده ها را وقتی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می کند." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "این داده ها را وقتی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می کند." #: models.py:49 models.py:235 msgid "Enabled" @@ -149,17 +148,13 @@ msgstr "عبارت نمایه سازی" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"علت این گره را هنگامی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می " -"شود." +msgstr "علت این گره را هنگامی که اطلاعات سند تغییر می کند قابل مشاهده و به روز می شود." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"این گزینه را بررسی کنید تا این گره به عنوان یک ظرف برای اسناد عمل کند و نه " -"به عنوان یک پدر برای گره های بیشتر." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "این گزینه را بررسی کنید تا این گره به عنوان یک ظرف برای اسناد عمل کند و نه به عنوان یک پدر برای گره های بیشتر." #: models.py:243 msgid "Link documents" @@ -182,8 +177,7 @@ msgstr "ریشه" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"خطای نمایه سازی سند: %(document)s؛ عبارت: %(expression)s؛ %(exception)s" +msgstr "خطای نمایه سازی سند: %(document)s؛ عبارت: %(expression)s؛ %(exception)s" #: models.py:351 msgid "Index template node" @@ -286,8 +280,8 @@ msgstr "ویرایش نمایه: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo index 50292515481de22cdd0d76a278af02c19ca82958..d7d8fc2aa0b07d302191d9d5bbf03cc467b89afa 100644 GIT binary patch delta 1991 zcmZY9TWB0r9LMp0Vr*?R{Elcs4*Vw%>pUg9NfqOnyA(rT-d-P2_4-rP$~ zAUF!GR8a(tkQbqa3g*R!t`8PU74lRNg?dNS7u!IMf*^>cRKLI75d{zV&u4b#%$fiB zpEH@?^xBs2hov=d8*PNRkvLp!Hiio|9B4-unGNA9*o2?s^|*lB@d^&&;9|3b_&Tn{ zKT-V~uQ9t8*W()O!+LxSc{H?VIJtofW2gs0ycK6~1)j!!JcmlKeu>#F*p5nM7_Y;p zQ2h_$T6_ulvlARNm-kWkOQ`;5v6=VVH=K~HUBV++U2C=rkK)z%Eh^(5Q4jutn$hLx z_mVoZ27Wi;GHi?77P%|BAIA>v7f|mzj^FWqo8?3UA7NC@d>U244^bI^hU@S=QUt3b z8@*^bD#5nMPNbyPiyCihaibG2)d*=&O{{>_StD`)s*c#OH1IX&ylS5h;qTTy6FycHnLJ5$?qcNEaI*dsXB~)W9k1#lxs^ zPhmTLj1GTB3Q^v$EA;)VY3)>I%~0)5LOWM8RJ*Ez-Gv%dGgY+)3AIi_$=pvoMD!E- zVzd-m1~vWj(yqTlKWLgvjo$AF%|KahBJLv|B(@VwvfQ**YMY6Tges-7YNl%4gqE$3 z(1z5eewg@g<3D@3Y5mo-yx{{J^yzdFw-Z|HdkM9n3gx3dmw(z8PPE3u#0b$tsPt-E zE0mAT9JQ3%$od+zPt?{CJBV%nUaIVRmd5TWr4~&s4r7^OGVW47NV~##P;lvtOQhp| z!WDcfn+ys*@5X~e-i>;ncCno2O59~~mCl86pY#9gKUyqs+fTZHn~ayuWwJh(oOE%2 zAd&X*PTM`6$h&wZR!o(Ct?#I+?c3PB+4Xew_jZ?B8YXJPWZ<%%QSyngbmBn5=iGC} z)}R6mf+Pi!vU2xeT?_!x;&Ns%Gyyr@MZkCJ_`O?g)omGDWCNlM$ delta 1699 zcmYk+TSydf6vy$SnVQymD=V{FQ_D;v-aozi=hS&kH7!k1qDhQRg?{Dm;jMteY>baS81Q%`lV4>dtAYQ@h`k761%VaUSZ`3ac8eirHmKGdUW zMm6UF)C$kzTD*;V<}a}a-{4+s@pG0+GlDAJ7;-Orj}*neBa64cs03VOvlQK^#J!FU zsPm3s37$sH`$WG};pa%3*#u=%k4>XqN56|%G*KpB%Crn=Xlq54xC6DaOQ`0$fm%r) zQboIuD*X_$C>urH_#>v_lyf|qtjWRLs0Dg3@c!4bp$m55I&4H1YiDsa-oz#xMn0CD z6s$xcYQk#Vh|Q=3doUAkp&MTy1+evmj_a{%C~5uw1R6ml(PSE4Lfx-&%?uA4)r6Wy zk4b+-x|zCMLy4yls!Rn@OlVOWs$vOIM<`KMd1gfF{a4va2`Xi^#5O{2!5ku&$R;%O z>Zl?tC{V(3)YwiG5PBS{TqU8V3?=f2EriB~ApgH>*z)Tc?I4N>HJFAvSj{wh4-^u5D>f5q-c5v>tcuV`C-MVZ!AE218T}W-Pek;ea^;0Y6=dgm+, 2017 # Frédéric Sheedy , 2019 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" -"PO-Revision-Date: 2019-05-17 12:07+0000\n" +"PO-Revision-Date: 2019-06-17 20:41+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -115,19 +114,16 @@ msgstr "Libellé" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Cette valeur sera utilisée par d'autres applications pour faire référence à " -"cet index." +msgstr "Cette valeur sera utilisée par d'autres applications pour faire référence à cet index." #: models.py:41 msgid "Slug" msgstr "Jeton" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Permet à cet index d'être à la fois visible et mis à jour quand le contenu " -"d'un document est modifié." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Permet à cet index d'être à la fois visible et mis à jour quand le contenu d'un document est modifié." #: models.py:49 models.py:235 msgid "Enabled" @@ -149,9 +145,7 @@ msgstr "Instances d'index" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de " -"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -159,17 +153,13 @@ msgstr "Expression d'indexation" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Permet à ce nœud d'être visible et mis à jour quand le contenu d'un document " -"est modifié." +msgstr "Permet à ce nœud d'être visible et mis à jour quand le contenu d'un document est modifié." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Cochez cette option pour permettre à ce nœud d'être un conteneur de " -"documents et pas seulement un nœud parent d'autres nœuds enfants." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Cochez cette option pour permettre à ce nœud d'être un conteneur de documents et pas seulement un nœud parent d'autres nœuds enfants." #: models.py:243 msgid "Link documents" @@ -192,9 +182,7 @@ msgstr "Racine" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Erreur lors de l'indexation du document : %(document)s; expression: " -"%(expression)s; %(exception)s" +msgstr "Erreur lors de l'indexation du document : %(document)s; expression: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -297,13 +285,9 @@ msgstr "Modifier l'index : %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"Indexe les groupes de documents automatiquement en niveaux. Les index sont " -"définis à l'aide de modèles dont les marqueurs sont remplacés par les " -"propriétés directes de documents tels que l'étiquette, la description ou de " -"propriétés étendues telles que les métadonnées." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "Indexe les groupes de documents automatiquement en niveaux. Les index sont définis à l'aide de modèles dont les marqueurs sont remplacés par les propriétés directes de documents tels que l'étiquette, la description ou de propriétés étendues telles que les métadonnées." #: views.py:148 msgid "There are no indexes." @@ -353,7 +337,7 @@ msgstr "Modifier le nœud du modèle d'index : %s" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" +msgstr "Cela peut signifier qu'aucun modèle d'index n'a été créé ou qu'il existe des modèles d'index, mais qu'ils ne sont pas correctement définis." #: views.py:291 msgid "There are no index instances available." diff --git a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po index 41f3ea0af7..cfca730b13 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -117,7 +116,8 @@ msgid "Slug" msgstr "Hivatkozás" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -152,8 +152,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -280,8 +280,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po index 8f23de97fd..3085ae9a92 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -116,7 +115,8 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po index 4ae1c838dc..e9e305a379 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Giovanni Tricarico , 2014 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -113,18 +112,16 @@ msgstr "etichetta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Questo valore sarà usato dalle altre app per riferirirsi a questo indice" +msgstr "Questo valore sarà usato dalle altre app per riferirirsi a questo indice" #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Fa sì che questo indice possa essere visibile e aggiornato quando i dati del " -"documento cambiano." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Fa sì che questo indice possa essere visibile e aggiornato quando i dati del documento cambiano." #: models.py:49 models.py:235 msgid "Enabled" @@ -154,17 +151,13 @@ msgstr "Espressione di indicizzazione" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del " -"documento cambiano." +msgstr "Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del documento cambiano." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Selezionare questa opzione per questo specifico nodo quale contenitore per i " -"documenti e non come un genitore per ulteriori nodi." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Selezionare questa opzione per questo specifico nodo quale contenitore per i documenti e non come un genitore per ulteriori nodi." #: models.py:243 msgid "Link documents" @@ -187,9 +180,7 @@ msgstr "Principale" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Errore nell'ndicizzazione del documento: %(document)s; espressione: " -"%(expression)s; %(exception)s" +msgstr "Errore nell'ndicizzazione del documento: %(document)s; espressione: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -292,8 +283,8 @@ msgstr "Modifica indice: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.mo index e9b6dc72ebab20dc6556b8f5e2d244edcf1ff0d3..279c515ea0f87bedab2a9e557b8502038222f24c 100644 GIT binary patch delta 1983 zcmZwHUrd#C9LMo51{?!L{zO8UJX#_os1RZzLZK-V23u>*i(p4MuBYQ*o24_*z)`CWL#YOYN=0)XN>Db`Pf3x17bDm>1`;9NJ-}5}b=lAFP z`#tC9jl-L~8-RKgv|L*>?N^4`5NitOSo^0gmD}9LKGgF+cTw z8$QeRB~<&LZ~^{~WjKoq%{*K9v>AO{87{`+E?ImY(kn?4<^vXOw7$yJI^eiie9Y1Ww;JmjJ<<{*n`T>O;l1ESOzn$8C1LZ&zQB~QhXh|Q4<-#Lfxm)b6AUvZ5^l#zFSQGX=8`Dp;Vnkbv%rk$T;c{ zT|=e#9@bzU`=N<9p`Lf64(~zKN{3JbUO=^`G?l4h%+>c_ zNyXtoJ!+5MM!ndBTJcB78B7k!k7M$DK=PAPI~Dp)9z4}I6RQbj=T$;kY$jBc;dD_} zOBmmF5H0@QCUgkxQ7565Y4+(-Ph}hN3bB!RjYt;~kj!KS>QE|+YY1(J7N(*MsOa>o zX#C^}Rq7ruU0mqIzeMPKY#=%a?Y)W)r_!&Y?a`stcBRYubOqNE>xivH1EJDJ@Z;vC zzE3XRBsLK$tB5+HmRLrpv=fa)E1^$y3!ww|2B9C5Dni@!6k#hWdk5nEv8q1D?e7ci zbN0qV@lc<$dm!ROLc8Mbp1#$oHqO6|Lec+gHuh!qa86D`P2GB@wyv?Zek@qfp5gts z|8UfGVs0qx1Y_?9jr4W4X&L3EQvxP8EZ2RQi9;BN0c1#@ zJ*AVzjVaUw?{Fjj#MPJ;Wmb)4s0E(GZ0tuZWE|u13F`T2+<=S7$0DQ6Mlb;*@E+>9 z`xwvsHccm&8*|9w?GN^1WQ^G%>_;VI9<}mC)P!GAJNxHc$8wRtbta}@p<|un5$E?# zEaLYo=wf~wr89@OQ3Ky#7G+=vmC8xfieKU;{D36K;(1sTrJ)vB=;%gLYgNd{Y8~4g zkE1ftg}yO5=jkZ*=`5eI&5hbgoue1^hYrWnxP|L8sD<6cYdD6=WNsppVm)%pdXT-@ z0BZbU)N^+d$-h=U!;LJQMGd%wBVn8$2Yi+5@no|M%wxOyy%y`R9rvLhwSd>iqt>2k zwiY{)p{xg$xm(D`Ciqf@UZj$L4Lr*YE#M2Pc;c9av8)7(u>rN>i>TlIsG@y<+Tjdp z!ndgBf1!#mpYt2VQq=V;R1q&AkJw)yoqRf}j7Hs=2M4ejkK!DvC@VN0RlCR0i`wZ) z)DAB>_j{4Q*br)hyT}yw47JdCEW=NzaeX;#{|B9XRBCeBMiEw`c65p_4RjrK=6=*! zK1NOS994`9jvpPDPz(EwnmCS^Um49pUKn#@pWc5D9X>Y2m;Ue`wbSp8F7l-s$v_oh zHfCcUY9S5SjfXK0r*S`iLrq-6xhhkwsEJQt4xYs*z5o4m^v6MDvGxe5z2IaJd^4mf zSFfcSV_QS8XSNr0=9>u>rFQ8d)Kp}lR!Bz~J3#2|P^)47;BJ)SgT#8GnFuwVRU=VF zR1>?2P*c`aGpcMArxw4B(7EbJ)OfRlO&bg~9j`K>rul=-%eT_Bl_({45Uqr2LQU1X zBG_9#Ce?z{8)}uI4sIvP3B8&Xgjy4!H%CWHf~}3%wfu-#0T*tfgvcS(bcQ>LJ%rA` ro=_#X5IT3gHPozy6M, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" -"PO-Revision-Date: 2019-05-31 12:11+0000\n" +"PO-Revision-Date: 2019-06-27 12:14+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: admin.py:24 msgid "None" @@ -118,7 +116,8 @@ msgid "Slug" msgstr "Lode" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "Indekss ir redzams un atjaunināts, kad mainās dokumentu dati." #: models.py:49 models.py:235 @@ -141,9 +140,7 @@ msgstr "Indeksa gadījumi" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes " -"valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -155,11 +152,9 @@ msgstr "Šāda mezgls ir redzams un atjaunināts, kad mainās dokumentu dati." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Atzīmējiet šo opciju, lai šis mezgls darbotos kā konteiners dokumentiem un " -"nevis kā vecāks turpmākajiem mezgliem." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Atzīmējiet šo opciju, lai šis mezgls darbotos kā konteiners dokumentiem un nevis kā vecāks turpmākajiem mezgliem." #: models.py:243 msgid "Link documents" @@ -182,9 +177,7 @@ msgstr "Sakne" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Kļūdas indeksēšanas dokuments: %(document)s; izteiksme: %(expression)s; " -"%(exception)s" +msgstr "Kļūdas indeksēšanas dokuments: %(document)s; izteiksme: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -267,10 +260,7 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "" -"Šāda veida dokumenti parādīsies indeksos, kas saistīti, kad tie tiek " -"atjaunināti. Šāda veida dokumentu notikumi izraisīs saistīto indeksu " -"atjauninājumus." +msgstr "Šāda veida dokumenti parādīsies indeksos, kas saistīti, kad tie tiek atjaunināti. Šāda veida dokumentu notikumi izraisīs saistīto indeksu atjauninājumus." #: views.py:81 #, python-format @@ -290,13 +280,9 @@ msgstr "Rediģēt indeksu: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"Indeksē grupas dokumentu automātiski līmeņos. Indexe tiek definēti, " -"izmantojot veidni, kuras marķieri tiek aizstāti ar tiešām dokumentu " -"īpašībām, piemēram, uzlīmi vai aprakstu, vai paplašinātām īpašībām, " -"piemēram, metadatiem." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "Indeksē grupas dokumentu automātiski līmeņos. Indexe tiek definēti, izmantojot veidni, kuras marķieri tiek aizstāti ar tiešām dokumentu īpašībām, piemēram, uzlīmi vai aprakstu, vai paplašinātām īpašībām, piemēram, metadatiem." #: views.py:148 msgid "There are no indexes." @@ -315,9 +301,7 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "" -"Kad būvēts, indeksā tiks parādīti tikai atlasīto tipu dokumenti. Indeksā " -"tiks atjaunināti tikai atlasīto tipu dokumentu notikumi." +msgstr "Kad būvēts, indeksā tiks parādīti tikai atlasīto tipu dokumenti. Indeksā tiks atjaunināti tikai atlasīto tipu dokumentu notikumi." #: views.py:176 #, python-format @@ -348,9 +332,7 @@ msgstr "Rediģējiet indeksa veidnes mezglu: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" -"Tas varētu nozīmēt, ka nav izveidotas nevienas indeksa veidnes vai ka " -"indeksu veidnes, bet tās nav pareizi definētas." +msgstr "Tas varētu nozīmēt, ka nav izveidotas nevienas indeksa veidnes vai ka indeksu veidnes, bet tās nav pareizi definētas." #: views.py:291 msgid "There are no index instances available." @@ -370,9 +352,7 @@ msgstr "Indeksa saturs: %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "" -"Piešķiriet šī dokumenta dokumenta tipu indeksam, lai tas parādītos šo " -"indeksu organizācijas vienību gadījumos." +msgstr "Piešķiriet šī dokumenta dokumenta tipu indeksam, lai tas parādītos šo indeksu organizācijas vienību gadījumos." #: views.py:399 msgid "This document is not in any index" @@ -387,6 +367,6 @@ msgstr "Indeksu mezgli, kas satur dokumentu: %s" #, python-format msgid "%(count)d index queued for rebuild." msgid_plural "%(count)d indexes queued for rebuild." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%(count)d indeksi tiek atjaunoti." +msgstr[1] "%(count)d indekss, kas rindā ir atjaunots." +msgstr[2] "%(count)d indeksi tiek atjaunoti." diff --git a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po index edec15a5c9..bc9c1bd356 100644 --- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -119,9 +118,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." #: models.py:49 models.py:235 msgid "Enabled" @@ -151,15 +150,13 @@ msgstr "Indexeringsexpressie" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" +msgstr "Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " #: models.py:243 msgid "Link documents" @@ -182,9 +179,7 @@ msgstr "" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Fout bij het indexeren van document: %(document)s; uitdrukking: " -"%(expression)s; %(exception)s" +msgstr "Fout bij het indexeren van document: %(document)s; uitdrukking: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -287,8 +282,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po index 319b96e328..cfdc2fa9ce 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2016 @@ -13,15 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -114,19 +111,16 @@ msgstr "Etykieta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Wartość ta zostanie użyta przez inne aplikacje w celu odniesienia się do " -"tego indeksu." +msgstr "Wartość ta zostanie użyta przez inne aplikacje w celu odniesienia się do tego indeksu." #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany " -"danych dokumentów." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany danych dokumentów." #: models.py:49 models.py:235 msgid "Enabled" @@ -160,11 +154,9 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." #: models.py:243 msgid "Link documents" @@ -187,9 +179,7 @@ msgstr "Korzeń" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Błąd indeksowania dokumentu: %(document)s; wyrażenie: %(expression)s; " -"%(exception)s" +msgstr "Błąd indeksowania dokumentu: %(document)s; wyrażenie: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -292,8 +282,8 @@ msgstr "Edytuj indeks: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po index 482932f0ea..b8712e926f 100644 --- a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Renata Oliveira , 2011 # Vítor Figueiró , 2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -118,10 +117,9 @@ msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Faz com que este índice seja visível e atualizado quando os dados do " -"documento forem alterados." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Faz com que este índice seja visível e atualizado quando os dados do documento forem alterados." #: models.py:49 models.py:235 msgid "Enabled" @@ -151,17 +149,13 @@ msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Faz com que este nó seja visível e atualizado quando os dados do documento " -"forem alterados." +msgstr "Faz com que este nó seja visível e atualizado quando os dados do documento forem alterados." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Escolha esta opção para que este nó atue como contentor para documentos e " -"não como pai de outros nós." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Escolha esta opção para que este nó atue como contentor para documentos e não como pai de outros nós." #: models.py:243 msgid "Link documents" @@ -287,8 +281,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po index fd59f68416..a2e126fbec 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -113,18 +112,16 @@ msgstr "Etiqueta" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Este valor será usado por outros aplicativos para referenciar este índice." +msgstr "Este valor será usado por outros aplicativos para referenciar este índice." #: models.py:41 msgid "Slug" msgstr "Identificador" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Faz com que este índice seja visível e atualizado quando dados de documentos " -"forem alterados." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Faz com que este índice seja visível e atualizado quando dados de documentos forem alterados." #: models.py:49 models.py:235 msgid "Enabled" @@ -146,9 +143,7 @@ msgstr "Instâncias de índice" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Insira um modelo para renderizar. Use a linguagem padrão de modelos do " -"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Insira um modelo para renderizar. Use a linguagem padrão de modelos do Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:227 msgid "Indexing expression" @@ -156,17 +151,13 @@ msgstr "Indexando expressão" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Faz com que este nó seja visível e atualizado quando dados do documento " -"forem alterados." +msgstr "Faz com que este nó seja visível e atualizado quando dados do documento forem alterados." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Marque esta opção para que este nó atue como um recipiente para documentos e " -"não como um pai para outros nós secundários." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Marque esta opção para que este nó atue como um recipiente para documentos e não como um pai para outros nós secundários." #: models.py:243 msgid "Link documents" @@ -189,9 +180,7 @@ msgstr "Raiz" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Erro indexando documento: %(document)s; expressão: %(expression)s; " -"%(exception)s" +msgstr "Erro indexando documento: %(document)s; expressão: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -294,13 +283,9 @@ msgstr "Editar Indice: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"Índices agrupam documentos automaticamente em níveis. Índices são definidos " -"usando modelos cujos marcadores são substituídos por propriedades diretas de " -"documentos, como rótulo ou descrição, ou propriedades estendidas, como " -"metadados." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "Índices agrupam documentos automaticamente em níveis. Índices são definidos usando modelos cujos marcadores são substituídos por propriedades diretas de documentos, como rótulo ou descrição, ou propriedades estendidas, como metadados." #: views.py:148 msgid "There are no indexes." @@ -319,10 +304,7 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "" -"Apenas os documentos dos tipos selecionados serão mostrados no índice após " -"sua construção. Apenas os eventos dos documentos dos tipos selecionados " -"desencadearão atualizações no índice." +msgstr "Apenas os documentos dos tipos selecionados serão mostrados no índice após sua construção. Apenas os eventos dos documentos dos tipos selecionados desencadearão atualizações no índice." #: views.py:176 #, python-format @@ -353,9 +335,7 @@ msgstr "Editar o nó de modelo de índice: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" -"Isso pode significar que nenhum modelo de índice foi criado ou que existem " -"modelos de índice, mas eles não foram definidos apropriadamente." +msgstr "Isso pode significar que nenhum modelo de índice foi criado ou que existem modelos de índice, mas eles não foram definidos apropriadamente." #: views.py:291 msgid "There are no index instances available." @@ -375,9 +355,7 @@ msgstr "Conteúdo para Indice? %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "" -"Associe o tipo deste documento a um índice para que ele apareça em " -"instâncias das unidades de organização desses índices." +msgstr "Associe o tipo deste documento a um índice para que ele apareça em instâncias das unidades de organização desses índices." #: views.py:399 msgid "This document is not in any index" diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po index 3fa3bf04d3..e39d4914c1 100644 --- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 08:11+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: admin.py:24 msgid "None" @@ -63,9 +61,7 @@ msgstr "Index editat" #: forms.py:19 msgid "Index templates to be queued for rebuilding." -msgstr "" -"Șabloanele index ce vor fi în trimise în coada așteptare pentru " -"reconstrucție." +msgstr "Șabloanele index ce vor fi în trimise în coada așteptare pentru reconstrucție." #: forms.py:20 links.py:30 msgid "Index templates" @@ -114,19 +110,16 @@ msgstr "Etichetă" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Această valoare va fi utilizată de alte aplicații pentru a face referință la " -"acest index." +msgstr "Această valoare va fi utilizată de alte aplicații pentru a face referință la acest index." #: models.py:41 msgid "Slug" msgstr "Slug" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Cauză pentru acest index să fie vizibil și actualizat când documentul suferă " -"schimbări." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Cauză pentru acest index să fie vizibil și actualizat când documentul suferă schimbări." #: models.py:49 models.py:235 msgid "Enabled" @@ -148,10 +141,7 @@ msgstr "Exemple de index-uri" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating " -"implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/" -"builtins/)" +msgstr "Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -159,17 +149,13 @@ msgstr "Expresie de indexare" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Va face ca acest nod să fie vizibil și actualizat la modificarea datelor " -"documentului." +msgstr "Va face ca acest nod să fie vizibil și actualizat la modificarea datelor documentului." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Bifați această opțiune pentru a avea acest nod ca un container pentru " -"documente și nu ca un părinte pentru nodurile suplimentare." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Bifați această opțiune pentru a avea acest nod ca un container pentru documente și nu ca un părinte pentru nodurile suplimentare." #: models.py:243 msgid "Link documents" @@ -192,9 +178,7 @@ msgstr "Rădăcină" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Eroare la indexarea ducumentuluir: %(document)s; expresie: %(expression)s; " -"%(exception)s" +msgstr "Eroare la indexarea ducumentuluir: %(document)s; expresie: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" @@ -277,10 +261,7 @@ msgid "" "Documents of this type will appear in the indexes linked when these are " "updated. Events of the documents of this type will trigger updates in the " "linked indexes." -msgstr "" -"Documentele de acest tip vor apărea în indexurile legate când acestea vor fi " -"actualizate. Evenimentele de documente de acest tip vor declanșa actualizări " -"în indexurile legate." +msgstr "Documentele de acest tip vor apărea în indexurile legate când acestea vor fi actualizate. Evenimentele de documente de acest tip vor declanșa actualizări în indexurile legate." #: views.py:81 #, python-format @@ -300,13 +281,9 @@ msgstr "Editați indexul: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"Indexurile grupează documentele automat în nivele. Indexurile sunt definite " -"folosind un șablon al cărui marcatori sunt înlocuiți cu proprietăți directe " -"ale unor documente, cum ar fi eticheta sau descrierea, sau cele ale unor " -"proprietăți extinse precum metadatele." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "Indexurile grupează documentele automat în nivele. Indexurile sunt definite folosind un șablon al cărui marcatori sunt înlocuiți cu proprietăți directe ale unor documente, cum ar fi eticheta sau descrierea, sau cele ale unor proprietăți extinse precum metadatele." #: views.py:148 msgid "There are no indexes." @@ -325,10 +302,7 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "" -"Numai documentele tipurilor selectate vor fi afișate în index atunci când " -"sunt construite. Doar evenimentele din documentele selectate vor declanșa " -"actualizări ale indexului." +msgstr "Numai documentele tipurilor selectate vor fi afișate în index atunci când sunt construite. Doar evenimentele din documentele selectate vor declanșa actualizări ale indexului." #: views.py:176 #, python-format @@ -359,9 +333,7 @@ msgstr "Editați nodul șablonului index: %s?" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" -"Acest lucru ar putea însemna că nu au fost create șabloane de index sau că " -"există șabloane index, dar nu sunt definite în mod corespunzător." +msgstr "Acest lucru ar putea însemna că nu au fost create șabloane de index sau că există șabloane index, dar nu sunt definite în mod corespunzător." #: views.py:291 msgid "There are no index instances available." @@ -381,9 +353,7 @@ msgstr "Conținutul pentru index: %s" msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " -msgstr "" -"Atribuiți tipul de document al acestui document într-un index pentru a fi " -"afișat în instanțele unităților de organizare a acestor indici." +msgstr "Atribuiți tipul de document al acestui document într-un index pentru a fi afișat în instanțele unităților de organizare a acestor indici." #: views.py:399 msgid "This document is not in any index" @@ -398,7 +368,6 @@ msgstr "Nodurile indexurilor care conțin documentul: %s" #, python-format msgid "%(count)d index queued for rebuild." msgid_plural "%(count)d indexes queued for rebuild." -msgstr[0] "" -"Indicele %(count)d se află în coada de așteptare pentru reconstrucție." +msgstr[0] "Indicele %(count)d se află în coada de așteptare pentru reconstrucție." msgstr[1] "%(count)d indexate în coada pentru reconstrucție." msgstr[2] "%(count)d indexări în coada pentru reconstrucție." diff --git a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po index 1c7111d124..cc269a95c4 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -119,9 +116,9 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Этот индекс должен быть видимым и обновляться при изменении данных документа." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Этот индекс должен быть видимым и обновляться при изменении данных документа." #: models.py:49 models.py:235 msgid "Enabled" @@ -151,15 +148,13 @@ msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Этот узел должен быть видимым и обновляются при изменении данных документа." +msgstr "Этот узел должен быть видимым и обновляются при изменении данных документа." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Этот узел будет контейнером для документов и не будет иметь дочерних узлов." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Этот узел будет контейнером для документов и не будет иметь дочерних узлов." #: models.py:243 msgid "Link documents" @@ -285,8 +280,8 @@ msgstr "Редактировать индекс: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po index 81c71258f0..1484baa6a5 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -117,7 +115,8 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -152,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -280,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po index bd0240d8fe..ee5ed6f00e 100644 --- a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -111,18 +110,16 @@ msgstr "Etiket" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" -"Bu değer, bu dizine atıfta bulunmak için diğer uygulamalar tarafından " -"kullanılacaktır." +msgstr "Bu değer, bu dizine atıfta bulunmak için diğer uygulamalar tarafından kullanılacaktır." #: models.py:41 msgid "Slug" msgstr "Sümüklüböcek" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Belge verileri değiştiğinde bu dizin görünür ve güncellenmesine neden olur." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Belge verileri değiştiğinde bu dizin görünür ve güncellenmesine neden olur." #: models.py:49 models.py:235 msgid "Enabled" @@ -152,16 +149,13 @@ msgstr "Dizinleme ifadesi" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Belge verileri değiştiğinde bu düğümün görünür ve güncellenmesine neden olur." +msgstr "Belge verileri değiştiğinde bu düğümün görünür ve güncellenmesine neden olur." #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Bu düğümün belgeler için bir kap olarak hareket ettirilmesi ve diğer " -"düğümler için üst öğe olmaması için bu seçeneği işaretleyin." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Bu düğümün belgeler için bir kap olarak hareket ettirilmesi ve diğer düğümler için üst öğe olmaması için bu seçeneği işaretleyin." #: models.py:243 msgid "Link documents" @@ -287,8 +281,8 @@ msgstr "Dizini düzenle: %s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po index 90166836b0..a690f9565b 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -116,7 +115,8 @@ msgid "Slug" msgstr "" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:49 models.py:235 @@ -151,8 +151,8 @@ msgstr "" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:243 @@ -279,8 +279,8 @@ msgstr "" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." msgstr "" #: views.py:148 diff --git a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po index 9705e974b3..b72e1586a9 100644 --- a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -117,7 +116,8 @@ msgid "Slug" msgstr "标称" #: models.py:46 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "使文档数据更改时,此索引可见并更新。" #: models.py:49 models.py:235 @@ -140,9 +140,7 @@ msgstr "索引实例" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/" -"en/1.11/ref/templates/builtins/)" +msgstr "输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" @@ -154,8 +152,8 @@ msgstr "使文档数据更改时,此节点可见并更新。" #: models.py:240 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "选中此选项可使此节点充当文档的容器,而不是其他节点的父节点。" #: models.py:243 @@ -282,11 +280,9 @@ msgstr "编辑索引:%s" #: views.py:143 msgid "" "Indexes group document automatically into levels. Indexe are defined using " -"template whose markers are replaced with direct properties of documents like " -"label or description, or that of extended properties like metadata." -msgstr "" -"索引将文档自动分组到级别。 索引是使用模板定义的,其标记被替换为标签或描述等文" -"档的直接属性,或者像元数据等的扩展属性。" +"template whose markers are replaced with direct properties of documents like" +" label or description, or that of extended properties like metadata." +msgstr "索引将文档自动分组到级别。 索引是使用模板定义的,其标记被替换为标签或描述等文档的直接属性,或者像元数据等的扩展属性。" #: views.py:148 msgid "There are no indexes." @@ -305,9 +301,7 @@ msgid "" "Only the documents of the types selected will be shown in the index when " "built. Only the events of the documents of the types select will trigger " "updates in the index." -msgstr "" -"构建时,只有所选类型的文档才会显示在索引中。只有所选类型的文档的事件才会触发" -"索引中的更新。" +msgstr "构建时,只有所选类型的文档才会显示在索引中。只有所选类型的文档的事件才会触发索引中的更新。" #: views.py:176 #, python-format diff --git a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po index f2a3b06aa3..267690e993 100644 --- a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mohammed ALDOUB , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mohammed ALDOUB , 2018\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -161,9 +160,11 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po index 0582a5f638..dbc4288c06 100644 --- a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Iliya Georgiev , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Iliya Georgiev , 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,7 +159,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po index 334b53c9a2..be26a019a5 100644 --- a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # www.ping.ba , 2018 # Atdhe Tabaku , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -165,7 +163,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." diff --git a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po index 006f01d7c8..de2e737408 100644 --- a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -156,7 +155,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po index c48f285091..25797b01b0 100644 --- a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,7 +159,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po index dd421486cf..cd7417ac10 100644 --- a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Berny , 2018 # Robin Schubert , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -167,7 +166,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt " "wird, um Text aus PDF-Dateien zu extrahieren." diff --git a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po index 8741c90569..d11b84252d 100644 --- a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2018 # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,7 +160,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Διαδρομή του προγράμματος pdftotext για την εξαγωγή κειμένου από αρχεία PDF." diff --git a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po index a5f96d591d..91528b2c09 100644 --- a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -84,7 +84,8 @@ msgstr "Página del documento" #: models.py:25 msgid "The actual text content as extracted by the document parsing backend." msgstr "" -"El contenido de texto real extraído por el documento que analiza el servidor." +"El contenido de texto real extraído por el documento que analiza el " +"servidor." #: models.py:33 msgid "Document page content" @@ -165,7 +166,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Ruta de acceso al programa de poppler llamado pdftotext utilizado para " "extraer texto de archivos PDF." diff --git a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po index e73571ac3b..1739563b57 100644 --- a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2018 # Mehdi Amani , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,7 +160,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "محل فایل POPPLER جهت استخراج TEXT از PDF" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po index 420d47c832..e9aa6eb688 100644 --- a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Christophe CHAUVET , 2018 # Thierry Schott , 2018 # Yves Dubois , 2018 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -19,10 +19,10 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -102,8 +102,8 @@ msgstr "Type de document" #: models.py:50 msgid "Automatically queue newly created documents for parsing." msgstr "" -"Ajouter automatiquement les documents nouvellement créés à la file d'attente " -"d'analyse." +"Ajouter automatiquement les documents nouvellement créés à la file d'attente" +" d'analyse." #: models.py:61 msgid "Document type settings" @@ -162,15 +162,16 @@ msgstr "Analyse de version de document" #: settings.py:12 msgid "Set new document types to perform parsing automatically by default." msgstr "" -"Les nouveaux types de documents, par défaut, réaliseront automatiquement une " -"analyse." +"Les nouveaux types de documents, par défaut, réaliseront automatiquement une" +" analyse." #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" -"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à " -"partir des fichiers PDF." +"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à" +" partir des fichiers PDF." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po index 45a0ae8bff..a739ae3603 100644 --- a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2018 # molnars , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: molnars , 2018\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -161,7 +160,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "elérési útvonal a poppler féle pdftotext programhoz ami PDF-ből szöveget " "nyer ki" diff --git a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po index ab706c6996..84e5f611de 100644 --- a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sehat , 2018 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -161,7 +160,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po index 5633bc43c2..8e710743e4 100644 --- a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Pierpaolo Baldan , 2017 # Marco Camplese , 2018 # Giovanni Tricarico , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -18,10 +18,10 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Giovanni Tricarico , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -162,7 +162,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Percorso del programma poppler pdftotext.usato per estrarre il testo dai " "file PDF." diff --git a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.mo index b20ec965cf3a8c4b1d4a310d34f07daaeed158b1..dc6003d9d96d617084a1860738fd45a52c6cb35f 100644 GIT binary patch delta 1205 zcmaLWOGs2v9LMp0&D5loW0Q|cN5`>o#%B+L9%Pe<3$ci36+z-SLk#A)7-tnYo9MBy zpkWreXcG}gw2@ZXA`09DK^qr=X>FxVSSzXT?|55;(SdtE=iGDd{h#wc=gzgfXe};> z{AHtbb2W0^-e%T|YumX|R(zX%tJp(3=r=op=kOHfFpkeKh95A1>lnrjJb(>5%y!`k z+>gDu*Q{ulsnqgd80)cs)i}L5z#d~A?dM+qTd)5UYQk%%KovVT1I4k0_IYf>6zY5T zu?uJM5H8|H;@cN0H9R=Vv^CQKY{u)Tl}vG~!aLscGV+SO#C}{rR^pa73{@<%6LZ*( zvlzm6IDktygy9OaCgNL`%2U#Q50BIC*==?bM^GuA!9M(mF|65Rb_~y;CUO(CqC9FL z54`73P=V)A3wVvnMSacku!~LYdKU|*W|T@wyR4O;=9Ac8FG88eNj<5Rg@JK?em|ajI?o)MR&5J z$eD6Q+sPm23O|NRf2&%t#OOpJH`$(!q$frTz#GLe@6 delta 1010 zcmXxjKS*0q6vy#n6RTC5q_+OI+Ng=z_y>ie;!s3lq3R|M6>-x+u!v@>1O#ojqET?r zO+gf@C@2Ld?ckra;G#l@LLG|OiVj`+{k=R7+YLk;#h#T0= z`gY94GbZv$TYpfCrPzVm$siv-9C7C-ke}ERw&OCg6Z?e`yv1rPW4qbdg;5;9PF%qf zyvCI{kD}QKb!Lnzi9O4B;X+;65sW8`Mtzp*E14m7I^D7H&i(9z|8K z2Mci6y+4IsrJ%^;|n@egLcRBdT(n*n&r>mUvjb4}+)# zCs380MLoaeqy8jsCrs!JoT7U78!3YM$*v0vQDyTaF)N~1e5idtX> zDXEgo6FR91^05jAEwgfl%C3dW7z*`Mp+&VJwM&&$ z=q%7-=Mbt2yg*K9gL&GWN_`(x&MA?;^X51wR;5<|6zaQL;J%$sKVR}a%, YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -162,7 +161,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Failu ceļš uz poppler pdftotext programmu, ko izmanto, lai iegūtu tekstu no " "PDF failiem." @@ -196,14 +196,14 @@ msgstr "%(count)d dokumenti, kas pievienoti parsēšanas rindai" #, python-format msgid "Submit %(count)d document to the parsing queue?" msgid_plural "Submit %(count)d documents to the parsing queue" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Iesniegt %(count)d dokumentus parsēšanas rindā" +msgstr[1] "Iesniegt %(count)d dokumentu parsēšanas rindā?" +msgstr[2] "Iesniegt %(count)d dokumentus parsēšanas rindā" #: views.py:129 #, python-format msgid "Submit document \"%s\" to the parsing queue" -msgstr "Iesniegt parsēšanas rindā dokumentu "%s"" +msgstr "Iesniegt parsēšanas rindā dokumentu \"%s\"" #: views.py:154 #, python-format diff --git a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po index 05db3b4e45..c42d453661 100644 --- a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Johan Braeken, 2017 # Evelijn Saaltink , 2017 # Lucas Weel , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Lucas Weel , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -163,10 +162,11 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF " +"File path to poppler's pdftotext program used to extract text from PDF " "files." +msgstr "" +"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF" +" files." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po index ef16a818dd..05013ff6db 100644 --- a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # mic , 2017 # Wojciech Warczakowski , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -17,13 +17,11 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -163,7 +161,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po index d926dcf230..3bb03b7823 100644 --- a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Emerson Soares , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Emerson Soares , 2018\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -161,7 +160,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Caminho para o programa pdftotext de poppler, usado para extrair texto de " "ficheiros PDF." diff --git a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po index 3ef4f6df60..88ad2cc10c 100644 --- a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rogerio Falcone , 2017 # Roberto Rosario, 2018 # Aline Freitas , 2018 # José Samuel Facundo da Silva , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" -"Last-Translator: José Samuel Facundo da Silva , " -"2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Last-Translator: José Samuel Facundo da Silva , 2018\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -169,7 +167,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Caminho para o programa poppler pdftotext usado para extrair texto de " "arquivos PDF." diff --git a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po index dd2d88162a..c2fd70c398 100644 --- a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Stefaniu Criste , 2017 # Badea Gabriel , 2018 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,14 +17,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -42,8 +40,8 @@ msgstr "Conținut" msgid "" "Utility from the poppler-utils package used to text content from PDF files." msgstr "" -"Utilitar din pachetul poppler-utils utilizat pentru aextrage textul conținut " -"din fișiere PDF." +"Utilitar din pachetul poppler-utils utilizat pentru aextrage textul conținut" +" din fișiere PDF." #: events.py:12 msgid "Document version submitted for parsing" @@ -170,7 +168,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "Calea de fișier pentru programul pdftotext folosit pentru a extrage textul " "din fișiere PDF." diff --git a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po index 449504fbfd..cda10d472d 100644 --- a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Sergey Glita , 2018 # lilo.panic, 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -17,13 +17,11 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: lilo.panic, 2018\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -163,10 +161,11 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" -"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста " -"из PDF файлов." +"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста" +" из PDF файлов." #: views.py:43 #, python-format diff --git a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po index 98782e9348..43211a9f02 100644 --- a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: kontrabant , 2018\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" @@ -161,7 +159,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po index bca9c7ded8..99cec3c0cf 100644 --- a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: serhatcan77 , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,7 +159,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" "PDF dosyalarından metin ayıklamak için kullanılan poppler'ın pptotext " "programının dosya yolu." diff --git a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po index 2f56b9852c..967eed136c 100644 --- a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Trung Phan Minh , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Trung Phan Minh , 2018\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -160,7 +159,8 @@ msgstr "" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: views.py:43 diff --git a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po index 7140c111a1..513b85fcf4 100644 --- a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 @@ -159,7 +159,8 @@ msgstr "设置新文档类型以默认自动执行解析。" #: settings.py:19 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "poppler的pdftotext程序的文件路径,用于从PDF文件中提取文本。" #: views.py:43 diff --git a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po index 5cec6fa8eb..d86ba02543 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po index 7da6272c6b..81a7938f93 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -296,9 +295,7 @@ msgstr "" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"При големи бази данни тази операция може да отнеме известно време за " -"изпълнение." +msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po index 3611663972..49eb01ad37 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # Ilvana Dollaroviq , 2018 @@ -10,17 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po index 6ad2531d02..64d92f8ea0 100644 --- a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po index 17d9e32b4e..e623c96d60 100644 --- a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po index 851ff054ce..3563217200 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Bjoern Kowarsch , 2018 @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -57,9 +56,7 @@ msgstr "Schlüssel" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "" -"Das Passwort zum Entsperren des Schlüssels um die Dokumentenversion zu " -"unterschreiben." +msgstr "Das Passwort zum Entsperren des Schlüssels um die Dokumentenversion zu unterschreiben." #: forms.py:26 msgid "Passphrase" @@ -67,9 +64,7 @@ msgstr "Passwort" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "" -"Der private Schlüssel, der für die Unterschrift dieser Dokumentenversion " -"benutzt wird." +msgstr "Der private Schlüssel, der für die Unterschrift dieser Dokumentenversion benutzt wird." #: forms.py:46 msgid "Signature is embedded?" @@ -245,9 +240,7 @@ msgstr "Fehlende eingebettete Unterschrift überprüfen" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" -"Pfad zu der Speicherklasse (Storage subclass) für die Speicherung separater " -"Unterschriften." +msgstr "Pfad zu der Speicherklasse (Storage subclass) für die Speicherung separater Unterschriften." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -290,11 +283,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"Unterschriften dienen der Ermittlung der Autorenschaft und der Entdeckung " -"von Fälschungen. Sie sind sehr sicher und schwer zu fälschen. Eine " -"Unterschrift kann als Teil des Dokuments in dieses eingebettet sein oder " -"separat erstellt und hochgeladen werden." +msgstr "Unterschriften dienen der Ermittlung der Autorenschaft und der Entdeckung von Fälschungen. Sie sind sehr sicher und schwer zu fälschen. Eine Unterschrift kann als Teil des Dokuments in dieses eingebettet sein oder separat erstellt und hochgeladen werden." #: views.py:328 msgid "There are no signatures for this document." @@ -312,8 +301,7 @@ msgstr "Seperate Unterschrift für Dokumentenversion %s hochladen" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." +msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po index cb10eeba95..924e894eb4 100644 --- a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -295,9 +294,7 @@ msgstr "Ανέβασμα αποσπασμένης υπογραφής για τη #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Σε μεγάλες βάσεις δεδομένων αυτή η ενέργεια μπορεί να χρειαστεί αρκετό χρόνο " -"για να ολοκληρωθεί." +msgstr "Σε μεγάλες βάσεις δεδομένων αυτή η ενέργεια μπορεί να χρειαστεί αρκετό χρόνο για να ολοκληρωθεί." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po index 5d3e26d27c..af817c84fc 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -54,9 +53,7 @@ msgstr "Llave" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "" -"La frase de contraseña para desbloquear la llave y permitir que se use para " -"firmar la versión del documento." +msgstr "La frase de contraseña para desbloquear la llave y permitir que se use para firmar la versión del documento." #: forms.py:26 msgid "Passphrase" @@ -240,8 +237,7 @@ msgstr "Verificar la firma integrada que falta" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" -"Ruta a la subclase Storage para usar cuando se almacenan firmas separadas." +msgstr "Ruta a la subclase Storage para usar cuando se almacenan firmas separadas." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -284,11 +280,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"Las firmas ayudan a proporcionar evidencia de autoría y detección de " -"manipulación. Son muy seguras y difíciles de falsificar. Una firma puede " -"integrarse como parte del documento en sí o cargarse como un archivo " -"separado." +msgstr "Las firmas ayudan a proporcionar evidencia de autoría y detección de manipulación. Son muy seguras y difíciles de falsificar. Una firma puede integrarse como parte del documento en sí o cargarse como un archivo separado." #: views.py:328 msgid "There are no signatures for this document." @@ -306,9 +298,7 @@ msgstr "Subir firma aparte para la versión de documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"En bases de datos de gran tamaño esta operación puede tardar algún tiempo en " -"ejecutarse." +msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po index c008a478a3..de0da99cf8 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -296,9 +295,7 @@ msgstr "امضای جداگانه برای نسخه سند آپلود: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"در پایگاه داده های بزرگ این عملیات ممکن است برای اجرای برخی از زمان ها طول " -"بکشد." +msgstr "در پایگاه داده های بزرگ این عملیات ممکن است برای اجرای برخی از زمان ها طول بکشد." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po index bf6f7933ec..5910e9f000 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2015,2017 @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-17 12:04+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -56,9 +55,7 @@ msgstr "Clé" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "" -"La phrase secrète permettant de déverrouiller la clé pour pouvoir signer la " -"version du document." +msgstr "La phrase secrète permettant de déverrouiller la clé pour pouvoir signer la version du document." #: forms.py:26 msgid "Passphrase" @@ -242,9 +239,7 @@ msgstr "Vérifier la signature intégrée manquante" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" -"Emplacement de la sous-classe de stockage à utiliser lors du stockage des " -"signatures détachées." +msgstr "Emplacement de la sous-classe de stockage à utiliser lors du stockage des signatures détachées." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -287,10 +282,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"Les signatures aident à fournir des preuves d’auteur et la détection " -"d’altération. Ils sont très sécurisés et difficiles à copier. Une signature " -"peut être incorporée dans le document lui-même ou dans un fichier séparé." +msgstr "Les signatures aident à fournir des preuves d’auteur et la détection d’altération. Ils sont très sécurisés et difficiles à copier. Une signature peut être incorporée dans le document lui-même ou dans un fichier séparé." #: views.py:328 msgid "There are no signatures for this document." @@ -308,9 +300,7 @@ msgstr "Transférer une signature détachée pour la version du document : %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Sur de grosses bases de données, cette opération peut prendre un certain " -"temps." +msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po index 43f042b116..1bf3edc9b9 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po index a2ca0675e6..5ae74ba313 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-12 17:54+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -295,9 +294,7 @@ msgstr "" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu " -"untuk dilaksanakan." +msgstr "Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu untuk dilaksanakan." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po index 5beb14b891..08b1a21121 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Marco Camplese , 2016-2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -298,9 +297,7 @@ msgstr "Carica la firma scollegata per la versione documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di " -"tempo." +msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.mo index 902b8bcdb42979febbfebda2bc2e7c42a4eb924a..15dab31ec01ce6e41848461b7f0166d276983995 100644 GIT binary patch delta 303 zcmW;Gv1-Cl6vpu*y@G8a3QeP8)es11OIxqCrU>pXF8T!B?NsPg$mCMGh(o4=i;Ghs zzC$0t$)Q6>Hyu00|IHcB?_BuK;jZ;Ue}A5Yfrum*B99o@BKP=$P5i=3{K0el#XRoN z!hbAdj*!WDH1mE!vp>QdzGEGyxWy$tW9UdIRfa!DL}7vzR7H_Cy4c4tmT-m*T;UaN z&>Y^Qxllqk@d3O7K$, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-05-31 12:16+0000\n" +"PO-Revision-Date: 2019-06-27 13:01+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" @@ -52,9 +50,7 @@ msgstr "Atslēga" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "" -"Ieejas frāze, lai atbloķētu atslēgu un ļautu to izmantot dokumenta versijas " -"parakstīšanai." +msgstr "Ieejas frāze, lai atbloķētu atslēgu un ļautu to izmantot dokumenta versijas parakstīšanai." #: forms.py:26 msgid "Passphrase" @@ -62,8 +58,7 @@ msgstr "Ieejas frāze" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "" -"Privāta atslēga, kas tiks izmantota, lai parakstītu šo dokumenta versiju." +msgstr "Privāta atslēga, kas tiks izmantota, lai parakstītu šo dokumenta versiju." #: forms.py:46 msgid "Signature is embedded?" @@ -239,8 +234,7 @@ msgstr "Pārbaudiet trūkstošo iegulto parakstu" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" -"Ceļš uz glabāšanas apakšklasi, kas jāizmanto, uzglabājot atdalītos parakstus." +msgstr "Ceļš uz glabāšanas apakšklasi, kas jāizmanto, uzglabājot atdalītos parakstus." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -261,12 +255,12 @@ msgstr "Dokumenta versija ir veiksmīgi parakstīta." #: views.py:127 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Parakstiet dokumenta versiju "%s" ar atdalītu parakstu" +msgstr "Parakstiet dokumenta versiju \"%s\" ar atdalītu parakstu" #: views.py:224 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Parakstiet dokumenta versiju "%s" ar iegulto parakstu" +msgstr "Parakstiet dokumenta versiju \"%s\" ar iegulto parakstu" #: views.py:240 #, python-format @@ -283,10 +277,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"Paraksti palīdz nodrošināt autorības pierādījumus un manipulāciju atklāšanu. " -"Viņi ir ļoti droši un grūti veidojami. Parakstu var ievietot kā daļu no " -"dokumenta vai augšupielādēt kā atsevišķu failu." +msgstr "Paraksti palīdz nodrošināt autorības pierādījumus un manipulāciju atklāšanu. Viņi ir ļoti droši un grūti veidojami. Parakstu var ievietot kā daļu no dokumenta vai augšupielādēt kā atsevišķu failu." #: views.py:328 msgid "There are no signatures for this document." diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po index cc661a6a63..0b30c3c2a9 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po index 2fe3d579b0..3d0c559112 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po index 2e1c00b14b..46eeaeccee 100644 --- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Vítor Figueiró , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po index 7aba52a8d8..435c4b7f6f 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # José Samuel Facundo da Silva , 2018 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -237,9 +236,7 @@ msgstr "Verificar assinatura integrada que falta" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" -"Caminho para a subclasse Storage que será usada para armazenar firmas " -"separadas." +msgstr "Caminho para a subclasse Storage que será usada para armazenar firmas separadas." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -282,10 +279,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"Assinaturas ajudam a proporcionar evidência de autoria e detecção de " -"manipulação. São muito seguras e difíceis de falsificar. Uma assinatura pode " -"ser integrada ao próprio documento ou carregada como um arquivo separado." +msgstr "Assinaturas ajudam a proporcionar evidência de autoria e detecção de manipulação. São muito seguras e difíceis de falsificar. Uma assinatura pode ser integrada ao próprio documento ou carregada como um arquivo separado." #: views.py:328 msgid "There are no signatures for this document." @@ -303,8 +297,7 @@ msgstr "Carregar a assinatura destacada para a versão do documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Em grandes bases de dados esta operação pode levar algum tempo para executar." +msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po index 502a4b37b9..6ec3724799 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-02 05:17+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" @@ -53,9 +51,7 @@ msgstr "Cheie" msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "" -"Fraza de acces pentru a debloca cheia și a permite utilizarea acesteia " -"pentru a semna versiunea documentului." +msgstr "Fraza de acces pentru a debloca cheia și a permite utilizarea acesteia pentru a semna versiunea documentului." #: forms.py:26 msgid "Passphrase" @@ -63,9 +59,7 @@ msgstr "Expresie de acces" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "" -"Cheia privată care va fi utilizată pentru a semna această versiune a " -"documentului." +msgstr "Cheia privată care va fi utilizată pentru a semna această versiune a documentului." #: forms.py:46 msgid "Signature is embedded?" @@ -241,9 +235,7 @@ msgstr "Verificați semnatura încorporată lipsă" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" -"Calea către subclasa de stocare care trebuie utilizată la stocarea " -"semnăturilor detașate." +msgstr "Calea către subclasa de stocare care trebuie utilizată la stocarea semnăturilor detașate." #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " @@ -286,10 +278,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"Semnăturile vă ajută să furnizați dovezi de autorizare și detectarea " -"fraudelor. Sunt foarte sigure și greu de falsificat. O semnătură poate fi " -"încorporată ca parte a documentului sau încărcată ca fișier separat." +msgstr "Semnăturile vă ajută să furnizați dovezi de autorizare și detectarea fraudelor. Sunt foarte sigure și greu de falsificat. O semnătură poate fi încorporată ca parte a documentului sau încărcată ca fișier separat." #: views.py:328 msgid "There are no signatures for this document." @@ -307,8 +296,7 @@ msgstr "Încărcați semnătura detașată pentru versiunea documentului: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Pe baze de date mari, această operație poate dura ceva timp pentru a executa." +msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po index f638f118f0..1387d7b96b 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 # Sergey Glita , 2012 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" @@ -299,9 +296,7 @@ msgstr "Выгрузить отделённую подпись для верси #: views.py:378 msgid "On large databases this operation may take some time to execute." -msgstr "" -"В больших базах данных эта операция может занять некоторое время для " -"выполнения." +msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." #: views.py:379 msgid "Verify all document for signatures?" diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po index 9d250a5e03..32b4757e62 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:47 permissions.py:8 settings.py:10 msgid "Document signatures" diff --git a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po index 5bf4057a5f..400146bd00 100644 --- a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po index b6481515d8..5049ded4f6 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:47 permissions.py:8 settings.py:10 diff --git a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po index 5fd8998352..78d296a2ac 100644 --- a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:47 permissions.py:8 settings.py:10 @@ -278,9 +277,7 @@ msgid "" "Signatures help provide authorship evidence and tamper detection. They are " "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." -msgstr "" -"签名有助于提供作者证据和篡改检测。它们非常安全且难以伪造。签名可以作为文档本" -"身的一部分嵌入,也可以作为单独的文件上传。" +msgstr "签名有助于提供作者证据和篡改检测。它们非常安全且难以伪造。签名可以作为文档本身的一部分嵌入,也可以作为单独的文件上传。" #: views.py:328 msgid "There are no signatures for this document." diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo index b9f7199f5206924f5c6ca973185fd2c4caaf0352..f35fcaa9f9d5b58eb4d036cd4813ab0cec32e21c 100644 GIT binary patch delta 21 dcmdnNzJq=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -412,8 +410,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -427,7 +425,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -575,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -628,7 +627,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -717,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -738,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo index 9f609c45454ca786926db729b2c3ed50103cf90a..cd4a3463bf7cc1f102369ebe6dd06b6ba321510b 100644 GIT binary patch delta 21 ccmZ3;wvcT@B_oHCrGkN(m674*M#cq<07F*=i_@% diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po index df1962b19c..ea5e15a0fe 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -411,8 +410,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -426,7 +425,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -574,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -627,7 +627,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -716,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -737,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo index 90045c9e87a3269eeacafadc953ee087a660505d..2846bef68dae7b5a96d6110d78fa4e297da8b84a 100644 GIT binary patch delta 21 ccmZ1+wK!_S7by-SO9cZnD}Q2+n{ delta 21 ccmZ1+wK!_S7by-yQw0NaD-+Ajf27of09vL8R{#J2 diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po index 149a17c3ad..eb4f6609e1 100644 --- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -203,9 +201,7 @@ msgstr "Na izlazu" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj tok " -"posla. Može sadržavati samo slova, brojeve i podvučice." +msgstr "Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj tok posla. Može sadržavati samo slova, brojeve i podvučice." #: models.py:45 msgid "Internal name" @@ -223,9 +219,7 @@ msgstr "Početno stanje" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Izaberite da li će ovo biti stanje s kojom želite da radni tok započne. Samo " -"jedno stanje može biti početno stanje." +msgstr "Izaberite da li će ovo biti stanje s kojom želite da radni tok započne. Samo jedno stanje može biti početno stanje." #: models.py:205 msgid "Initial" @@ -235,9 +229,7 @@ msgstr "Inicijalno" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Unesite procenat završetka koji ovo stanje predstavlja u odnosu na radni " -"tok. Koristite brojeve bez znakova procenata." +msgstr "Unesite procenat završetka koji ovo stanje predstavlja u odnosu na radni tok. Koristite brojeve bez znakova procenata." #: models.py:217 models.py:276 msgid "Workflow state" @@ -387,9 +379,7 @@ msgstr "Primarni ključ vrste dokumenta koji treba dodati." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"API URL koji ukazuje na tip dokumenta u odnosu na tok posla kome je " -"priključen. Ova URL adresa se razlikuje od URL kanonskog tipa dokumenta." +msgstr "API URL koji ukazuje na tip dokumenta u odnosu na tok posla kome je priključen. Ova URL adresa se razlikuje od URL kanonskog tipa dokumenta." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -403,9 +393,7 @@ msgstr "Primarni ključ porekla stanja koji treba dodati." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL API koji ukazuje na tok posla u odnosu na dokument na koji je priložen. " -"Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." +msgstr "URL API koji ukazuje na tok posla u odnosu na dokument na koji je priložen. Ova URL adresa se razlikuje od kanonskog URL-a za radni tok." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -415,9 +403,7 @@ msgstr "Veza na čitavu istoriju ovog toka posla." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Lista odvojenih primarnih ključeva tipova dokumenata na koje se taj radni " -"proces povezuje." +msgstr "Lista odvojenih primarnih ključeva tipova dokumenata na koje se taj radni proces povezuje." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -425,8 +411,8 @@ msgstr "Primarni ključ tranzicije koji treba dodati." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -440,7 +426,8 @@ msgstr "Radni tokovi za dokument: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -564,9 +551,7 @@ msgstr "Tipovi dokumenata dodeljeni ovim radnim tokovima" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"Uklanjanje tipa dokumenta iz radnog toka će takođe ukloniti sve pokrenute " -"instance tog toka posla za dokumente tipa dokumenta koji je upravo uklonjen." +msgstr "Uklanjanje tipa dokumenta iz radnog toka će takođe ukloniti sve pokrenute instance tog toka posla za dokumente tipa dokumenta koji je upravo uklonjen." #: views/workflow_views.py:212 #, python-format @@ -590,8 +575,8 @@ msgstr "Izmenite akciju stanja toka posla: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -643,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -732,15 +718,11 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"Može biti IP adresa, domen ili šablon. Šabloni primaju primere " -"prijavljivanja dnevnika rada kao dio njihovog konteksta pomoću varijable " -"\"entri_log\". \"Entri_log\" zauzvrat pruža \"vorkflov_instance\", \"datetime" -"\", \"transition\", \"user\" i \"comment\" atribute." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "Može biti IP adresa, domen ili šablon. Šabloni primaju primere prijavljivanja dnevnika rada kao dio njihovog konteksta pomoću varijable \"entri_log\". \"Entri_log\" zauzvrat pruža \"vorkflov_instance\", \"datetime\", \"transition\", \"user\" i \"comment\" atribute." #: workflow_actions.py:103 msgid "Timeout" @@ -757,16 +739,11 @@ msgstr "Payload" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"JSON dokument koji treba uključiti u zahtev. Može biti i šablon koji vraća " -"JSON dokument. Šabloni primaju primere prijavljivanja dnevnika rada kao dio " -"njihovog konteksta pomoću varijable \"entri_log\". \"Entri_log\" zauzvrat " -"pruža \"vorkflov_instance\", \"datetime\", \"transition\", \"user\" i " -"\"comment\" atribute." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "JSON dokument koji treba uključiti u zahtev. Može biti i šablon koji vraća JSON dokument. Šabloni primaju primere prijavljivanja dnevnika rada kao dio njihovog konteksta pomoću varijable \"entri_log\". \"Entri_log\" zauzvrat pruža \"vorkflov_instance\", \"datetime\", \"transition\", \"user\" i \"comment\" atribute." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo index dd8e76bed20cbe3877068c75f66869920b031096..9196cdec33974c6106f20bc2ce24d4bc9ff62163 100644 GIT binary patch delta 19 acmcb@a)o8WWey`t1p_lHBg2iiD;WVsHwLf( delta 19 acmcb@a)o8WWe!7A1p{*{6U&XaD;WVsI|jA@ diff --git a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po index 8eeca4d06b..812d303b09 100644 --- a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -412,8 +410,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -427,7 +425,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -575,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -628,7 +627,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -717,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -738,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo index 3c8ae99e6c8c36234d03a81cef7fbf185a3654ad..e87b3dff883056d976acc67a1df6be26ed475c2a 100644 GIT binary patch delta 21 ccmeBU>toxnn32QCQo+E?%E)l@YQ|(n07ESW)&Kwi delta 21 ccmeBU>toxnn32QKRKdX9%EWT>YQ|(n07Ewg+yDRo diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po index 31b9e384c0..027ed93c1d 100644 --- a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -411,8 +410,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -426,7 +425,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -574,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -627,7 +627,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -716,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -737,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo index a34319fc04f8fc835b4f949835f5891808c42efc..bd88cae307051dd6373c1f70e7d7f007455efb3c 100644 GIT binary patch delta 21 ccmZpvX{p(uqrzcisbFAcWn{S7MCF1c08KpxivR!s delta 21 ccmZpvX{p(uqrzcms$gJlWn#J6MCF1c08K{*kpKVy diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po index ff26365068..c924bed737 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -37,8 +36,7 @@ msgstr "Den aktuellen Status des ausgewählten Workflows zurückgeben" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "" -"Den Ergebniswert des aktuellen Status des ausgewählten Workflows zurückgeben" +msgstr "Den Ergebniswert des aktuellen Status des ausgewählten Workflows zurückgeben" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -205,10 +203,7 @@ msgstr "Beim Verlassen" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Dieser Wert wird von anderen Programmteilen verwendet, um sich auf diesen " -"Workflow zu beziehen. Es sind nur Buchstaben, Zahlen und Unterstriche " -"erlaubt." +msgstr "Dieser Wert wird von anderen Programmteilen verwendet, um sich auf diesen Workflow zu beziehen. Es sind nur Buchstaben, Zahlen und Unterstriche erlaubt." #: models.py:45 msgid "Internal name" @@ -226,9 +221,7 @@ msgstr "Initialstatus" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein " -"Status kann initial sein." +msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." #: models.py:205 msgid "Initial" @@ -238,9 +231,7 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der " -"Fertigstellung in Bezug auf den Workflow angibt." +msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." #: models.py:217 models.py:276 msgid "Workflow state" @@ -264,9 +255,7 @@ msgstr "Wann" #: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "" -"Der punktierte Pythonpfad zu der Workflowaktionsklasse, die ausgeführt " -"werden soll." +msgstr "Der punktierte Pythonpfad zu der Workflowaktionsklasse, die ausgeführt werden soll." #: models.py:292 msgid "Entry action path" @@ -392,10 +381,7 @@ msgstr "Primärschlüssel des hinzuzufügenden Dokumententyps." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"API URL für den Dokumententyp, der auf den Workflow verweist, mit dem er " -"verknüpft ist. Diese URL unterscheidet sich von der kanonischen " -"Dokumententyp-URL." +msgstr "API URL für den Dokumententyp, der auf den Workflow verweist, mit dem er verknüpft ist. Diese URL unterscheidet sich von der kanonischen Dokumententyp-URL." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -409,9 +395,7 @@ msgstr "Primärschlüssel des hinzuzufügenden Herkunftsstatus." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL für den Workflow, der auf das Dokument verweist, mit dem er " -"verknüpft ist. Diese URL unterscheidet sich von der kanonischen Workflow-URL." +msgstr "API URL für den Workflow, der auf das Dokument verweist, mit dem er verknüpft ist. Diese URL unterscheidet sich von der kanonischen Workflow-URL." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -421,9 +405,7 @@ msgstr "Ein Link zur kompletten Historie dieses Workflows." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen " -"dieser Workflow verknüpft wird." +msgstr "Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen dieser Workflow verknüpft wird." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -431,11 +413,9 @@ msgstr "Primärschlüssel des hinzuzufügenden Übergangs." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " -msgstr "" -"Weisen Sie Workflows zu dem Dokumententyp dieses Dokuments zu, damit sie für " -"dieses Dokument durchgeführt werden." +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " +msgstr "Weisen Sie Workflows zu dem Dokumententyp dieses Dokuments zu, damit sie für dieses Dokument durchgeführt werden." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -448,7 +428,8 @@ msgstr "Workflows für Dokument %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -478,9 +459,7 @@ msgstr "Übergang für Workflow %s durchführen" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" -"Verknüpfen Sie einen Workflow mit Dokumententypen, um die Dokumente dieser " -"Typen hier anzuzeigen." +msgstr "Verknüpfen Sie einen Workflow mit Dokumententypen, um die Dokumente dieser Typen hier anzuzeigen." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -495,9 +474,7 @@ msgstr "Dokumente mit Workflow %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "" -"Workflows erstellen und mit einem Dokumententyp verknüpfen. Aktive Workflows " -"werden hier angezeigt und die Dokumente, für die sie ausgeführt werden." +msgstr "Workflows erstellen und mit einem Dokumententyp verknüpfen. Aktive Workflows werden hier angezeigt und die Dokumente, für die sie ausgeführt werden." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -537,9 +514,7 @@ msgstr "Diesem Dokumententyp zugewiesene Workflows" msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "" -"Die Entfernung eines Workflows von einem Dokumententyp wird auch alle " -"laufenden Instanzen dieses Workflows löschen." +msgstr "Die Entfernung eines Workflows von einem Dokumententyp wird auch alle laufenden Instanzen dieses Workflows löschen." #: views/workflow_views.py:87 #, python-format @@ -550,10 +525,7 @@ msgstr "An Dokumententyp %s zugewiesene Workflows" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "" -"Workflows speichern eine Reihenfolge von Zuständen (Status) und verfolgen " -"den aktuellen Status eines Dokuments. Übergänge werden dazu verwendet, vom " -"aktuellen Status zu einem neuen zu wechseln." +msgstr "Workflows speichern eine Reihenfolge von Zuständen (Status) und verfolgen den aktuellen Status eines Dokuments. Übergänge werden dazu verwendet, vom aktuellen Status zu einem neuen zu wechseln." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -581,9 +553,7 @@ msgstr "Dokumententypen zugeordnet zu diesem Workflow" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"Das Entfernen eines Dokumententyps von einem Workflow wird auch sämtliche " -"laufenden Workflowinstanzen für andere Dokumente dieses Typs entfernen." +msgstr "Das Entfernen eines Dokumententyps von einem Workflow wird auch sämtliche laufenden Workflowinstanzen für andere Dokumente dieses Typs entfernen." #: views/workflow_views.py:212 #, python-format @@ -607,11 +577,9 @@ msgstr "Workflowstatusaktion %s bearbeiten" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." -msgstr "" -"Workflowstatusaktionen sind Makros, die bei Betreten oder Verlassen eines " -"Dokumentenstatus ausgeführt werden." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." +msgstr "Workflowstatusaktionen sind Makros, die bei Betreten oder Verlassen eines Dokumentenstatus ausgeführt werden." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -662,10 +630,9 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." -msgstr "" -"Einen Übergang erstellen und verwenden, um von einem Status in einen anderen " -"zu wechseln." +"Create a transition and use it to move a workflow from one state to " +"another." +msgstr "Einen Übergang erstellen und verwenden, um von einem Status in einen anderen zu wechseln." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -679,8 +646,7 @@ msgstr "Übergänge für Workflow %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "" -"Fehler bei der Aktualisierung von Workflowübergangstriggerereignissen; %s" +msgstr "Fehler bei der Aktualisierung von Workflowübergangstriggerereignissen; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" @@ -689,9 +655,7 @@ msgstr "Workflowübergangstriggerereignissen erfolgreich aktualisiert" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "" -"Trigger sind Ereignisse, die für eine automatische Ausführung dieses " -"Übergangs sorgen." +msgstr "Trigger sind Ereignisse, die für eine automatische Ausführung dieses Übergangs sorgen." #: views/workflow_views.py:698 #, python-format @@ -706,9 +670,7 @@ msgstr "Alle Workflows starten?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "" -"Dies wird alle Workflows anstoßen, die erst nach dem Upload von Dokumenten " -"erstellt wurden." +msgstr "Dies wird alle Workflows anstoßen, die erst nach dem Upload von Dokumenten erstellt wurden." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -726,9 +688,7 @@ msgstr "" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "" -"Der neue Bezeichner, der dem Dokument zugewiesen werden soll. Kann eine " -"Zeichenfolge oder eine Vorlage sein." +msgstr "Der neue Bezeichner, der dem Dokument zugewiesen werden soll. Kann eine Zeichenfolge oder eine Vorlage sein." #: workflow_actions.py:30 msgid "Document description" @@ -738,9 +698,7 @@ msgstr "" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "" -"Die neue Beschreibung, die dem Dokument zugewiesen werden soll. Kann eine " -"Zeichenfolge oder eine Vorlage sein." +msgstr "Die neue Beschreibung, die dem Dokument zugewiesen werden soll. Kann eine Zeichenfolge oder eine Vorlage sein." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -762,15 +720,11 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"Kann eine IP-Adresse, eine Domain oder eine Vorlage sein. Vorlagen erhalten " -"die Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". " -"\"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition" -"\", \"user\" und \"comment\" Attribute." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "Kann eine IP-Adresse, eine Domain oder eine Vorlage sein. Vorlagen erhalten die Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". \"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition\", \"user\" und \"comment\" Attribute." #: workflow_actions.py:103 msgid "Timeout" @@ -787,16 +741,11 @@ msgstr "Payload" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"Ein JSON-Dokument, das in den Request eingeschlossen werden soll. Kann auch " -"eine Vorlage sein, die ein JSON-Dokument zurückgibt. Vorlagen erhalten die " -"Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". " -"\"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition" -"\", \"user\" und \"comment\" Attribute." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "Ein JSON-Dokument, das in den Request eingeschlossen werden soll. Kann auch eine Vorlage sein, die ein JSON-Dokument zurückgibt. Vorlagen erhalten die Workflowlog-Eingangsinstanz mit der Kontextvariable \"entry_log\". \"entry_log\" enthält die \"workflow_instance\", \"datetime\", \"transition\", \"user\" und \"comment\" Attribute." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo index 63c1c356fa6318fb43f534b716ec23cdf8f2d0e2..8a8fab62c2deebeca27f8ba8aa0e96779b4d182f 100644 GIT binary patch delta 21 ccmcZ}aXn&#wlIg0rGkN(m673QV__9Z08&2&82|tP delta 21 ccmcZ}aXn&#wlIgGse*yIm5JqMV__9Z08&W?9{>OV diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po index 1b660fab9d..db305e3232 100644 --- a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -34,9 +33,7 @@ msgstr "Επιστέφει την τρέχουσα κατταση της επι #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "" -"Επιστρέφει την τιμή ολολήρωσης της τρέχουσας κατάστασης για την επιλεγμένη " -"ροή εργασίας" +msgstr "Επιστρέφει την τιμή ολολήρωσης της τρέχουσας κατάστασης για την επιλεγμένη ροή εργασίας" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -203,10 +200,7 @@ msgstr "Κατά την έξοδο" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Αυτή η τιμή θα χρησιμοποιείτε από τις άλλες εφαρμογές σαν αναφορά γι' αυτή " -"την ροή εργασίας. Χρησιμοποιήστε μόνο γράμματα,αριθμούς και τον χαρακτήρα " -"υπογράμμισης." +msgstr "Αυτή η τιμή θα χρησιμοποιείτε από τις άλλες εφαρμογές σαν αναφορά γι' αυτή την ροή εργασίας. Χρησιμοποιήστε μόνο γράμματα,αριθμούς και τον χαρακτήρα υπογράμμισης." #: models.py:45 msgid "Internal name" @@ -224,9 +218,7 @@ msgstr "Αρχική κατάσταση" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Επιλέξτε αν αυτή θα είναι η αρχική κατάσταση της ροής εργασίας. Μόνο μια " -"κατάσταση μπορεί να είναι η αρχική κατάσταση." +msgstr "Επιλέξτε αν αυτή θα είναι η αρχική κατάσταση της ροής εργασίας. Μόνο μια κατάσταση μπορεί να είναι η αρχική κατάσταση." #: models.py:205 msgid "Initial" @@ -236,9 +228,7 @@ msgstr "Αρχική" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Εισάγετε το ποσοστό ολοκλήρωσης που εκπροσωπεί αυτή η κατάσταση σε σχέση με " -"την ροή εργασίας. Χρησιμοποιήστε αριθμούς χωρίς το σύμβολο του ποσοστού (%)." +msgstr "Εισάγετε το ποσοστό ολοκλήρωσης που εκπροσωπεί αυτή η κατάσταση σε σχέση με την ροή εργασίας. Χρησιμοποιήστε αριθμούς χωρίς το σύμβολο του ποσοστού (%)." #: models.py:217 models.py:276 msgid "Workflow state" @@ -420,8 +410,8 @@ msgstr "Πρωτεύον κλειδί της μετάβασης που θα π #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -435,7 +425,8 @@ msgstr "Ροή εργασίας για το έγγραφο: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -583,8 +574,8 @@ msgstr "Τροποποίηση ενέργειας κατάστασης ροής #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -636,7 +627,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -651,9 +643,7 @@ msgstr "Μεταβάσεις της ροής εργασίας: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "" -"Σφάλμα κατά την τροποποίηση του συμβάντος ενεργοποίησης μετάβασης ροής " -"εργασίας: %s" +msgstr "Σφάλμα κατά την τροποποίηση του συμβάντος ενεργοποίησης μετάβασης ροής εργασίας: %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" @@ -727,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -748,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo index c33a14b0005d67c4593e335090ec63e1401eef2f..e86b16e9ddd2ab6865a208e9358bf71a4e8aa218 100644 GIT binary patch delta 23 ecmeC`W9;f<+)%8>VPvUbU}j}xxVc)bUjYDFe+Lx+ delta 23 ecmeC`W9;f<+)%8>VQ8vgU~Xk, 2015,2018 # Nima Towhidi , 2017 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -203,9 +202,7 @@ msgstr "در خروج" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"این مقدار توسط برنامه های دیگر برای ارجاع به این گردش کار استفاده می شود. " -"فقط شامل حروف، اعداد و حروف الفبا است." +msgstr "این مقدار توسط برنامه های دیگر برای ارجاع به این گردش کار استفاده می شود. فقط شامل حروف، اعداد و حروف الفبا است." #: models.py:45 msgid "Internal name" @@ -223,9 +220,7 @@ msgstr "حالت اولیه" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"انتخاب کنید اگر این حالت شما خواهد بود که می خواهید جریان کار شروع شود. تنها " -"یک حالت می تواند وضعیت اولیه باشد." +msgstr "انتخاب کنید اگر این حالت شما خواهد بود که می خواهید جریان کار شروع شود. تنها یک حالت می تواند وضعیت اولیه باشد." #: models.py:205 msgid "Initial" @@ -235,9 +230,7 @@ msgstr "اولیه" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"درصد تکمیل را که این وضعیت در رابطه با جریان کاری نشان می دهد وارد کنید. " -"استفاده از اعداد بدون نشانه درصد." +msgstr "درصد تکمیل را که این وضعیت در رابطه با جریان کاری نشان می دهد وارد کنید. استفاده از اعداد بدون نشانه درصد." #: models.py:217 models.py:276 msgid "Workflow state" @@ -387,9 +380,7 @@ msgstr "کلید اولیه نوع سند اضافه می شود" msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"URL API اشاره به نوع سند مربوط به جریان کاری که به آن متصل است. این URL " -"متفاوت از URL سند نوع سند است." +msgstr "URL API اشاره به نوع سند مربوط به جریان کاری که به آن متصل است. این URL متفاوت از URL سند نوع سند است." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -403,9 +394,7 @@ msgstr "کلید اولیه حالت مبدأ اضافه می شود" msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL API اشاره به یک گردش کار در رابطه با سند که آن متصل است. این URL متفاوت " -"از URL کارآفرینی کانونی است." +msgstr "URL API اشاره به یک گردش کار در رابطه با سند که آن متصل است. این URL متفاوت از URL کارآفرینی کانونی است." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -415,8 +404,7 @@ msgstr "لینک به کل تاریخچه این گردش کار" msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"لیست کاملی از نوع سند کپی اولیه که این جریان کار متصل است، جدا شده است." +msgstr "لیست کاملی از نوع سند کپی اولیه که این جریان کار متصل است، جدا شده است." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -424,8 +412,8 @@ msgstr "کلید اصلی انتقال برای اضافه کردن" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -439,7 +427,8 @@ msgstr "گردش کار برای سند: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -587,8 +576,8 @@ msgstr "ویرایش عمل جریان کار: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -640,7 +629,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -729,15 +719,11 @@ msgstr "نشانی اینترنتی" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"می تواند یک آدرس IP، یک دامنه یا یک الگو باشد. قالب ها ورودی ورودی ورود به " -"سیستم را به عنوان بخشی از متن خود از طریق متغیر \"entry_log\" دریافت می " -"کنند. \"entry_log\" به نوبه خود ویژگی های \"workflow_instance\"، \"datetime" -"\"، \"transition\"، \"user\" و \"comment\" را فراهم می کند." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "می تواند یک آدرس IP، یک دامنه یا یک الگو باشد. قالب ها ورودی ورودی ورود به سیستم را به عنوان بخشی از متن خود از طریق متغیر \"entry_log\" دریافت می کنند. \"entry_log\" به نوبه خود ویژگی های \"workflow_instance\"، \"datetime\"، \"transition\"، \"user\" و \"comment\" را فراهم می کند." #: workflow_actions.py:103 msgid "Timeout" @@ -754,16 +740,11 @@ msgstr "ظرفیت ترابری" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"یک سند JSON برای درخواست در همچنین می تواند یک الگو باشد که یک سند JSON را " -"بازگرداند. قالب ها ورودی ورودی ورود به سیستم را به عنوان بخشی از متن خود از " -"طریق متغیر \"entry_log\" دریافت می کنند. \"entry_log\" به نوبه خود ویژگی های " -"\"workflow_instance\"، \"datetime\"، \"transition\"، \"user\" و \"comment\" " -"را فراهم می کند." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "یک سند JSON برای درخواست در همچنین می تواند یک الگو باشد که یک سند JSON را بازگرداند. قالب ها ورودی ورودی ورود به سیستم را به عنوان بخشی از متن خود از طریق متغیر \"entry_log\" دریافت می کنند. \"entry_log\" به نوبه خود ویژگی های \"workflow_instance\"، \"datetime\"، \"transition\"، \"user\" و \"comment\" را فراهم می کند." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo index 1c845ee34059bda79c87b2e069361acdbcdb8724..86a6dbf691ceb3a0d1b30ccf9e2b17a30949d85f 100644 GIT binary patch delta 4462 zcmZYB3vg6d9mnw#NPt2hK*A#=z~!0nDunQU)ADRcpISf=S$1!dYc{*f-dzGxy3isO zXzgQp)lv&gMG4c{0O^Xb8lmMU=q9HlQ;x-VIzJIr((}O#tbwjWA5jml#aDn%s>fT!}+$p{sVr8 zn#;#H82^U#*qxi0lUaqu*npa#iyH74@+k8bj==YjIhrq!Ihd|xx%3=>1v zV4faG{9_~aqH1*kJK^6^EBFkxqLOm|ybM*MTGYUEP_Jzm6(R8|tmdp*HC+QJK1eeelo7nlk1F2O4+)TV7wRMXhKFQg+jf8h9saz*kV4 zr!DCJ1(F1F1<9(pjvAhdkGaup@2D*t!&PTBfmFy5|*T0Tq@J(EYAD~h^Yn-2n6*!agwWvLI0F}Y> zm{G?E9I)|CcebQfIuiBZ`KZ*bK+QZB_yj6bdr%YJhnm0z)MoxC>b?=|WNK^{qc&R@ zweroV?{A+#{-<)#Mn^aN2>COA<%8cEGl1Dm!ilIoupTwxRz9>>j-yt38f)<#tifBT z%+)ZPX;_a`!|X(ja}xFapG+kGWZ(RS4y~j&qYcHys1n$y89#+D;vUq4D;Y%@n}KWb zQB>xBh?>|%)N`+*?k}3`XRs&s;JgAgk*W*_O3ftn21cdMMs2=lun)e0v+*oy6W&A( za0`pDisdNP6Ho)x1+K&r&cmpQxTpneMU9g=7<8P*UUd8xwX#2S-%0+p`wyUA(^pY@=M0AQ{=dz^N;;~!`*GZk8t@A0 zwd%?THWWlymqH! zBq}u%Q4g*|rLr0IgVc&W@i5xhhAKtxIsRTLLw&yn2jW~*X&y(Vel4mL5$umCtYmz% zmjm7K1FXQeP%FKPbFmj6mAC@y&_UJyr>H%06?K2-d45eRQ7fN^Y!4Gcs$}+|N_znZ z;~z0YwoJi%(u=e4OZWs1!OO@T%x9>XPgvmBcrI#!X|(V-DigoL0^CZdX>xrDW%nyY znozr+c#`O?`mf<&9g!s#5#J!1h!#Q{XDIP7p&4uAY$Mc^sU^e_Li^?@p>}{+paWWz zC?dY9lb{s_#_*8p&*IFupi?|c>>}7t-n*?IByFe-gc@1%+EaXfi_m+l4f_b8rpyf| zUegI}6=4(8bV55we8)TDCz|oS+SKEHLFY2m22s<->u8%fh!fi7)kKm|dx2O_@U!o= zJ$!m)#Fc)R_kRUmw|sLsdY;Ja%y;<*FTo(fA@rK475n5rzsAuH;=!Qj+xaWTd^tGQ zD?2(k)?1_Y91$T_6WUiRRDZQ*qKtTmND+I9mx+BuN88WAT%t$Nk-%4j<1P4If}afU zXIkBQavgD)c$#P>9v~Wt5kxuReQTk2V9Ym>pKGt_wb>XPFUMg-ui#whheS=kaB91W zeuUoh#l+VM{VFac^s1H;vx!N>GlZI6S#M{{5@IG%s}tHWpZurZf3;V9%y!&FSj1GK zGtr3{kUL-ed8dr)#=}l1Wm_SuHJ)s4h{jv3RwvbDx$zd;ip0a|7CV-*Qd<(XYlUKw ze3xs*8?01Q+_i&?txhy*ZLqDVvFt7Wh*s*Yiw$JmNGs;gJ6<_Es<->;JB5ns?16cXQnLyUti1wPICUC_;i#C~fU0 z{AwrS>12?Cd|9~OQTy!C+DQW!ro(9#(D4RzWX;OP#th6|sx2(2R|XTIM&6wUCQ12K p3BUN-5Z@H=QlN1(=m2~zs>CI(aEK`OH+Q`<$ofpl(PT; delta 3396 zcmYk;d2EzL7{~Ev+tRyRuF{rTDAYm=w6q*;sd67u4neL0r65R!3IcN2%Hc|tQ*6a; zix7f@s6oVY10*J*;ZO{RViRLf6yq%t!SIL5<@dKcO_=oA&&<2~zBBX8%nPU2dtR>g zeb+Xk(I`#CJ;a#^vu0cy!w2P5yxBmH*=LwXJIZTzFBW10mg82uijlY`(JT&YF$(Lj z6EeUIs>^Zp=YFxCHh6IQRWzRL3h( z_xrIs?slHQF0}td4aD1?z)qM=|CUQ73#TD{+gj{__1GCdKvu;rpgQ^<^?=)`6elE^ zt-~bL0R7I_us`i1u6+fS(L2}yWBKsu0bQslB{|L_Y(;w{YQ$razN{R%*Os9Myb-lc z4x&WU1Hb9op5#!5GEn{IB$I!wVS&3a2>Gpz!j4$s+BNR`deqE!U;)04 zx%f5q!boM@6Z)fm)kzwmSR7yr`6S zMIEOi^W(w|ZHUq)?e-*qb5bgfu0r6dKl ziL#NetOV8Zbky%wqGq%S$*LVhb$k-l;kT$ga@k$?u!E^u3NlA4LiIBRnW)d^Q_=CL zL8WFF7U4-$25zA?SKExxW-G*O+Cxw&twL7A>QR|Efb%?NZ{rMX)77k)>x+1Z?t2yY z;#u6G^S^}YXw4&enodCiYDv;iYn_Sxa3X338&Db9hdFd`6qnQfty^fR%30WW+6yoT zSK@5kgUakJR0a|m%>eqh&Q!FSW}s5H*|ql|`_ay#X80@W!C^eL3nrolT;LpxF|@~{ z23&?(!fmKb9>6I42>G*5`SA6pa*awfb|?QjPWhORvrz-9N3H!))C|sJU;Ghutde_% zGE$0#v@4Nh*lyHwkE4En29-gjRRc-yMgF%_$>M@idIUA&W}JmrP%|IHs5F2|Bzsna zdca;x!2KA9hfy6KL(TX!vVH6lDr1@rt7TnL6B(UH{_mqQlMC8BO{flbVJkd_O5rI~ z2fsM~My=s()IhwwLlfwL>Zp%vPeCv3WvGeyP#NEe{MqNapj6*MCTsaL-oy%=j4|X_ zr=bG3U?Xbeo%@6~Z2{_d6=MvR;ar@HWq2H?VH){Yhs%*M+dgE~&3B%PQgj0kV;Vc> zQT!4)IW~ad%2^n^0X5J!P)qX_#^N>965d2TFNKYuj1{Ba7b7qMtFRKQk&OH7A{A|l zA5b^kM!i^KnYNZ76P4l|OvD20fJ0IDO-KEH6>0!=sEi)Kf%pyTcd5Jt#$q9AiEA-S z=l=ke6fS&$TD#v-Gmaa;I$|D@44aEu!zR?8co+Gzb9@ZJ=n~#)Sc+PbJ$OHUh#L5R z$XG0v4W|JP!wmYj6;!nO8qkC738m~|LM4Mx>K79&WxK1)!5PF#qLEPQ)k!&_bZgCZ zBJM796MPeDu)fiJ3?;NFRHhLuVeq&;s|&8YfSZYjh)Kje;_foiHOg>2p$x7jlxmf< z5W&s6kouBP+h^;kD9tTJYo;3o)NiX%`~6mab}#P~jliOkxbNmQdM5LnB$vVv$Jo+2J6RM=<1|CFe{j3_0vaqEexgi048o>)#iNAx7Z zh*iXkL^YvPpnf+vA@sVHi-;P6Qy6@=55wmP9YvLwhzcT{m`v0WmBcoprPNXxMLg*) zJcd=SF4hpeh%C*wAC(BA1EFK3v&sn!maTl|x;m#PSRQabjd6sIT1R)ShqHyuz@da| zVF7QO+Hn7+_Iv$}NnHb$NxuPslbK^9 u0(IFVBm5I`Px*W26$GmDR(k?V@^?o0mlh}bClqG{_7;bG0#PL=BL4@$L_, 2017 # Christophe CHAUVET , 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -38,9 +37,7 @@ msgstr "Fournir l'état actuel du flux de travail sélectionné" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "" -"Renvoyer la valeur d'achèvement de l'état actuel du flux de travail " -"sélectionné" +msgstr "Renvoyer la valeur d'achèvement de l'état actuel du flux de travail sélectionné" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -207,10 +204,7 @@ msgstr "A la sortie" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Cette valeur sera utilisée par d'autres applications pour faire référence à " -"ce flux de travail. Ne peut contenir que des lettres, des chiffres et des " -"caractères de soulignement." +msgstr "Cette valeur sera utilisée par d'autres applications pour faire référence à ce flux de travail. Ne peut contenir que des lettres, des chiffres et des caractères de soulignement." #: models.py:45 msgid "Internal name" @@ -228,9 +222,7 @@ msgstr "État initial" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Sélectionnez si vous voulez que cet état soit celui par lequel le flux de " -"travail débute. Un seul état peut être à l'état initial." +msgstr "Sélectionnez si vous voulez que cet état soit celui par lequel le flux de travail débute. Un seul état peut être à l'état initial." #: models.py:205 msgid "Initial" @@ -240,9 +232,7 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Spécifiez le pourcentage de finalisation que cet état représente au sein du " -"flux de travail. Saisissez un nombre sans le signe de pourcentage." +msgstr "Spécifiez le pourcentage de finalisation que cet état représente au sein du flux de travail. Saisissez un nombre sans le signe de pourcentage." #: models.py:217 models.py:276 msgid "Workflow state" @@ -266,9 +256,7 @@ msgstr "Quand" #: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "" -"Le chemin Python séparé par des points vers la classe d'action de flux de " -"travail à exécuter." +msgstr "Le chemin Python séparé par des points vers la classe d'action de flux de travail à exécuter." #: models.py:292 msgid "Entry action path" @@ -394,10 +382,7 @@ msgstr "Clé principale du type de document à ajouter." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"URL de l'API indiquant un type de document par rapport au flux de travail " -"auquel il est joint. Cette URL est différente de l'URL du type de document " -"canonique." +msgstr "URL de l'API indiquant un type de document par rapport au flux de travail auquel il est joint. Cette URL est différente de l'URL du type de document canonique." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -411,9 +396,7 @@ msgstr "Clé principale de l'état d'origine à ajouter." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"URL de l'API indiquant un flux de travail par rapport au document auquel il " -"est joint. Cette URL est différente de l'URL du flux de travail canonique." +msgstr "URL de l'API indiquant un flux de travail par rapport au document auquel il est joint. Cette URL est différente de l'URL du flux de travail canonique." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -423,9 +406,7 @@ msgstr "Un lien vers l'historique complet de ce flux de travail." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Liste séparée par des virgules des clés primaires de type de document " -"auxquelles ce flux de travail sera joint." +msgstr "Liste séparée par des virgules des clés primaires de type de document auxquelles ce flux de travail sera joint." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -433,8 +414,8 @@ msgstr "Clé principale de la transition à ajouter." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -448,12 +429,13 @@ msgstr "Flux de travail du document : %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." -msgstr "" +"This view will show the state changes as a workflow instance is " +"transitioned." +msgstr "Cette page affiche les changements d'état lors de la transition d'une instance de flux de travail." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "" +msgstr "Il n'y a pas de détails pour cette instance de workflow" #: views/workflow_instance_views.py:90 #, python-format @@ -478,7 +460,7 @@ msgstr "Réaliser une transition pour le flux de travail : %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" +msgstr "Associer un flux de travail à certains types de documents et les documents de ces types seront répertoriés dans cette vue." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -501,7 +483,7 @@ msgstr "Il n'y a pas de flux de travail" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Aucun document dans cet état de flux de travail" #: views/workflow_proxy_views.py:97 #, python-format @@ -553,12 +535,12 @@ msgstr "Aucun flux de travail n'a été défini" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "" +msgstr "Supprimer le flux de travail: %s?" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "" +msgstr "Modifier le flux de travail: %s" #: views/workflow_views.py:196 msgid "Available document types" @@ -572,10 +554,7 @@ msgstr "Types de document associés à ce flux de travail" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"Retirer un type de document d'un flux de travail supprimera également toutes " -"les instances en cours d'exécution de ce flux de travail pour les documents " -"du type retiré." +msgstr "Retirer un type de document d'un flux de travail supprimera également toutes les instances en cours d'exécution de ce flux de travail pour les documents du type retiré." #: views/workflow_views.py:212 #, python-format @@ -599,8 +578,8 @@ msgstr "Modifier une action d'état de flux de travail : %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -624,12 +603,12 @@ msgstr "Créer des états pour le flux de travail : %s" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "" +msgstr "Supprimer l'état du flux de travail: %s?" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "" +msgstr "Modifier l'état du flux de travail: %s" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" @@ -643,19 +622,18 @@ msgstr "Créer des transitions du flux de travail : %s" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "" +msgstr "Supprimer la transition du flux de travail: %s?" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "" +msgstr "Modification de la transition du flux de travail: %s" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." -msgstr "" -"Créez une transition et utilisez-la pour déplacer un flux de travail d'un " -"état à un autre." +"Create a transition and use it to move a workflow from one state to " +"another." +msgstr "Créez une transition et utilisez-la pour déplacer un flux de travail d'un état à un autre." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -669,22 +647,16 @@ msgstr "Transitions du flux de travail : %s " #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "" -"Erreur de mise-à-jour des événements déclencheurs de transition du flux de " -"travail ; %s " +msgstr "Erreur de mise-à-jour des événements déclencheurs de transition du flux de travail ; %s " #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "" -"Événements déclencheurs de transition du flux de travail mis à jour avec " -"succès" +msgstr "Événements déclencheurs de transition du flux de travail mis à jour avec succès" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "" -"Les déclencheurs sont des événements qui entraînent l'exécution automatique " -"de cette transition." +msgstr "Les déclencheurs sont des événements qui entraînent l'exécution automatique de cette transition." #: views/workflow_views.py:698 #, python-format @@ -699,14 +671,11 @@ msgstr "Lancer tous les flux de travail ?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "" -"Ceci lancera tous les flux de travail créés après que les documents ont déjà " -"été téléversés." +msgstr "Ceci lancera tous les flux de travail créés après que les documents ont déjà été téléversés." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." -msgstr "" -"Le lancement du flux de travail a été mis en file d'attente avec succès." +msgstr "Le lancement du flux de travail a été mis en file d'attente avec succès." #: views/workflow_views.py:774 #, python-format @@ -715,26 +684,22 @@ msgstr "Prévisualisation de : %s" #: workflow_actions.py:22 msgid "Document label" -msgstr "" +msgstr "Étiquette du document" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "" -"La nouvelle étiquette à attribuer au document. Peut être une chaîne ou un " -"modèle." +msgstr "La nouvelle étiquette à attribuer au document. Peut être une chaîne ou un modèle." #: workflow_actions.py:30 msgid "Document description" -msgstr "" +msgstr "Description du document" #: workflow_actions.py:33 msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "" -"La nouvelle description à attribuer au document. Peut être une chaîne ou un " -"modèle." +msgstr "La nouvelle description à attribuer au document. Peut être une chaîne ou un modèle." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -756,16 +721,11 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"Peut être une adresse IP, un domaine ou un modèle. Les modèles reçoivent " -"l'instance d'entrée de journal du flux de travail au sein de leur contexte " -"via la variable \"entry_log\". \"entry_log\" fournit à son tour les " -"attributs \"workflow_instance\", \"datetime\", \"transition\", \"user\" et " -"\"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "Peut être une adresse IP, un domaine ou un modèle. Les modèles reçoivent l'instance d'entrée de journal du flux de travail au sein de leur contexte via la variable \"entry_log\". \"entry_log\" fournit à son tour les attributs \"workflow_instance\", \"datetime\", \"transition\", \"user\" et \"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -782,16 +742,11 @@ msgstr "Contenu" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"Un document JSON à inclure dans la requête. Peut également être un modèle " -"qui renvoie un document JSON. Les modèles reçoivent l'instance d'entrée du " -"journal de flux de travail dans leur contexte via la variable \"entry_log\". " -"\"entry_log\" fournit à son tour les attributs \"workflow_instance\", " -"\"datetime\", \"transition\", \"user\" et \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "Un document JSON à inclure dans la requête. Peut également être un modèle qui renvoie un document JSON. Les modèles reçoivent l'instance d'entrée du journal de flux de travail dans leur contexte via la variable \"entry_log\". \"entry_log\" fournit à son tour les attributs \"workflow_instance\", \"datetime\", \"transition\", \"user\" et \"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo index 99200746bb067ab9b9120dd04229a387736085d5..3e9a65d2c4555acbe092dac193f3968f48b67681 100644 GIT binary patch delta 21 ccmdnVwUcWDKQo7srGkN(m673Qab_hZ06vfe&;S4c delta 21 ccmdnVwUcWDKQo7+se*yIm5JqMab_hZ06v-o)&Kwi diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po index ef063a1f2c..36160ab46d 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -412,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -427,7 +426,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -575,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -628,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -717,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -738,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo index 0a11984d2ac4ccaba8b6d1c6a8eaf20a4c281ff3..c25b9696dec969d2602e723f7b6ee121877f79b8 100644 GIT binary patch delta 21 ccmZ3XxC=Z8`rGkN(m673QS)Oh-072RXZvX%Q delta 21 ccmZ3XxC=Z9Bse*yIm5JqMS)Oh-072vhbpQYW diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index bd617ba685..56ac5ff389 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Adek Lanin, 2019 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -412,8 +411,8 @@ msgstr "Kunci utama dari transisi yang ditambahkan." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -427,7 +426,8 @@ msgstr "Alur kerja untuk dokumen: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -575,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -628,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -717,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -738,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo index 2b788745f848682167c61f0cc3f916e10d7c1df9..c14c1eedf4c93a1786617f8ce06d96487b6e3511 100644 GIT binary patch delta 21 ccmaE>^j2vDCpU+YrGkN(m673QLGBnf07}pWssI20 delta 21 ccmaE>^j2vDCpU+ose*yIm5JqMLGBnf07}{gumAu6 diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po index f6c7bb0f4e..e89c8d857b 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -220,9 +219,7 @@ msgstr "Stato iniziale" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo " -"uno stato può essere quello iniziale." +msgstr "Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo uno stato può essere quello iniziale." #: models.py:205 msgid "Initial" @@ -232,9 +229,7 @@ msgstr "Iniziale" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Inserisci la percentuale di completamento che questo stato rappresenta in " -"relazione al workflow. Usa i numeri senza segno di percentuale." +msgstr "Inserisci la percentuale di completamento che questo stato rappresenta in relazione al workflow. Usa i numeri senza segno di percentuale." #: models.py:217 models.py:276 msgid "Workflow state" @@ -416,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -431,7 +426,8 @@ msgstr "Workflow per il documento: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -579,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -632,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -721,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -742,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.mo index 4aabbc43fe17f563b502f61d6b2f48d5eb87f7aa..c6652e88865d6e3554020b1e9788ac2dcd81f03f 100644 GIT binary patch delta 4424 zcmb`}dvH|c8OQNA@n+`|f3fh%i z)Qg@&jcGp?VHeKFpJ8vz$uq{rBFx6uPy_x6Y5>=eE=+d5F~e{O=Fq=+kP3q`i%>6W z#QSlB+uns)v=5+WcoZ!>iG%PW4#f|VK1^nT^S;5T4#%UOt3wMPMh&P5v*_P!p)wNp zpkDAJw|x;=b@NXw#?%2Cu`wm6>s2@k>#+ozkwr5$j=|%ofxV4scpcU8r^uhlXW8T0 z^YK(P(z&P?H=ve0h)-eE{rgZhIAKi#DM;-ipeBJ#PCTYG6l^ zKXcY?UmnEz>w#-r(9CaO1*VYz<8cy>Lmz5MpU3C%9D4ClmTwN8Mm={6+i@Hjsu>6Gvhc^}++#ia)^lILdO~ z*M>T#7f>tuF=_&NB$A%5Lrpy1L`8cSK~9p{h}x3fsB_$fOxB!2E%7gLHvSG%vB={L zq!_g&HK>)G>bB>h_Ix4g`K74Swi-#+xYhAtkUTU4 zNerz(1**f@s2p1AUT?-I?M`G7%}rFY58x&0uM+#~{MS=qGG-ZSi8f+29z(6fpO9zG zKTt_ozmXoQo$}cfJ2p9v+Luqsb-uH}k3Nz;{tg z6yz?AFox=|6V=gf4C3pq7H?6m>_iTXIfFXazr`Fnyox^Bx4Eeot|o!*!yqyy(~j{5 zDlbvdOmE`>%q8Qr8XrK-U?nOUTTugf7S+K))JpsiwU>WDtdwOsNb$DuHLz0^tbY}iH@U#%%nejh4WHnQuol%(6DGF;b>D6z9n6nW9lwv7dHO`h zp{OOFjGb7IdhZ47jqhO{ejKNwkUJ>C8$?J`7oHQ;tf?)u{V@s9cE0spx?nsJ%IX>3AA*@eS0CzrbX2p+);D>P6X; zoPmtQeA<(dugn5uSIlN)j^+*2o_~Zpv4A7CT<5=w%41yk45#3t8e=+e7is`Glbsn` zs18TF?RuO^dp^!a8|UC3Q3Dvk%czj6L=Gq zY%3mcvcCh>eg&0WzeX+bzfeD=X;Yn~%0{ikVANJkz(TA=t>hBafW4Tij$fgorF|8Z zG(X2Yd|Nl*6->jAP%rp9s)O5DfPJSqjzV3p!_m0JHST_Y0`)`oQ@kHPz_=<(MGasu zT3Ct2xCFOgJ8H(CVHK84ckW+-8fX;t{Wctfr|=>CJ!(KhW;n;M618FtsGJDQVBvL~ z4sl@+Uc_(Vhp3syA2cQfHxVj2!~F@ZQUmc-LPdGdLFh!RBvunI5Dybi5n8qNLkil2I3&W*pmqd$+Cyf zX9@DnJWl911_(cqOuXr;P&N}g2qjGgp;Mt^5yOctLS;FzmZ(vKa)5X#Su=)QG@LNA zfT(w`&BcLkUE6f0e2q%Hg^x9a_N|o&5;ma|pyQ&li}*6ZVwtZHDvOE6WX<_#gKrXB z@4BYyK4LHtBDB>i`eAd6Ug`W-suRDIY&rkMa;s*kThWinD7W6n^*L-JRuCk!d6ZBI z6H2^=L_4vYI7BG7?v!s+sne8{kt$K*yUCg{U&kZFWMZ#-?Hf3sI81CIHWKrQbwmlF zlQe*Mh)~%^Oib1|Q5bXUkKiyOM{Q^R&QGJ-{q#ZENfZ#7#4MtjSVHI*PG>uhm`Y3_ zwi7CY9Fm{8eAW_G?zNX)?=Zxz6o1F9JcCaX9-^8^C3+Br-6g#*XWG4Tdrhh{_5P4Q z=C|4-Ex|RRNV^ql@rI*;SRfLfVwFVy>-*$I`)b~4drN+G_pA9f#9c z*?WqP&1wty+pYFMC}c&~YMg8R7Edws#lwSqBHgX|5|(6*u!a_65ju}v3q*h3re%5 zhXU?4ZA{qFnC0`fJh47>{$#Y7)o{kzdXF2N>vmJ={^Tp|-en_ftE|?ZUG|qe^)b#0 zM_LjcK4xjDZ7(ceWzQ%rnCNtA7WsXFL|4MTcc-7TU7Y2M1e57u_pRw(eEu+-8x49% zmi1nZHF1(QThJB>CeC@Sz{X~8;QSVEbet9R`j}5F5RCrMzDXZ`N}DFz4P`gcnfR@VF(2V)&G|!dwK66*%$T0om-ehEW4dE4Zo?C}4#&1OrYT;= zNc<9;;Sbmq@8C>qA59;)1T&5Co3E+FaiL?3F>NseTQcBqoI-ni8@r=AY(e`NcEM9P z2CpJ>GpRfrz+7yJ7f=(vf|@|9cE-@9Nx}Q@0c_3qW;zw-V7#b~s<0DoaoUG5g7yj2 z3hU9r_fgMXM|J$W^Ly*|_V2N%fwNH0PsC&_bXedtm`4;8NtY%pTN0`%urnjoSM2xD+p;COEN!?QG1Xy$JpKp^l2S_9SwzIg9Gx zYt)Whcl-szX-9Bgns5}dXwwy$tI0r3I3JZh9@JJZ#74LWHPOAOiN6)c{_8?L7qmrR zp$5K=I>TE|J1pLwSaa;ib<1hzpzbd~t$Z@3qZ|9+E=<99Q9E}Bw_qZj6k)I<`=3vx zJqNA_3$YTnpjOzNS3+kVkJ=f_X=h;`?FX;`m*Hri+cTp>}IB*@23rT2`f!g}vsMl>ODrsk0?6Ylw>L41G-SMd8>xJ5pT#Ugn$RbQ3YT%`)`*xxhbO<>;a{)E* zHPnD%iFU3;BiH>ViAp&?&Z7prfm-qJ$bTlLo4rFBm_>UUYA0$@$#xKx zd>^0-KSAwmBYsrwxNsW|!Nz+3FHu<&#upDaV=;H@2yQ1C(;F?$K}jd4MvbNn8elevxRzgw!E%=xH^%twv4I+gv`m#CHt+-uID zlI2&-!!|5m9T%WF_Mq-th+4sZ)Q+9RYCMa2zJPbR6}nOVRHDxQb&SFfQOSEXo%7d? ze{w-9YSquq&LoVWJqTlP7^;IwsBHJ5I@pNXu|vq5&2emu-=Xfmfsq)IVc*{lwX^*& z90&TTL{rH_-8dGN98=LkAF8A6sEO2}KD8%NJ9i0Lw2A7^Hv#idM^=vO@dccWDcn2` z*I+hY#uey~9bivj2WrI!Py-%y+GlYX?Ta`9JM+%vV+m>kN09U}-=KwU@3+skKeD-I zC{D+ERIVfsw3BoU()ODLRFovUQCoQm^~F1nt??4J$8S*+`~%~$8OzX)C88$Q2etJJ zumdha<;GTQhkKmgk75(ruVJL7c!G)scn4$gbH`iG^~fCl?}zJ&j-ycbRUn@XvmQHP zo#PqQ1inQJ%^>^3m58fp4nZyWJ@!hshZ{TM4tx%SsGS*=$LAL{c|EUhj>ZqILhtL-#4cT+)Y_OC_#~mD(d_w} zh7za{bvz_^=vd(I!g!%1oP?u@p#(2j==1&rk_w?CS)=iH(@@z;C}YPH6Ns6_Ka0*- zWim0AP%+Iv5}ZfsOYR!bhZs; z7L@_SG-3>~oKUGDnucojcVZLua^iVHUrrU}kY2@Sh)QB7;a|$1`Gg92XdVjH`0(Ip zq7$)=c$`q_PUsW5fLKc?;TjPOiS5K<;t`^Xc$R1=PdOD2E+GaI{k8sKR5laggo-k@ zh)~8(Bm#t+*g`avIaKnAMb3pXoafYqb~Tl75m`hNBA&2_1R{q}*`NbXv+IVpDpW=~ zu0;LYkVtfKuIWqn&yo}jkGj|_&^vZ-;EUL9!I%y)VL^9XP18X4gua3035SD=t-Ik7 z>6unqR(Ah^!No~;!~99}D?GlOk}{unVc}fQEW6p)8dtQSqO^X6*Ju6b4OW?_*y}m{ zqPwifD)M>V(@!7tRg^pTR(iapGv|6L3*BYqzM`@jC3Y7n&d, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -36,8 +34,7 @@ msgstr "Atgrieziet atlasītās darbplūsmas pašreizējo stāvokli" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "" -"Atgrieziet atlasītās darbplūsmas pašreizējā stāvokļa pabeigšanas vērtību" +msgstr "Atgrieziet atlasītās darbplūsmas pašreizējā stāvokļa pabeigšanas vērtību" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -204,9 +201,7 @@ msgstr "Iziet" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Šo vērtību izmantos citas lietotnes, lai atsauktos uz šo darbplūsmu. Var " -"saturēt tikai burtus, ciparus un pasvītrojumus." +msgstr "Šo vērtību izmantos citas lietotnes, lai atsauktos uz šo darbplūsmu. Var saturēt tikai burtus, ciparus un pasvītrojumus." #: models.py:45 msgid "Internal name" @@ -224,9 +219,7 @@ msgstr "Sākotnējais stāvoklis" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Atlasiet, vai tas būs stāvoklis, ar kuru vēlaties darbplūsmu sākt. Tikai " -"viens stāvoklis var būt sākotnējais stāvoklis." +msgstr "Atlasiet, vai tas būs stāvoklis, ar kuru vēlaties darbplūsmu sākt. Tikai viens stāvoklis var būt sākotnējais stāvoklis." #: models.py:205 msgid "Initial" @@ -236,9 +229,7 @@ msgstr "Sākotnējais" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Ievadiet procentus no pabeigšanas, ko šī valsts pārstāv attiecībā uz " -"darbplūsmu. Izmantot numurus bez procentuālās zīmes." +msgstr "Ievadiet procentus no pabeigšanas, ko šī valsts pārstāv attiecībā uz darbplūsmu. Izmantot numurus bez procentuālās zīmes." #: models.py:217 models.py:276 msgid "Workflow state" @@ -388,9 +379,7 @@ msgstr "Pievienojamā dokumenta tipa primārā atslēga." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"API URL, kas norāda uz dokumenta veidu saistībā ar darbplūsmu, kurai tas ir " -"pievienots. Šis URL atšķiras no kanoniskā dokumenta tipa URL." +msgstr "API URL, kas norāda uz dokumenta veidu saistībā ar darbplūsmu, kurai tas ir pievienots. Šis URL atšķiras no kanoniskā dokumenta tipa URL." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -404,9 +393,7 @@ msgstr "Pievienojamās izcelsmes valsts primārā atslēga." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL, kas norāda uz darbplūsmu saistībā ar dokumentu, uz kuru tas ir " -"pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." +msgstr "API URL, kas norāda uz darbplūsmu saistībā ar dokumentu, uz kuru tas ir pievienots. Šis URL atšķiras no kanoniskā darbplūsmas URL." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -416,9 +403,7 @@ msgstr "Saite uz visu šīs darbplūsmas vēsturi." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Komatu atdalīts dokumentu tipa primāro atslēgu saraksts, kurām šī darbplūsma " -"tiks pievienota." +msgstr "Komatu atdalīts dokumentu tipa primāro atslēgu saraksts, kurām šī darbplūsma tiks pievienota." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -426,11 +411,9 @@ msgstr "Pievienojamās pārejas primārā atslēga." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " -msgstr "" -"Piešķiriet šī dokumenta dokumenta tipam darbplūsmas, lai šis dokuments " -"izpildītu šīs darbplūsmas." +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " +msgstr "Piešķiriet šī dokumenta dokumenta tipam darbplūsmas, lai šis dokuments izpildītu šīs darbplūsmas." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -443,12 +426,13 @@ msgstr "Dokumenta darbplūsmas: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." -msgstr "" +"This view will show the state changes as a workflow instance is " +"transitioned." +msgstr "Šis skats parādīs stāvokļa izmaiņas, kad notiks darbplūsmas instances pāreja." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "" +msgstr "Šajā darbplūsmas instancē nav sīkākas informācijas" #: views/workflow_instance_views.py:90 #, python-format @@ -458,7 +442,7 @@ msgstr "Darba plūsmas apraksts: %(workflow)s" #: views/workflow_instance_views.py:114 #, python-format msgid "Document \"%s\" transitioned successfully" -msgstr "Dokuments "%s" veiksmīgi mainīts" +msgstr "Dokuments \"%s\" veiksmīgi mainīts" #: views/workflow_instance_views.py:123 msgid "Submit" @@ -473,9 +457,7 @@ msgstr "Vai pāreja darbplūsmai: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" -"Darbplūsmas saistīšana ar dažiem dokumentu veidiem un šo veidu dokumenti " -"tiks iekļauti šajā skatā." +msgstr "Darbplūsmas saistīšana ar dažiem dokumentu veidiem un šo veidu dokumenti tiks iekļauti šajā skatā." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -490,9 +472,7 @@ msgstr "Dokumenti ar darbplūsmu: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "" -"Izveidojiet dažas darbplūsmas un saistiet tās ar dokumenta veidu. Šeit tiks " -"parādītas aktīvas darbplūsmas un dokumenti, kuriem tie tiek izpildīti." +msgstr "Izveidojiet dažas darbplūsmas un saistiet tās ar dokumenta veidu. Šeit tiks parādītas aktīvas darbplūsmas un dokumenti, kuriem tie tiek izpildīti." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -500,12 +480,12 @@ msgstr "Nav darbplūsmu" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Šajā darbplūsmas stāvoklī nav dokumentu" #: views/workflow_proxy_views.py:97 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" -msgstr "Dokumenti darbplūsmā "%s", norādiet "%s"" +msgstr "Dokumenti darbplūsmā \"%s\", norādiet \"%s\"" #: views/workflow_proxy_views.py:142 views/workflow_views.py:511 msgid "Create states and link them using transitions." @@ -532,9 +512,7 @@ msgstr "Darbplūsmām piešķirts šī dokumenta veids" msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "" -"Darbplūsmas noņemšana no dokumenta veida arī novērsīs visus darbplūsmas " -"gadījumus." +msgstr "Darbplūsmas noņemšana no dokumenta veida arī novērsīs visus darbplūsmas gadījumus." #: views/workflow_views.py:87 #, python-format @@ -545,9 +523,7 @@ msgstr "Darbplūsmas, kurām piešķirts dokumenta tips: %s" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "" -"Darbplūsmas saglabā virkni valstu un seko dokumenta pašreizējam stāvoklim. " -"Pārejas tiek izmantotas, lai mainītu pašreizējo stāvokli uz jaunu." +msgstr "Darbplūsmas saglabā virkni valstu un seko dokumenta pašreizējam stāvoklim. Pārejas tiek izmantotas, lai mainītu pašreizējo stāvokli uz jaunu." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -556,12 +532,12 @@ msgstr "Nav noteiktas darbplūsmas" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "" +msgstr "Dzēst darbplūsmu: %s?" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "" +msgstr "Rediģēt darbplūsmu: %s" #: views/workflow_views.py:196 msgid "Available document types" @@ -575,9 +551,7 @@ msgstr "Dokumentu veidiem piešķirta šī darbplūsma" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"Dokumenta veida noņemšana no darbplūsmas arī novērsīs visus darbplūsmas " -"gadījumus, kad tikko izņemtie dokumenta veidi ir dokumenti." +msgstr "Dokumenta veida noņemšana no darbplūsmas arī novērsīs visus darbplūsmas gadījumus, kad tikko izņemtie dokumenta veidi ir dokumenti." #: views/workflow_views.py:212 #, python-format @@ -587,7 +561,7 @@ msgstr "Dokumentu veidiem, kuriem piešķirta darbplūsma: %s" #: views/workflow_views.py:265 #, python-format msgid "Create a \"%s\" workflow action" -msgstr "Izveidojiet darbplūsmas darbību "%s"" +msgstr "Izveidojiet darbplūsmas darbību \"%s\"" #: views/workflow_views.py:305 #, python-format @@ -601,11 +575,9 @@ msgstr "Rediģēt darbplūsmas stāvokļa darbību: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." -msgstr "" -"Darbplūsmas stāvokļa darbības ir makro, kas tiek izpildīts, kad dokumenti " -"tiek ievadīti vai atstāti valstī, kurā tie atrodas." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." +msgstr "Darbplūsmas stāvokļa darbības ir makro, kas tiek izpildīts, kad dokumenti tiek ievadīti vai atstāti valstī, kurā tie atrodas." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -628,12 +600,12 @@ msgstr "Izveidojiet darbplūsmas stāvokļus: %s" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "" +msgstr "Dzēst darbplūsmas stāvokli: %s?" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "" +msgstr "Rediģēt darbplūsmas stāvokli: %s" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" @@ -647,19 +619,18 @@ msgstr "Izveidojiet pārejas darbplūsmai: %s" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "" +msgstr "Dzēst darbplūsmas pāreju: %s?" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "" +msgstr "Rediģēt darbplūsmas pāreju: %s" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." -msgstr "" -"Izveidojiet pāreju un izmantojiet to, lai pārvietotu darbplūsmu no vienas " -"valsts uz citu." +"Create a transition and use it to move a workflow from one state to " +"another." +msgstr "Izveidojiet pāreju un izmantojiet to, lai pārvietotu darbplūsmu no vienas valsts uz citu." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -697,9 +668,7 @@ msgstr "Uzsākt visas darbplūsmas?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "" -"Tas palaidīs visas darbplūsmas, kas izveidotas pēc tam, kad dokumenti jau ir " -"augšupielādēti." +msgstr "Tas palaidīs visas darbplūsmas, kas izveidotas pēc tam, kad dokumenti jau ir augšupielādēti." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -712,7 +681,7 @@ msgstr "Priekšskatījums: %s" #: workflow_actions.py:22 msgid "Document label" -msgstr "" +msgstr "Dokumenta etiķete" #: workflow_actions.py:25 msgid "" @@ -721,7 +690,7 @@ msgstr "Jaunā etiķete, kas jāpiešķir dokumentam. Var būt virkne vai veidne #: workflow_actions.py:30 msgid "Document description" -msgstr "" +msgstr "Dokumenta apraksts" #: workflow_actions.py:33 msgid "" @@ -749,16 +718,11 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"Var būt IP adrese, domēns vai veidne. Veidnes saņem darbplūsmas žurnāla " -"ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo "" -"entry_log". Savukārt "entry_log" nodrošina atribūtus "" -"workflow_instance", "datetime", "pāreja", "" -"lietotājs" un "komentārs"." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "Var būt IP adrese, domēns vai veidne. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo \"entry_log\". Savukārt \"entry_log\" nodrošina atribūtus \"workflow_instance\", \"datetime\", \"pāreja\", \"lietotājs\" un \"komentārs\"." #: workflow_actions.py:103 msgid "Timeout" @@ -775,17 +739,11 @@ msgstr "Kravnesība" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"JSON dokuments, kas jāiekļauj pieprasījumā. Var būt arī veidne, kas atgriež " -"JSON dokumentu. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu " -"no konteksta, izmantojot mainīgo "entry_log". Savukārt "" -"entry_log" nodrošina atribūtus "workflow_instance", "" -"datetime", "pāreja", "lietotājs" un "" -"komentārs"." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "JSON dokuments, kas jāiekļauj pieprasījumā. Var būt arī veidne, kas atgriež JSON dokumentu. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo \"entry_log\". Savukārt \"entry_log\" nodrošina atribūtus \"workflow_instance\", \"datetime\", \"pāreja\", \"lietotājs\" un \"komentārs\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo index 02dcc1e4cef1021cbf6722010942f3f8ac6389a0..d3a965e52a69c7c58fe590c4b8e3aceafc49d042 100644 GIT binary patch delta 21 ccmew(`bTtwJUfSxrGkN(m673Qb@r>w08N<&NB{r; delta 21 ccmew(`bTtwJUfS>se*yIm5JqMb@r>w08OI?P5=M^ diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po index e1e789ab90..6c86278bd7 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -412,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -427,7 +426,8 @@ msgstr "Workflows voor document: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -575,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -628,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -717,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -738,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo index 11793be447dc4ede93e6a3d7eb97a163f163863f..d8727241c4ca4ec0b838c0d3b89d8960944a8473 100644 GIT binary patch delta 21 ccmew*@=Iic85@U@rGkN(m673QJ2o2@08Oj~)&Kwi delta 21 ccmew*@=Iic85@V8se*yIm5JqMJ2o2@08O?9+yDRo diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po index e368bf52d6..27e4df4bd3 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -414,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -429,7 +426,8 @@ msgstr "Obiegi dokumentu: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -577,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -630,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -719,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -740,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo index 09a5fe6ea11eb2c487ec2e68cae8e77439aecf1c..0e75c83cd5d447082a59780a6f8f612fe42e7000 100644 GIT binary patch delta 21 ccmZ3*wu)`THbxF3O9cZnD, 2016 # Jadson Ribeiro , 2017 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -38,9 +37,7 @@ msgstr "Retorna o estado atual de um fluxo de trabalho selecionado" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "" -"Retorna o valor de finalização do estado atual de um fluxo de trabalho " -"selecionado" +msgstr "Retorna o valor de finalização do estado atual de um fluxo de trabalho selecionado" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -207,9 +204,7 @@ msgstr "Na saída" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Este valor será usado por outros aplicativos para referenciar este fluxo de " -"trabalho. Pode conter apenas letras, números e subtraços." +msgstr "Este valor será usado por outros aplicativos para referenciar este fluxo de trabalho. Pode conter apenas letras, números e subtraços." #: models.py:45 msgid "Internal name" @@ -227,9 +222,7 @@ msgstr "Estado Inicial" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Selecione se este será o estado no qual você deseja que o fluxo de trabalho " -"comece. Apenas um estado pode ser o estado inicial." +msgstr "Selecione se este será o estado no qual você deseja que o fluxo de trabalho comece. Apenas um estado pode ser o estado inicial." #: models.py:205 msgid "Initial" @@ -239,9 +232,7 @@ msgstr "Inicial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Insira a porcentagem de finalização que este estado representa em relação ao " -"fluxo de trabalho. Utilize números sem o sinal de porcentagem." +msgstr "Insira a porcentagem de finalização que este estado representa em relação ao fluxo de trabalho. Utilize números sem o sinal de porcentagem." #: models.py:217 models.py:276 msgid "Workflow state" @@ -265,9 +256,7 @@ msgstr "Quando" #: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "" -"A caminho em Python para a classe de ação do fluxo de trabalho que será " -"executado." +msgstr "A caminho em Python para a classe de ação do fluxo de trabalho que será executado." #: models.py:292 msgid "Entry action path" @@ -393,10 +382,7 @@ msgstr "Chave primária do tipo de documento a ser adicionado." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"API URL que aponta para um tipo de documento em relação ao fluxo de trabalho " -"ao qual está anexado. Esse URL é diferente do URL do tipo de documento " -"canônico." +msgstr "API URL que aponta para um tipo de documento em relação ao fluxo de trabalho ao qual está anexado. Esse URL é diferente do URL do tipo de documento canônico." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -410,9 +396,7 @@ msgstr "Chave primária do estado de origem a ser adicionado." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"API URL que aponta para um fluxo de trabalho em relação ao documento ao qual " -"está anexado. Esse URL é diferente do URL de fluxo de trabalho canônico." +msgstr "API URL que aponta para um fluxo de trabalho em relação ao documento ao qual está anexado. Esse URL é diferente do URL de fluxo de trabalho canônico." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -422,9 +406,7 @@ msgstr "Um link para todo o histórico deste fluxo de trabalho." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Lista separada por vírgulas do tipo de documento chaves primárias às quais " -"este fluxo de trabalho será anexado." +msgstr "Lista separada por vírgulas do tipo de documento chaves primárias às quais este fluxo de trabalho será anexado." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -432,11 +414,9 @@ msgstr "Chave primária da transição a ser adicionada." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " -msgstr "" -"Atribua fluxos de trabalho ao tipo deste documento para que ele execute tais " -"fluxos." +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " +msgstr "Atribua fluxos de trabalho ao tipo deste documento para que ele execute tais fluxos." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -449,7 +429,8 @@ msgstr "Fluxos de trabalho para o documento: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -479,9 +460,7 @@ msgstr "Fazer a transição para o fluxo de trabalho: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" -"Associe um fluxo de trabalho a alguns tipos de documentos e os documentos " -"desses tipos serão listados nesta vista." +msgstr "Associe um fluxo de trabalho a alguns tipos de documentos e os documentos desses tipos serão listados nesta vista." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -496,10 +475,7 @@ msgstr "Documentos com o fluxo de trabalho: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "" -"Crie alguns fluxos de trabalho e associe-os a um tipo de documento. Os " -"fluxos de trabalho ativos e os documentos para os quais eles estão sendo " -"executados serão mostrados aqui." +msgstr "Crie alguns fluxos de trabalho e associe-os a um tipo de documento. Os fluxos de trabalho ativos e os documentos para os quais eles estão sendo executados serão mostrados aqui." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -550,10 +526,7 @@ msgstr "" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "" -"Fluxos de trabalho armazenam uma série de estados e acompanham o estado " -"atual de um documento. Transições são usadas para mudar o estado atual para " -"um novo." +msgstr "Fluxos de trabalho armazenam uma série de estados e acompanham o estado atual de um documento. Transições são usadas para mudar o estado atual para um novo." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -581,10 +554,7 @@ msgstr "Tipos de documentos atribuídos a este fluxo de trabalho" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"Remover um tipo de documento de um fluxo de trabalho também removerá todas " -"as instâncias ativas daquele fluxo de trabalho para os documentos do tipo " -"removido." +msgstr "Remover um tipo de documento de um fluxo de trabalho também removerá todas as instâncias ativas daquele fluxo de trabalho para os documentos do tipo removido." #: views/workflow_views.py:212 #, python-format @@ -608,11 +578,9 @@ msgstr "Editar ação do estado do fluxo de trabalho: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." -msgstr "" -"Ações do estado do fluxo de trabalho são macros que são executadas quando " -"documentos entram ou saem dos estados para os quais elas estão definidas." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." +msgstr "Ações do estado do fluxo de trabalho são macros que são executadas quando documentos entram ou saem dos estados para os quais elas estão definidas." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -663,10 +631,9 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." -msgstr "" -"Crie uma transição e use-a para mover um fluxo de trabalho de um estado para " -"outro." +"Create a transition and use it to move a workflow from one state to " +"another." +msgstr "Crie uma transição e use-a para mover um fluxo de trabalho de um estado para outro." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -680,20 +647,16 @@ msgstr "Transições do fluxo de trabalho: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "" -"Erro ao carregar os eventos acionadores de transição do fluxo de trabalho; %s" +msgstr "Erro ao carregar os eventos acionadores de transição do fluxo de trabalho; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "" -"Eventos acionadores de transição do fluxo de trabalho atualizados com sucesso" +msgstr "Eventos acionadores de transição do fluxo de trabalho atualizados com sucesso" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "" -"Acionadores são eventos que fazem esta transição ser executada " -"automaticamente." +msgstr "Acionadores são eventos que fazem esta transição ser executada automaticamente." #: views/workflow_views.py:698 #, python-format @@ -708,9 +671,7 @@ msgstr "Iniciar todos os fluxos de trabalho?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "" -"Isto iniciará todos os fluxos de trabalho criados após o carregamento dos " -"documentos." +msgstr "Isto iniciará todos os fluxos de trabalho criados após o carregamento dos documentos." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -728,9 +689,7 @@ msgstr "" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "" -"O novo rótulo que será associado ao documento. Pode ser uma string ou um " -"modelo." +msgstr "O novo rótulo que será associado ao documento. Pode ser uma string ou um modelo." #: workflow_actions.py:30 msgid "Document description" @@ -740,9 +699,7 @@ msgstr "" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "" -"A nova descrição que será associada ao documento. Pode ser uma string ou um " -"modelo." +msgstr "A nova descrição que será associada ao documento. Pode ser uma string ou um modelo." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -764,16 +721,11 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"Pode ser um endereço de IP, um domínio ou um modelo. Modelos recebem a " -"instância de entrada de registro do fluxo de trabalho como parte de seus " -"contextos através da variável \"entry_log\". A \"entry_log\" por sua vez " -"provê os atributos \"workflow_instance\", \"datetime\", \"transition\", " -"\"user\", e \"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "Pode ser um endereço de IP, um domínio ou um modelo. Modelos recebem a instância de entrada de registro do fluxo de trabalho como parte de seus contextos através da variável \"entry_log\". A \"entry_log\" por sua vez provê os atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -790,16 +742,11 @@ msgstr "Carga de dados" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"Um documento JSON a ser incluído na requisição. Também pode ser um modelo " -"que retorne um documento JSON. Modelos recebem a instância de entrada de " -"registro do fluxo de trabalho como parte de seus contextos através da " -"variável \"entry_log\". A \"entry_log\" por sua vez provê os atributos " -"\"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "Um documento JSON a ser incluído na requisição. Também pode ser um modelo que retorne um documento JSON. Modelos recebem a instância de entrada de registro do fluxo de trabalho como parte de seus contextos através da variável \"entry_log\". A \"entry_log\" por sua vez provê os atributos \"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo index 69bc8df011600dbdf1067a7fbc0df73fe9296389..ac5f5bb7596c64a51a25598348c808aeae5b7fe6 100644 GIT binary patch delta 3247 zcmY+_c~Dhl7{~DkabdYPMHEm3t|DGRQNblQG8GkbDNGX;Q$s~FKtixIy;^RGxE*oH zr3{rE%SxQgbw<;vCbh|FoT*03naUbRCp6PxrkTD!?)j%PJm>Si=iYPP_kG^yTq>(V z8mdA9H(NKYHjY}N12M6g+0VEkf)hvB6J}Wz z7qA6h#YDW0bMYY-Vt$laU$cN+q!Gu328_n&)@B|C^y4)8eYmIxZAQ&$CnjJGj>Gfl z#g=W%985qDeu|p#In)I1B14#`tywZAVoS!iVKkVOO+Y=U0OPUL?N?zK{oSY)9zY)+ z!S;9=lkhe&hP8+ZKCc66z;x7oL(qpKQ4=b}FvhnvH2k;;^?(y@|1y$w`x`rAXsl*z zmV&z87rSCMreG10G;=Tw51}UZ9X7>!)WH8Bf7X_?2ejwuG&Iv^P!G;WrF;P{!!q~t zde_i)jeBQpQTL5OZOwFKt~L*Ke*l%ywXW4jd07o=A&1+Mf35f=7s#GnMXlsl495ua ztG#N2O|U;|1%ps4n(Fpvptfi^YT&h~8rbCa_n;bjEJHnTHG76j`@mCc;tucvMYvMy)6pm*XYu zkJ)_4_S-Vl3io0f1D?VK^naspw8gm;lFUafpb!K3G&a*vitl1As`8Yg53nzOj?B^S zp)wNJD_D%_sI8dhx(Ib&6_PC5iypjy+S+eXMRyDJ+&_Dff6XL`cZbPZ4r(Rks2Zro zD6B)>cnS5rE67}}0hOUt@<}o*6ZOmXB5G?Y-2NWa0*<4K{HE*uO!D8G3(YxcMgvi` zun>8+ZAI$ME@C*|M*ggxlLkoX6MXO(RO-u7MY|O>;iFiMpP@1`mO-?@QXGR@0yI=S zH_(fZQ3E#b7u>58hM&bz6L~=0-r=ccXgt~7NDx=3xTk#VP!aLXm{ZzIO(@@U| zjG>{bpM)xo6|R-2fwyA})}mH+4mH4!s1=7&flr_hqp>HB!r?d)D{%x~Lsfs=0Jae) z<66D{2?P1Z!-a#$Gwm-_b$4ajT0t%9C-ej+;yKhrZ(tt&fs=6PV6*3O2Qrr3aqXOC z##lBTsXN<&s-3SeUhn@S8r58gW_nBUFwVe~A!fX~wi=b<4^c&S6?qY?0X4C-r-Kv9 zzjr)~rKi>IfF#DGUwJNE{j*pcCqbY;2FuVl#XhHPAv-jVwl`dNt~M zyD$Ndqb6_-Nuu3Dtvq#D@OuSFQfxVDA*V5*nck)mho0fVnWmr~oP!P)pl*1CN?~$# z@bih-fqn^UzzwL>e~IHz8}Ebh$Szq4s-})0FNB>LL4qlGtLK7J?H|dH4vxnr_y|LA zxwA4NHsv*1I{31!Bvk*?iJ8Q9f-l=L=WIk$#}%{=5z0yqae&Ap4iY-vasG{nP2U;p zH2&L~O}muXLy)${|FzI~Y~uX3Gc+=}*=kyq&iu&ugqq+-HWlX)TDFee#6D+#WbZjk zX}wC!CDMp;VgaFqzC`GEOh*;*0-;KnLg<)C6g0MirwZ6g@WTA>sCEW;{N7bud(OSS z#VPXmLpD3rp5!TuxwetmOYCqz7rO{*xACW0{W4;|8XRvB?-Qz}gzWK$@`NU3j!;&5}56c|j>(y^yW=36B7k{jimK72D#nEEt%HYm*v$Oo+{{b=? BX>kAm delta 3202 zcmYk;drVe!9LMqRBZ6{yP((%4M?h2*GXz8wA4Ij)KiDY!p zGVk|@%nRh2Ik(t!w&q`zrJE6!HnFWaoRzuR`@=bZbjJ62{eI_p&iVa*-{1EfeN^eI zsPqMY?$mataU3Ul5(S}Vjkqp?501b6W_dodfADGg*&WRK;C!sc3fzW?9nHe979;U2 zw!@3q3oqk*yp0R6AjT}qENJyKx^bczV=<(YSrh}t;SBnHIH?{ z&OP53`_mtSeQ_3&G~0-&xC=G0udyvQp$5K#{8=bz4{FZ?G?bbg)PM!3l+VCYoa=qx zUtlAqy-N^ZCNm# z22YOVqPAip>iM0AEYg;uQd@~*a2JMPBWfbQqPF4@DuYkFesphluVYcy$D^K#-l!tY zL^2e#d>S#Fn2IFB7NQ2;g8JcM)C=ber0(nnYTy>sfDsgkY9}6bJ`I;)K9W2;k1F!( zs4aPjT5uRQP15t=6xj6Y$2yoE|_Bp;NCrDHV~Uyh`V)`ej;0TPRfMhS!0tVnroQy%G_!Ny3*nmpW8&sa2?={FI?KCPQH&9Q- zpQx<}40aug9q3O$l4G+m3OAt^RD~+KBdGhj&=c+v3p1|>;dYHmPmfdx(!41UqLNkC2G$Pde&nm{VN&dUo(2l2@2OTILp1P z2&pgIg5g+${8=3z8sK--jr~L1)MulLwg@%hw{Rz}LS-bHL9|twI3A~9QUz1i>mHs)Cv|ceZ4wYV=pX2P4oa383UhRa~=?g0~9PguX&eqycrqtEfG`>z$8&*4>hL zREBbKE{;dNA5NjRt_~xDG=89=V)z9^@n6(HzUSQ9Xpc&9SJdxPF@U2{6PSx6&4Q>E zpGW=f0g?pkFv?v>0cxVFup92fU~d}dXy}6L=->m?%FCZO<59JG)c3csC)x|{fB{s> zi?I-^FcBMZ1gZd3OS#B{V1-CM+dHUCe>s{G`-Da#C)!|nKC8x3rz#?@ZwW0Od}(Eb z>V6jSDxn?Z$F|P78j+BsEFL42l`+H-LN#)f(6QU`N5&2M(CxJTbM-pyrNkbBG_}6g zp!Il<&vIu{WOC>xTHBn}kv#&3-LLFrTu5lyIzA@$IcFj>=dEe&yZ^~erM;Y3OngAR zM(F*eV>>aGSWiqRbQBSDTU+kO3aBEs{O_Ea)y~+c6#qtA6TNTVcS@sDd^?59!^w4G!I<%R~ zoJszHz6z(5&v%^~f3okmbJZW`-{1NRHW^pd-S^LlsVhrp32UF8l{h#%XUOonwf$1! K>b}cM3I7jZk6u^+ diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po index 22d5c90670..f0b4bc5bf0 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -203,9 +201,7 @@ msgstr "La ieșire" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Această valoare va fi utilizată de alte aplicații pentru a face referire la " -"acest flux de lucru. Pot conține numai litere, numere și subliniere." +msgstr "Această valoare va fi utilizată de alte aplicații pentru a face referire la acest flux de lucru. Pot conține numai litere, numere și subliniere." #: models.py:45 msgid "Internal name" @@ -223,9 +219,7 @@ msgstr "Stare inițială" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Selectați dacă aceasta va fi starea cu care doriți să înceapă fluxul de " -"lucru. Numai o stare poate fi starea inițială." +msgstr "Selectați dacă aceasta va fi starea cu care doriți să înceapă fluxul de lucru. Numai o stare poate fi starea inițială." #: models.py:205 msgid "Initial" @@ -235,9 +229,7 @@ msgstr "Iniţială" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Introduceți procentul de finalizare pe care această stare îl reprezinta în " -"raport cu fluxul de lucru. Utilizați numere fără semnul procentual." +msgstr "Introduceți procentul de finalizare pe care această stare îl reprezinta în raport cu fluxul de lucru. Utilizați numere fără semnul procentual." #: models.py:217 models.py:276 msgid "Workflow state" @@ -261,9 +253,7 @@ msgstr "Cănd" #: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "" -"Calea Python punctată la clasa de acțiune a fluxului de lucru care trebuie " -"executată." +msgstr "Calea Python punctată la clasa de acțiune a fluxului de lucru care trebuie executată." #: models.py:292 msgid "Entry action path" @@ -389,10 +379,7 @@ msgstr "Cheia primară a tipului de document care urmează să fie adăugată." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"Adresă URL API care indică un tip de document în raport cu fluxul de lucru " -"la care este atașat. Această adresă URL este diferită de URL-ul tipului de " -"document canonic." +msgstr "Adresă URL API care indică un tip de document în raport cu fluxul de lucru la care este atașat. Această adresă URL este diferită de URL-ul tipului de document canonic." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -406,10 +393,7 @@ msgstr "Cheia primară a stării de origine care urmează să fie adăugată." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"Adresă URL API care indică un flux de lucru în raport cu documentul la care " -"este atașat. Această adresă URL este diferită de adresa URL canonică a " -"fluxului de lucru." +msgstr "Adresă URL API care indică un flux de lucru în raport cu documentul la care este atașat. Această adresă URL este diferită de adresa URL canonică a fluxului de lucru." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -419,9 +403,7 @@ msgstr "O legătură către întreaga istorie a acestui flux de lucru." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Listă separată prin virgule de chei primare de tip de documente la care se " -"va atașa acest flux de lucru." +msgstr "Listă separată prin virgule de chei primare de tip de documente la care se va atașa acest flux de lucru." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -429,11 +411,9 @@ msgstr "Cheia primară a tranziției care urmează să fie adăugată." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " -msgstr "" -"Atribuiți fluxurile de lucru la acest tip de document pentru ca acest " -"document să execute acele fluxuri de lucru." +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " +msgstr "Atribuiți fluxurile de lucru la acest tip de document pentru ca acest document să execute acele fluxuri de lucru." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" @@ -446,10 +426,9 @@ msgstr "Fluxuri de lucru pentru documentul: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." -msgstr "" -"Această vizualizare va afișa modificările de stare pe măsură ce o instanță a " -"fluxului de lucru este tranziționată." +"This view will show the state changes as a workflow instance is " +"transitioned." +msgstr "Această vizualizare va afișa modificările de stare pe măsură ce o instanță a fluxului de lucru este tranziționată." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" @@ -478,9 +457,7 @@ msgstr "Execută tranziția pentru fluxul de lucru: %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" -"Asociați un flux de lucru cu unele tipuri de documente și documente de acele " -"tipuri vor fi listate în această vizualizare." +msgstr "Asociați un flux de lucru cu unele tipuri de documente și documente de acele tipuri vor fi listate în această vizualizare." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -495,10 +472,7 @@ msgstr "Documentele cu fluxul de lucru: %s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "" -"Creați câteva fluxuri de lucru și asociați-le cu un tip de document. " -"Fluxurile de lucru active vor fi afișate aici precum și documentele pentru " -"care se execută." +msgstr "Creați câteva fluxuri de lucru și asociați-le cu un tip de document. Fluxurile de lucru active vor fi afișate aici precum și documentele pentru care se execută." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -506,7 +480,7 @@ msgstr "Nu există fluxuri de lucru" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Nu există documente în această stare de lucru" #: views/workflow_proxy_views.py:97 #, python-format @@ -538,9 +512,7 @@ msgstr "Fluxurile de lucru atribuite acestui tip de document" msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "" -"Eliminarea unui flux de lucru dintr-un tip de document va elimina, de " -"asemenea, toate instanțele care rulează din acel flux de lucru." +msgstr "Eliminarea unui flux de lucru dintr-un tip de document va elimina, de asemenea, toate instanțele care rulează din acel flux de lucru." #: views/workflow_views.py:87 #, python-format @@ -551,10 +523,7 @@ msgstr "Fluxurile de lucru atribuite tipului de document: %s" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "" -"Fluxurile de lucru stochează o serie de stări și urmăresc starea actuală a " -"unui document. Tranzițiile sunt folosite pentru a schimba starea curentă la " -"una nouă." +msgstr "Fluxurile de lucru stochează o serie de stări și urmăresc starea actuală a unui document. Tranzițiile sunt folosite pentru a schimba starea curentă la una nouă." #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -582,10 +551,7 @@ msgstr "Tipurile de documente atribuite acestui flux de lucru" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"Înlăturarea unui tip de document dintr-un flux de lucru va elimina, de " -"asemenea, toate instanțele în execuție ale acelui flux de lucru pentru " -"documentele de tipul documentului tocmai eliminat." +msgstr "Înlăturarea unui tip de document dintr-un flux de lucru va elimina, de asemenea, toate instanțele în execuție ale acelui flux de lucru pentru documentele de tipul documentului tocmai eliminat." #: views/workflow_views.py:212 #, python-format @@ -609,11 +575,9 @@ msgstr "Editați acțiunea de stare a fluxului de lucru: %s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." -msgstr "" -"Acțiunile de stare a fluxului de lucru sunt macrocomenzi care se execută " -"atunci când documentele intră sau părăsesc starea în care se află." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." +msgstr "Acțiunile de stare a fluxului de lucru sunt macrocomenzi care se execută atunci când documentele intră sau părăsesc starea în care se află." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" @@ -664,10 +628,9 @@ msgstr "Editați tranziția fluxului de lucru: %s" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." -msgstr "" -"Creați o tranziție și utilizați-o pentru a muta un flux de lucru dintr-o " -"stare în alta." +"Create a transition and use it to move a workflow from one state to " +"another." +msgstr "Creați o tranziție și utilizați-o pentru a muta un flux de lucru dintr-o stare în alta." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -681,20 +644,16 @@ msgstr "Tranzițiile fluxului de lucru: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "" -"Eroare la actualizarea evenimentelor de declanșare a fluxului de lucru; %s" +msgstr "Eroare la actualizarea evenimentelor de declanșare a fluxului de lucru; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "" -"Evenimentele de declanșare a fluxului de lucru au fost actualizate cu succes" +msgstr "Evenimentele de declanșare a fluxului de lucru au fost actualizate cu succes" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "" -"Declanșatoarele sunt evenimente care determină ca această tranziție să fie " -"executată automat." +msgstr "Declanșatoarele sunt evenimente care determină ca această tranziție să fie executată automat." #: views/workflow_views.py:698 #, python-format @@ -709,9 +668,7 @@ msgstr "Lansați toate fluxurile de lucru?" msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "" -"Aceasta va lansa toate fluxurile de lucru create după ce documentele au fost " -"deja încărcate." +msgstr "Aceasta va lansa toate fluxurile de lucru create după ce documentele au fost deja încărcate." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." @@ -729,9 +686,7 @@ msgstr "Etichetele documentului" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "" -"Noua etichetă care va fi atribuită documentului. Poate fi un șir sau un " -"șablon." +msgstr "Noua etichetă care va fi atribuită documentului. Poate fi un șir sau un șablon." #: workflow_actions.py:30 msgid "Document description" @@ -741,9 +696,7 @@ msgstr "Descrierea documentului" msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "" -"Noua descriere care trebuie atribuită documentului. Poate fi un șir sau un " -"șablon." +msgstr "Noua descriere care trebuie atribuită documentului. Poate fi un șir sau un șablon." #: workflow_actions.py:40 msgid "Modify the properties of the document" @@ -765,15 +718,11 @@ msgstr "URL" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"Poate fi o adresă IP, un domeniu sau un șablon. Șabloanele primesc instanța " -"înregistrării fluxului de lucru ca parte a contextului lor prin intermediul " -"variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele " -"\"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "Poate fi o adresă IP, un domeniu sau un șablon. Șabloanele primesc instanța înregistrării fluxului de lucru ca parte a contextului lor prin intermediul variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele \"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." #: workflow_actions.py:103 msgid "Timeout" @@ -790,16 +739,11 @@ msgstr "Încărcătură utilă" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"Un document JSON care trebuie inclus în cerere. Poate fi, de asemenea, un " -"șablon care returnează un document JSON. Șabloanele primesc instanța " -"înregistrării fluxului de lucru ca parte a contextului lor prin intermediul " -"variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele " -"\"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "Un document JSON care trebuie inclus în cerere. Poate fi, de asemenea, un șablon care returnează un document JSON. Șabloanele primesc instanța înregistrării fluxului de lucru ca parte a contextului lor prin intermediul variabilei \"entry_log\". \"Entry_log\", la rândul său, oferă atributele \"workflow_instance\", \"datetime\", \"transition\", \"user\" și \"comment\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo index c1c3450194ede511b8bcd7b691ab5e2fa3e40003..4d90b33ac8b996052ab072b7b0023ef661bb4f98 100644 GIT binary patch delta 21 ccmZqYZ|C1IoteYPQo+E?%E)l@eC8L-07I(=O#lD@ delta 21 ccmZqYZ|C1IoteYXRKdX9%EWT>eC8L-07JC~Qvd(} diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po index 48fa317148..ef216aadc8 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 @@ -414,8 +411,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -429,7 +426,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -577,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -630,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -719,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -740,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo index 4054a24d99e8f35d3ad609b00f5c49cc2fd12b70..e0abda3251d73718383080f3315c4c40f39769ea 100644 GIT binary patch delta 21 dcmX@Zc7|=k5=IUqO9cZnD& delta 21 dcmX@Zc7|=k5=IU~Qw0NaD-+AjYZw, 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -202,9 +201,7 @@ msgstr "" msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" -"Bu değer, bu iş akışını referans olarak diğer uygulamalar tarafından " -"kullanılacaktır. Yalnızca harf, rakam ve altçizgi içerebilir." +msgstr "Bu değer, bu iş akışını referans olarak diğer uygulamalar tarafından kullanılacaktır. Yalnızca harf, rakam ve altçizgi içerebilir." #: models.py:45 msgid "Internal name" @@ -222,9 +219,7 @@ msgstr "İlk durum" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Bunun, iş akışının başlatılmasını istediğiniz durum olup olmayacağını seçin. " -"Başlangıç ​​durumu yalnızca bir durum olabilir." +msgstr "Bunun, iş akışının başlatılmasını istediğiniz durum olup olmayacağını seçin. Başlangıç ​​durumu yalnızca bir durum olabilir." #: models.py:205 msgid "Initial" @@ -234,9 +229,7 @@ msgstr "ilk" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"İş akışıyla ilişkili olarak bu durumun temsil ettiği tamamlama yüzdesini " -"girin. Yüzde işareti olmadan rakamları kullanın." +msgstr "İş akışıyla ilişkili olarak bu durumun temsil ettiği tamamlama yüzdesini girin. Yüzde işareti olmadan rakamları kullanın." #: models.py:217 models.py:276 msgid "Workflow state" @@ -386,9 +379,7 @@ msgstr "Belge türünün birincil anahtarı eklenecek." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"Bağlı olduğu iş akışıyla ilişkili olarak bir doküman türünü işaret eden API " -"URL'si. Bu URL, yasal çerçeve türü URL'inden farklı." +msgstr "Bağlı olduğu iş akışıyla ilişkili olarak bir doküman türünü işaret eden API URL'si. Bu URL, yasal çerçeve türü URL'inden farklı." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -402,9 +393,7 @@ msgstr "Kaynak durumun birincil anahtarı eklenecek." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "" -"Bağlı olduğu dokümana ilişkin bir iş akışını işaret eden API URL'si. Bu URL, " -"kurallı iş akışı URL'inden farklı." +msgstr "Bağlı olduğu dokümana ilişkin bir iş akışını işaret eden API URL'si. Bu URL, kurallı iş akışı URL'inden farklı." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -414,9 +403,7 @@ msgstr "Bu iş akışının tüm geçmişi ile bağlantı." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" -"Bu iş akışının ekleneceği belge türü birincil anahtarlarının virgülle " -"ayrılmış listesi." +msgstr "Bu iş akışının ekleneceği belge türü birincil anahtarlarının virgülle ayrılmış listesi." #: serializers.py:319 msgid "Primary key of the transition to be added." @@ -424,8 +411,8 @@ msgstr "Geçişin birincil anahtarı eklenecek." #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -439,7 +426,8 @@ msgstr "Belge için iş akışı: %s" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -587,8 +575,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -640,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -729,10 +718,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -750,10 +739,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo index 13dd98a3be04fe80d2633eec6ad6f9f78df564fd..d8df0018f84ea604bfc618ee78a6f40757c255fc 100644 GIT binary patch delta 21 ccmbQsI+t~WF(ZeOrGkN(m673QYsMr-06d)q5dZ)H delta 21 ccmbQsI+t~WF(Zeese*yIm5JqMYsMr-06eD!7XSbN diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po index de33d9c14d..fd6d19484e 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -411,8 +410,8 @@ msgstr "" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "" #: views/workflow_instance_views.py:48 @@ -426,7 +425,8 @@ msgstr "" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -574,8 +574,8 @@ msgstr "" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "" #: views/workflow_views.py:371 @@ -627,7 +627,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "" #: views/workflow_views.py:639 @@ -716,10 +717,10 @@ msgstr "" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:103 @@ -737,10 +738,10 @@ msgstr "" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." msgstr "" #: workflow_actions.py:125 diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo index 538c9fd15df2fe76646083ffca33fcd697c797f7..05c476aa33bb8559b4023774ca05ac6b1c13f79d 100644 GIT binary patch delta 21 dcmcbbdo_2%GbIiqO9cZnD2#^2( delta 21 dcmcbbdo_2%GbIi~Qw0NaD-+Aj@06Yk0{~`02$lc< diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po index 392cccdc05..c88fbf9fa9 100644 --- a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:62 events.py:8 links.py:17 links.py:46 links.py:149 links.py:176 @@ -380,8 +379,7 @@ msgstr "要添加的文档类型的主键。" msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "" -"API URL指向与其连接的工作流相关的文档类型。此URL与规范文档类型URL不同。" +msgstr "API URL指向与其连接的工作流相关的文档类型。此URL与规范文档类型URL不同。" #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -413,8 +411,8 @@ msgstr "要添加的流转的主键。" #: views/workflow_instance_views.py:44 msgid "" -"Assign workflows to the document type of this document to have this document " -"execute those workflows. " +"Assign workflows to the document type of this document to have this document" +" execute those workflows. " msgstr "将工作流分配给此文档的文档类型,以使此文档执行这些工作流。" #: views/workflow_instance_views.py:48 @@ -428,7 +426,8 @@ msgstr "文件:%s的工作流" #: views/workflow_instance_views.py:83 msgid "" -"This view will show the state changes as a workflow instance is transitioned." +"This view will show the state changes as a workflow instance is " +"transitioned." msgstr "" #: views/workflow_instance_views.py:87 @@ -473,9 +472,7 @@ msgstr "具有工作流的文档:%s" msgid "" "Create some workflows and associated them with a document type. Active " "workflows will be shown here and the documents for which they are executing." -msgstr "" -"创建一些工作流并将其与文档类型相关联。此处将显示活动工作流以及它们正在执行的" -"文档。" +msgstr "创建一些工作流并将其与文档类型相关联。此处将显示活动工作流以及它们正在执行的文档。" #: views/workflow_proxy_views.py:74 msgid "There are no workflows" @@ -526,8 +523,7 @@ msgstr "" msgid "" "Workflows store a series of states and keep track of the current state of a " "document. Transitions are used to change the current state to a new one." -msgstr "" -"工作流存储一系列状态并跟踪文档的当前状态。流转用于将当前状态更改为新状态。" +msgstr "工作流存储一系列状态并跟踪文档的当前状态。流转用于将当前状态更改为新状态。" #: views/workflow_views.py:137 msgid "No workflows have been defined" @@ -555,8 +551,7 @@ msgstr "分配此工作流的文档类型" msgid "" "Removing a document type from a workflow will also remove all running " "instances of that workflow for documents of the document type just removed." -msgstr "" -"从工作流中删除文档类型还将删除属于其的文档的工作流中所有正在运行的实例。" +msgstr "从工作流中删除文档类型还将删除属于其的文档的工作流中所有正在运行的实例。" #: views/workflow_views.py:212 #, python-format @@ -580,8 +575,8 @@ msgstr "编辑工作流状态操作:%s" #: views/workflow_views.py:367 msgid "" -"Workflow state actions are macros that get executed when documents enters or " -"leaves the state in which they reside." +"Workflow state actions are macros that get executed when documents enters or" +" leaves the state in which they reside." msgstr "工作流状态操作是在文档进入或离开它们所处的状态时执行的宏。" #: views/workflow_views.py:371 @@ -633,7 +628,8 @@ msgstr "" #: views/workflow_views.py:635 msgid "" -"Create a transition and use it to move a workflow from one state to another." +"Create a transition and use it to move a workflow from one state to " +"another." msgstr "创建流转并使用它将工作流从一个状态移至另一个状态。" #: views/workflow_views.py:639 @@ -722,14 +718,11 @@ msgstr "网址" #: workflow_actions.py:93 msgid "" -"Can be an IP address, a domain or a template. Templates receive the workflow " -"log entry instance as part of their context via the variable \"entry_log\". " -"The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\", " -"\"transition\", \"user\", and \"comment\" attributes." -msgstr "" -"可以是IP地址,域或模板。模板通过变量“entry_log”接收工作流日志条目实例作为其上" -"下文的一部分。 “entry_log”又提" -"供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" +"Can be an IP address, a domain or a template. Templates receive the workflow" +" log entry instance as part of their context via the variable \"entry_log\"." +" The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", and \"comment\" attributes." +msgstr "可以是IP地址,域或模板。模板通过变量“entry_log”接收工作流日志条目实例作为其上下文的一部分。 “entry_log”又提供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" #: workflow_actions.py:103 msgid "Timeout" @@ -746,14 +739,11 @@ msgstr "有效载荷" #: workflow_actions.py:112 msgid "" "A JSON document to include in the request. Can also be a template that " -"return a JSON document. Templates receive the workflow log entry instance as " -"part of their context via the variable \"entry_log\". The \"entry_log\" in " -"turn provides the \"workflow_instance\", \"datetime\", \"transition\", \"user" -"\", and \"comment\" attributes." -msgstr "" -"要包含在请求中的JSON文档。也可以是返回JSON文档的模板。模板通过变" -"量“entry_log”接收工作流日志条目实例作为其上下文的一部分。 “entry_log”又提" -"供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" +"return a JSON document. Templates receive the workflow log entry instance as" +" part of their context via the variable \"entry_log\". The \"entry_log\" in " +"turn provides the \"workflow_instance\", \"datetime\", \"transition\", " +"\"user\", and \"comment\" attributes." +msgstr "要包含在请求中的JSON文档。也可以是返回JSON文档的模板。模板通过变量“entry_log”接收工作流日志条目实例作为其上下文的一部分。 “entry_log”又提供“workflow_instance”,“datetime”,“transition”,“user”和“comment”属性。" #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index acb803f1d8..6eca4ef700 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Yaman Sanobar , 2019 msgid "" @@ -11,17 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "الوثائق" @@ -33,9 +32,7 @@ msgstr "انشاء نوع وثيقة" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"كل وثيقة ترفع يجب ان يحدد لها نوع \"نوع الوثيقة\", انها الطريقة الاساسية " -"التي يقوم مايان اي دي ام اس بها بترتيب الوثائق. " +msgstr "كل وثيقة ترفع يجب ان يحدد لها نوع \"نوع الوثيقة\", انها الطريقة الاساسية التي يقوم مايان اي دي ام اس بها بترتيب الوثائق. " #: apps.py:151 msgid "Versions comment" @@ -136,8 +133,8 @@ msgstr "ضغط" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -149,9 +146,7 @@ msgstr "اسم الملف المضغوط" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار " -"السابق" +msgstr "اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار السابق" #: forms/document_forms.py:85 msgid "Quick document rename" @@ -539,7 +534,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -599,8 +595,8 @@ msgstr "ملف" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -794,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -952,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -987,8 +984,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1028,8 +1025,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1246,8 +1242,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1256,8 +1252,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index 1a78eb08cf..c3ba45b80d 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,16 +10,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Документи" @@ -132,8 +132,8 @@ msgstr "Компресиране" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -145,9 +145,7 @@ msgstr "Име на компресирания архив" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Името на компресирания архив, съдържащ документите за сваляне, ако " -"предишната опция е избрана." +msgstr "Името на компресирания архив, съдържащ документите за сваляне, ако предишната опция е избрана." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -329,9 +327,7 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Изчистване на графичното представяне, използвано да ускори изобразяването на " -"документите и интерактивните промени." +msgstr "Изчистване на графичното представяне, използвано да ускори изобразяването на документите и интерактивните промени." #: links.py:274 msgid "Clear document image cache" @@ -513,9 +509,7 @@ msgstr "" #: models/document_page_models.py:253 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" -"Страница %(page_num)d от общо %(total_pages)d страници от %(document)s " -"документи." +msgstr "Страница %(page_num)d от общо %(total_pages)d страници от %(document)s документи." #: models/document_page_models.py:286 msgid "Date time" @@ -539,7 +533,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -599,8 +594,8 @@ msgstr "Файл" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -794,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -831,8 +826,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Градуси на завъртане на страница от документ, при потребителско действие" +msgstr "Градуси на завъртане на страница от документ, при потребителско действие" #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -850,23 +844,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Максимален процент (%) допустим за интерактивно увеличаване страницата от " -"потребителя" +msgstr "Максимален процент (%) допустим за интерактивно увеличаване страницата от потребителя" #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Минимален процент (%) допустим за интерактивно смаляване страницата от " -"потребителя" +msgstr "Минимален процент (%) допустим за интерактивно смаляване страницата от потребителя" #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Процент приближавани или отдалечаване на страницата на документа, приложен " -"за потребителя" +msgstr "Процент приближавани или отдалечаване на страницата на документа, приложен за потребителя" #: statistics.py:18 msgid "January" @@ -959,9 +947,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -994,8 +983,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1035,8 +1024,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1218,9 +1206,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Грешка при изтриването на преобразования на страница на документ " -"%(document)s, %(error)s." +msgstr "Грешка при изтриването на преобразования на страница на документ %(document)s, %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1243,8 +1229,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1253,8 +1239,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po index 32b0a3b78f..24d6febd7c 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # Ilvana Dollaroviq , 2018 @@ -12,17 +12,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumenti" @@ -34,9 +33,7 @@ msgstr "Kreirajte tip dokumenta" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Svaki uploadovani dokument mora biti dodeljen tipu dokumenta, to je osnovni " -"način koji Maian EDMS kategorizuje dokumente." +msgstr "Svaki uploadovani dokument mora biti dodeljen tipu dokumenta, to je osnovni način koji Maian EDMS kategorizuje dokumente." #: apps.py:151 msgid "Versions comment" @@ -137,13 +134,10 @@ msgstr "Kompresuj" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Preuzmite dokument u originalnom formatu ili na kompresivan način. Ova " -"opcija se može izabrati samo prilikom preuzimanja jednog dokumenta, za više " -"dokumenata, paket će uvek biti preuzet kao komprimirana datoteka." +msgstr "Preuzmite dokument u originalnom formatu ili na kompresivan način. Ova opcija se može izabrati samo prilikom preuzimanja jednog dokumenta, za više dokumenata, paket će uvek biti preuzet kao komprimirana datoteka." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -153,9 +147,7 @@ msgstr "Naziv kompresovane datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako " -"je ova opcija odabrana." +msgstr "Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako je ova opcija odabrana." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -233,10 +225,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Uzima produžetak datoteke i pomera je do kraja imena datoteke koja omogućava " -"operativne sisteme koji se oslanjaju na produžetak datoteka da bi ispravno " -"otvorili preuzetu verziju dokumenta." +msgstr "Uzima produžetak datoteke i pomera je do kraja imena datoteke koja omogućava operativne sisteme koji se oslanjaju na produžetak datoteka da bi ispravno otvorili preuzetu verziju dokumenta." #: links.py:66 msgid "Preview" @@ -340,9 +329,7 @@ msgstr "Kanta za smeće" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i " -"interaktivnu transformaciju rezultata." +msgstr "Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i interaktivnu transformaciju rezultata." #: links.py:274 msgid "Clear document image cache" @@ -492,10 +479,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Stub dokumenta je dokument sa unosom u bazu podataka, ali datoteka nije " -"otpremljena. Ovo bi moglo biti prekinuto otpremanje ili odloženo otpremanje " -"preko API-ja." +msgstr "Stub dokumenta je dokument sa unosom u bazu podataka, ali datoteka nije otpremljena. Ovo bi moglo biti prekinuto otpremanje ili odloženo otpremanje preko API-ja." #: models/document_models.py:84 msgid "Is stub?" @@ -551,9 +535,9 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Količina vremena nakon koje će se dokumenti ove vrste prebaciti u smeće." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Količina vremena nakon koje će se dokumenti ove vrste prebaciti u smeće." #: models/document_type_models.py:38 msgid "Trash time period" @@ -567,8 +551,7 @@ msgstr "Jedinica za otpatke" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Količina vremena nakon čega će se dokumenti ove vrste u smeću izbrisati." +msgstr "Količina vremena nakon čega će se dokumenti ove vrste u smeću izbrisati." #: models/document_type_models.py:48 msgid "Delete time period" @@ -613,8 +596,8 @@ msgstr "Datoteka" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -793,17 +776,13 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Onemogućava prvu tačku keša koja skladišti visoke rezolucije, nepreformirane " -"verzije dokumenata." +msgstr "Onemogućava prvu tačku keša koja skladišti visoke rezolucije, nepreformirane verzije dokumenata." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Onemogućava drugi sloj keša koji čuva medije do niske rezolucije, " -"transformiše (rotira, zumira, itd.) Verzije stranica dokumenata." +msgstr "Onemogućava drugi sloj keša koji čuva medije do niske rezolucije, transformiše (rotira, zumira, itd.) Verzije stranica dokumenata." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -812,18 +791,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"Otkrijte orijentaciju svake stranice dokumenta i kreirajte odgovarajuću " -"transformaciju rotacije da biste je prikazali. Ovo je eksperimentalna " -"funkcija i ona je podrazumevano onemogućena." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "Otkrijte orijentaciju svake stranice dokumenta i kreirajte odgovarajuću transformaciju rotacije da biste je prikazali. Ovo je eksperimentalna funkcija i ona je podrazumevano onemogućena." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -870,17 +846,13 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu " -"dokumenta." +msgstr "Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu dokumenta." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu " -"dokumenta." +msgstr "Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu dokumenta." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -964,10 +936,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" -"\n" -"                    Stranica %(page_number)s od %(total_pages)s\n" -"                " +msgstr "\n                    Stranica %(page_number)s od %(total_pages)s\n                " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -980,9 +949,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1015,8 +985,8 @@ msgstr "Dokumenti tipa: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1052,15 +1022,12 @@ msgstr "Kreirajte brzu etiketu za tip dokumenta: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Izbrišite brzu etiketu: %(label)s, iz dokumenta tipa \"%(document_type)s\"?" +msgstr "Izbrišite brzu etiketu: %(label)s, iz dokumenta tipa \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Izmenite brzi znak \"%(filename)s\" iz dokumenta tipa \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Izmenite brzi znak \"%(filename)s\" iz dokumenta tipa \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1196,8 +1163,7 @@ msgstr "%(count)d dokument stavljen u red za ponovni izračun broja stranica" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "" -"%(count)d dokumenti postavljeni redom za ponovni izračun broja stranica" +msgstr "%(count)d dokumenti postavljeni redom za ponovni izračun broja stranica" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" @@ -1268,8 +1234,8 @@ msgstr "Štampa: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1278,8 +1244,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po index 81b202e467..c89f046557 100644 --- a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,17 +10,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumenty" @@ -133,8 +132,8 @@ msgstr "" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -534,7 +533,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +594,8 @@ msgstr "" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -947,9 +947,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -982,8 +983,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1023,8 +1024,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1235,8 +1235,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1245,8 +1245,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po index 1ede1cc6c1..c0e5ed98c1 100644 --- a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumenter" @@ -133,8 +133,8 @@ msgstr "" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -534,7 +534,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -594,8 +595,8 @@ msgstr "Fil" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -789,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -947,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -982,8 +984,8 @@ msgstr "Dokumenter af type: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1023,8 +1025,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1229,8 +1230,8 @@ msgstr "Print %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1239,8 +1240,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po index 58f45280ca..fbb9d645ff 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Felix , 2018 @@ -17,16 +17,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumente" @@ -38,9 +38,7 @@ msgstr "Dokumententyp erstellen" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da " -"Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert." +msgstr "Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert." #: apps.py:151 msgid "Versions comment" @@ -141,13 +139,10 @@ msgstr "Komprimieren" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese " -"Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. " -"Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." +msgstr "Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -157,9 +152,7 @@ msgstr "Name der komprimierten Datei" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, " -"wenn die vorherige Option gewählt wurde." +msgstr "Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, wenn die vorherige Option gewählt wurde." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -173,10 +166,7 @@ msgstr "Erweiterung beibehalten" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es " -"Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das " -"Dokument korrekt zu öffnen." +msgstr "Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das Dokument korrekt zu öffnen." #: forms/document_forms.py:147 msgid "Date added" @@ -240,10 +230,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es " -"Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das " -"heruntergeladene Dokument korrekt zu öffnen." +msgstr "Setzt die Dateierweiterung an das Ende des Dateinamens. Dies erlaubt es Betriebssystemen, die Dateierweiterungen für die Verarbeitung benötigen, das heruntergeladene Dokument korrekt zu öffnen." #: links.py:66 msgid "Preview" @@ -347,9 +334,7 @@ msgstr "Papierkorb" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Grafiken löschen, die benutzt werden um die Dokumentendarstellung und " -"interaktive Transformationsausgabe zu beschleunigen." +msgstr "Grafiken löschen, die benutzt werden um die Dokumentendarstellung und interaktive Transformationsausgabe zu beschleunigen." #: links.py:274 msgid "Clear document image cache" @@ -468,9 +453,7 @@ msgstr "Beschreibung" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"Datum und Uhrzeit in Serverzeit, zu dem das Dokument auf dem System " -"verarbeitet wurde." +msgstr "Datum und Uhrzeit in Serverzeit, zu dem das Dokument auf dem System verarbeitet wurde." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -490,8 +473,7 @@ msgstr "Im Papierkorb?" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "" -"Datum und Uhrzeit, zu dem das Dokument in den Papierkorb verschoben wurde." +msgstr "Datum und Uhrzeit, zu dem das Dokument in den Papierkorb verschoben wurde." #: models/document_models.py:77 msgid "Date and time trashed" @@ -502,10 +484,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das " -"keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener " -"Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." +msgstr "Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." #: models/document_models.py:84 msgid "Is stub?" @@ -561,10 +540,9 @@ msgstr "Name des Dokumententyps." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben " -"werden." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben werden." #: models/document_type_models.py:38 msgid "Trash time period" @@ -578,9 +556,7 @@ msgstr "Einheit (Papierkorb)" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden " -"endgültig gelöscht werden." +msgstr "Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden endgültig gelöscht werden." #: models/document_type_models.py:48 msgid "Delete time period" @@ -625,12 +601,9 @@ msgstr "Datei" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"Der MIME-Typ der Datei der Dokumentenversion. MIME-Typen sind eine " -"standardisierte Art zur Beschreibung des Dateiformats, in diesem Fall des " -"Dokuments. Besipiele: \"text/plain\" oder \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "Der MIME-Typ der Datei der Dokumentenversion. MIME-Typen sind eine standardisierte Art zur Beschreibung des Dateiformats, in diesem Fall des Dokuments. Besipiele: \"text/plain\" oder \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -640,9 +613,7 @@ msgstr "MIME Typ" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "" -"Die Kodierung der Datei der Dokumentenversion. binary 7-bit, binary 8-bit, " -"text, base64, etc." +msgstr "Die Kodierung der Datei der Dokumentenversion. binary 7-bit, binary 8-bit, text, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -804,26 +775,19 @@ msgstr "Pfad zu der Speicherklasse für die Speicherung des Bildercaches." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." -msgstr "" -"Argumente, die an das DOCUMENT_CACHE_STORAGE_BACKEND weitergeleitet werden." +msgstr "Argumente, die an das DOCUMENT_CACHE_STORAGE_BACKEND weitergeleitet werden." #: settings.py:34 msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Deaktiviert die erste Cache-Ebene, die für die Speicherung der " -"hochauflösenden, nicht transformierten Versionen von Dokumentenseiten " -"zuständig ist." +msgstr "Deaktiviert die erste Cache-Ebene, die für die Speicherung der hochauflösenden, nicht transformierten Versionen von Dokumentenseiten zuständig ist." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Deaktiviert die zweite Cache-Ebene, die für die Speicherung der mittel- und " -"niedrigauflösenden, transformierten (gedeht, gezoomt, etc.) Versionen von " -"Dokumentenseiten zuständig ist." +msgstr "Deaktiviert die zweite Cache-Ebene, die für die Speicherung der mittel- und niedrigauflösenden, transformierten (gedeht, gezoomt, etc.) Versionen von Dokumentenseiten zuständig ist." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -832,23 +796,16 @@ msgstr "Maximale Anzahl von Favoriten pro Benutzer." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"Erkennung der Ausrichtung von Dokumentenseiten und Erstellung einer " -"entsprechenden Rotationstransformation, um die Seite in der korrekten " -"Ausrichtung anzuzeigen. Dies ist eine experimentelle Eigenschaft, weshalb " -"sie standardmäßig deaktiviert ist." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "Erkennung der Ausrichtung von Dokumentenseiten und Erstellung einer entsprechenden Rotationstransformation, um die Seite in der korrekten Ausrichtung anzuzeigen. Dies ist eine experimentelle Eigenschaft, weshalb sie standardmäßig deaktiviert ist." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." -msgstr "" -"Blockgröße die für die Berechnung der Dokumentenprüfsumme verwendet wird. " -"Der Wert 0 verhindert die Berücksichtigung von Blöcken und das gesamte " -"Dokument wird in den Speicher geladen." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." +msgstr "Blockgröße die für die Berechnung der Dokumentenprüfsumme verwendet wird. Der Wert 0 verhindert die Berücksichtigung von Blöcken und das gesamte Dokument wird in den Speicher geladen." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -862,22 +819,17 @@ msgstr "Liste der unterstützten Dokumentensprachen. In ISO639-3 Format." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "" -"Zeit in Sekunden, die der Browser die übermittelten Dokumentengraphiken im " -"Cache speichern sollte. Der Standard von 31559626 Sekunden entspricht 1 Jahr." +msgstr "Zeit in Sekunden, die der Browser die übermittelten Dokumentengraphiken im Cache speichern sollte. Der Standard von 31559626 Sekunden entspricht 1 Jahr." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "" -"Maximale Anzahl der letztens zugegriffenen (erstellten, bearbeiteten, " -"angesehenen) Dokumente, die pro Benutzer gemerkt werden sollen." +msgstr "Maximale Anzahl der letztens zugegriffenen (erstellten, bearbeiteten, angesehenen) Dokumente, die pro Benutzer gemerkt werden sollen." #: settings.py:112 msgid "Maximum number of recently created documents to show." -msgstr "" -"Maximale Anzahl der letztens erstellten Dokumente, die angezeigt werden soll." +msgstr "Maximale Anzahl der letztens erstellten Dokumente, die angezeigt werden soll." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." @@ -885,14 +837,11 @@ msgstr "Gradzahl, die ein Dokument pro Benutzer Aktion gedreht wird." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "" -"Pfad zur Speicher-Unterklasse (Storage subclass) für die Speicherung der " -"Dokumentendateien." +msgstr "Pfad zur Speicher-Unterklasse (Storage subclass) für die Speicherung der Dokumentendateien." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." -msgstr "" -"Argumente, die an das DOCUMENT_STORAGE_BACKEND übergeben werden sollen." +msgstr "Argumente, die an das DOCUMENT_STORAGE_BACKEND übergeben werden sollen." #: settings.py:136 msgid "Height in pixels of the document thumbnail image." @@ -912,8 +861,7 @@ msgstr "Minimaler erlaubter Zoom in %, den Benutzer interaktiv wählen können." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." +msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." #: statistics.py:18 msgid "January" @@ -993,10 +941,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" -"\n" -" Seite %(page_number)s von %(total_pages)s\n" -" " +msgstr "\n Seite %(page_number)s von %(total_pages)s\n " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -1009,14 +954,11 @@ msgstr "Unbekannte Sprache \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." -msgstr "" -"Das könnte bedeuten, dass das Format des Dokuments nicht unterstützt ist, " -"dass es beschädigt ist oder dass der Uploadpozess unterbrochen wurde. " -"Verwenden Sie die Neuberechnung der Seitenzahl für einen " -"Aktualisierungsversuch." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." +msgstr "Das könnte bedeuten, dass das Format des Dokuments nicht unterstützt ist, dass es beschädigt ist oder dass der Uploadpozess unterbrochen wurde. Verwenden Sie die Neuberechnung der Seitenzahl für einen Aktualisierungsversuch." #: views/document_page_views.py:59 msgid "No document pages available" @@ -1048,14 +990,10 @@ msgstr "Dokumente des Typs: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "" -"Dokumententypen sind grundlegensten Elemente der Konfiguration. Alle " -"weiteren Programmeinheiten des Systems hängen davon ab. Definieren Sie einen " -"Dokumententyp für jede Dokumentenart, die Sie hochzuladen beabsichtigen. " -"Beispiele sind: Rechnung, Beleg, Handbuch, Vorschrift, Bilanz." +msgstr "Dokumententypen sind grundlegensten Elemente der Konfiguration. Alle weiteren Programmeinheiten des Systems hängen davon ab. Definieren Sie einen Dokumententyp für jede Dokumentenart, die Sie hochzuladen beabsichtigen. Beispiele sind: Rechnung, Beleg, Handbuch, Vorschrift, Bilanz." #: views/document_type_views.py:77 msgid "No document types available" @@ -1089,27 +1027,19 @@ msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" +msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " -"bearbeiten" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "" -"Schnellbezeichner sind voreingestellte Dateinamen, die eine schnelle " -"Umbenennung von Dokumenten beim Hochladen ermöglichen, indem man sie von " -"einer Liste auswählt. Schnellbezeichner können auch nach dem Hochladen von " -"Dokumenten angewendet werden." +msgstr "Schnellbezeichner sind voreingestellte Dateinamen, die eine schnelle Umbenennung von Dokumenten beim Hochladen ermöglichen, indem man sie von einer Liste auswählt. Schnellbezeichner können auch nach dem Hochladen von Dokumenten angewendet werden." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1161,10 +1091,7 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "" -"Das könnte bedeuten, dass keine Dokumente hochgeladen wurden oder dass Ihr " -"Benutzerkonto nicht die notwendigen Berechtigungen hat, um Dokumente oder " -"Dokumententypen anzusehen." +msgstr "Das könnte bedeuten, dass keine Dokumente hochgeladen wurden oder dass Ihr Benutzerkonto nicht die notwendigen Berechtigungen hat, um Dokumente oder Dokumententypen anzusehen." #: views/document_views.py:94 msgid "No documents available" @@ -1258,9 +1185,7 @@ msgstr "Seitenzahl neu berechnen für Dokument: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "" -"Dokument \"%(document)s\" hat keinen Inhalt. Laden Sie wenigstens eine " -"Dokumentenversion hoch, bevor Sie versuchen die Seitenzahl zu ermitteln." +msgstr "Dokument \"%(document)s\" hat keinen Inhalt. Laden Sie wenigstens eine Dokumentenversion hoch, bevor Sie versuchen die Seitenzahl zu ermitteln." #: views/document_views.py:492 #, python-format @@ -1288,8 +1213,7 @@ msgstr "Transformationen zurücksetzen für Dokument: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s." +msgstr "Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1312,13 +1236,9 @@ msgstr "%s drucken" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." -msgstr "" -"Duplikate sind Dokumente, die von exakt derselben (byte-identischen) Datei " -"stammen. Dateien mit demselben Text oder OCR-Ergebnis, aber mit nicht exakt " -"identischer Ursprungsdatei oder einem unterschiedlichen Speicherformat " -"werden nicht als Duplikate geführt." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." +msgstr "Duplikate sind Dokumente, die von exakt derselben (byte-identischen) Datei stammen. Dateien mit demselben Text oder OCR-Ergebnis, aber mit nicht exakt identischer Ursprungsdatei oder einem unterschiedlichen Speicherformat werden nicht als Duplikate geführt." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1326,11 +1246,9 @@ msgstr "Keine Duplikate vorhanden" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." -msgstr "" -"Diese Sicht zeigt die letzten in diesem Benutzerkonto angesehenen oder " -"irgendwie bearbeiteten Bilder." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." +msgstr "Diese Sicht zeigt die letzten in diesem Benutzerkonto angesehenen oder irgendwie bearbeiteten Bilder." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1349,9 +1267,7 @@ msgstr "Keine zuletzt hinzugefügten Dokumente vorhanden" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "" -"Favoriten werden in dieser Ansicht gelistet. Bis zu %(count)d Dokumente " -"werden pro Benutzer als Favoriten gemerkt." +msgstr "Favoriten werden in dieser Ansicht gelistet. Bis zu %(count)d Dokumente werden pro Benutzer als Favoriten gemerkt." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1463,10 +1379,7 @@ msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "" -"Um Datenverlust zu verhindern werden Dokumente nicht sofort gelöscht, " -"sondern in den Papierkorb verschoben. Von hier aus können sie dann endgültig " -"gelöscht oder wiederhergestellt werden." +msgstr "Um Datenverlust zu verhindern werden Dokumente nicht sofort gelöscht, sondern in den Papierkorb verschoben. Von hier aus können sie dann endgültig gelöscht oder wiederhergestellt werden." #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" diff --git a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po index 0c09b844b2..580c43abea 100644 --- a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Hmayag Antonian , 2018 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Έγγραφα" @@ -32,9 +32,7 @@ msgstr "Δημιουργία τύπου εγγράφου" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Σε κάθε έγγραφο που ανεβάσατε πρέπει να ανατεθεί ένας τύπος εγγράφου. Αυτός " -"είναι ο βασικός τρόπος κατηγοριοποίησης που χρησιμοποιεί το Mayan ΕDMS " +msgstr "Σε κάθε έγγραφο που ανεβάσατε πρέπει να ανατεθεί ένας τύπος εγγράφου. Αυτός είναι ο βασικός τρόπος κατηγοριοποίησης που χρησιμοποιεί το Mayan ΕDMS " #: apps.py:151 msgid "Versions comment" @@ -135,13 +133,10 @@ msgstr "Συμπίεση" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Κατέβασμα του αρχείου στη αρχική μορφή ή συμπιεσμένο. Η επιλογή αυτή είναι " -"εφικτή μόνο όταν κατεβάζετε ένα έγγραφο. Τα πολλαπλά έγγραφα συμπιέζονται " -"από το σύστημα σε ένα αρχείο." +msgstr "Κατέβασμα του αρχείου στη αρχική μορφή ή συμπιεσμένο. Η επιλογή αυτή είναι εφικτή μόνο όταν κατεβάζετε ένα έγγραφο. Τα πολλαπλά έγγραφα συμπιέζονται από το σύστημα σε ένα αρχείο." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -151,9 +146,7 @@ msgstr "Όνομα συμπιεσμένου αρχείου" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Το όνομα του συμπιεσμένου αρχείου που θα περιέχει τα έγγραφα που επιλέχθηκαν " -"για κατέβασμα, αν η επιλογή για συμπίεση είναι ενεργή. " +msgstr "Το όνομα του συμπιεσμένου αρχείου που θα περιέχει τα έγγραφα που επιλέχθηκαν για κατέβασμα, αν η επιλογή για συμπίεση είναι ενεργή. " #: forms/document_forms.py:85 msgid "Quick document rename" @@ -231,9 +224,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Μεταφέρει την επέκταση του αρχείου στο τέλος ώστε λειτουργικά συστήματα που " -"χρειάζονται την επέκταση να διαχειρίζονται το αρχείο σωστά." +msgstr "Μεταφέρει την επέκταση του αρχείου στο τέλος ώστε λειτουργικά συστήματα που χρειάζονται την επέκταση να διαχειρίζονται το αρχείο σωστά." #: links.py:66 msgid "Preview" @@ -337,9 +328,7 @@ msgstr "Απορρίμματα" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Καθαριμός της γραφικής απεικόνισης που χρησιμοποιείται για την ταχύτερη " -"εμφάνιση εγγράφων και των αποτελεσμάτων μετασχηματισμών." +msgstr "Καθαριμός της γραφικής απεικόνισης που χρησιμοποιείται για την ταχύτερη εμφάνιση εγγράφων και των αποτελεσμάτων μετασχηματισμών." #: links.py:274 msgid "Clear document image cache" @@ -489,11 +478,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Απομεινάρι είναι ένα έγγραφο για το οποίο υπάρχει καταχώρηση στην βάση " -"δεδομένων αλλά δεν υπάρχει το έγγραφο καθεαυτό. Αυτό μπορεί να συμβεί αν η " -"μεταφόρτωση/ανέβασμα έχει διακοπεί ή αν έγινε καταχώρηση του εγγράφου μέσω " -"API και θα μεταφορτωθεί αργότερα." +msgstr "Απομεινάρι είναι ένα έγγραφο για το οποίο υπάρχει καταχώρηση στην βάση δεδομένων αλλά δεν υπάρχει το έγγραφο καθεαυτό. Αυτό μπορεί να συμβεί αν η μεταφόρτωση/ανέβασμα έχει διακοπεί ή αν έγινε καταχώρηση του εγγράφου μέσω API και θα μεταφορτωθεί αργότερα." #: models/document_models.py:84 msgid "Is stub?" @@ -549,10 +534,9 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα μετακινούνται " -"στα απορρίμματα." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα μετακινούνται στα απορρίμματα." #: models/document_type_models.py:38 msgid "Trash time period" @@ -566,9 +550,7 @@ msgstr "Μονάδα μέτρησης χρόνου για μεταφορά στ msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα διαγράφονται " -"από τα απορρίμματα" +msgstr "Χρονική περίοδος πέραν της οποίας έγγραφα αυτού του τύπου θα διαγράφονται από τα απορρίμματα" #: models/document_type_models.py:48 msgid "Delete time period" @@ -613,8 +595,8 @@ msgstr "Αρχείο" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -793,18 +775,13 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Απενεργοποιεί το πρώτο επίπεδο μνήμης όπου αποθηκεύονται σελίδες εγγράφων " -"μεγάλης ανάλυσης που δεν έχουν ετασχηματιστεί." +msgstr "Απενεργοποιεί το πρώτο επίπεδο μνήμης όπου αποθηκεύονται σελίδες εγγράφων μεγάλης ανάλυσης που δεν έχουν ετασχηματιστεί." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Απενεργοποιεί το δεύτερο επίπεδο μνήμης όπου αποθηκεύονται εκδόσεις σελίδων " -"εγγράφων μεσαίας και μικρής ανάλυσης, μετασχηματισμένες (με περιστροφή, " -"ζουμαρισμένες, κλπ)" +msgstr "Απενεργοποιεί το δεύτερο επίπεδο μνήμης όπου αποθηκεύονται εκδόσεις σελίδων εγγράφων μεσαίας και μικρής ανάλυσης, μετασχηματισμένες (με περιστροφή, ζουμαρισμένες, κλπ)" #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -813,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -850,9 +827,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Αριθμός μοιρών για περιστροφή μιας σελίδας εγγράφου από τον χρήστη ανά " -"αλληλεπίδραση" +msgstr "Αριθμός μοιρών για περιστροφή μιας σελίδας εγγράφου από τον χρήστη ανά αλληλεπίδραση" #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -876,8 +851,7 @@ msgstr "Μέγιστο επιτρεπτό ποσοστό (%) μεγένθυνσ msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Ελλάχιστο επιτρεπτό ποσοστό (%) σμύκρινσης σε μια σελίδα από τονχρήστη." +msgstr "Ελλάχιστο επιτρεπτό ποσοστό (%) σμύκρινσης σε μια σελίδα από τονχρήστη." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -974,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1009,8 +984,8 @@ msgstr "Έγγραφα τύπου: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1046,17 +1021,12 @@ msgstr "Δημηουργία γρήγορης ετικέτας στον τύπο #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Διαγραφή της γρήγορης ετικέτας: %(label)s, απότον τύπο εγγράφων " -"\"%(document_type)s\";" +msgstr "Διαγραφή της γρήγορης ετικέτας: %(label)s, απότον τύπο εγγράφων \"%(document_type)s\";" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Τροποποίηση γρήγορης ετικέτας \"%(filename)s\" από τον τύπο εγγράφων " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Τροποποίηση γρήγορης ετικέτας \"%(filename)s\" από τον τύπο εγγράφων \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1224,10 +1194,8 @@ msgstr "Αίτημα καθαρισμού μετασχηματισμών ολο #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "" -"Καθαρισμός όλων των μετασχηματισμών σελίδας για το επιλεγμένο έγγραφο: %s;" -msgstr[1] "" -"Καθαρισμός όλων των μετασχηματισμών σελίδας για τα επιλεγμένα έγγραφα: %s;" +msgstr[0] "Καθαρισμός όλων των μετασχηματισμών σελίδας για το επιλεγμένο έγγραφο: %s;" +msgstr[1] "Καθαρισμός όλων των μετασχηματισμών σελίδας για τα επιλεγμένα έγγραφα: %s;" #: views/document_views.py:514 #, python-format @@ -1239,9 +1207,7 @@ msgstr "Καθαρισμός όλων των μετασχηματισμών σε msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Σφάλμα κατά την διαγραφή των μετασχηματισμών σελίδας για το έγγραφο: " -"%(document)s, %(error)s." +msgstr "Σφάλμα κατά την διαγραφή των μετασχηματισμών σελίδας για το έγγραφο: %(document)s, %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1264,8 +1230,8 @@ msgstr "Εκτύπωση: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1274,8 +1240,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 @@ -1360,8 +1326,7 @@ msgstr "Αναζήτηση για διπλότυπα έγγραφα;" #: views/misc_views.py:39 msgid "Duplicated document scan queued successfully." -msgstr "" -"Αίτημα αναζήτησης για διπλότυπα έγγραφα καταχωρήθηκε στην λίστα με επιτυχία." +msgstr "Αίτημα αναζήτησης για διπλότυπα έγγραφα καταχωρήθηκε στην λίστα με επιτυχία." #: views/trashed_document_views.py:39 #, python-format diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 2d0f44ffb4..00b2f38f7b 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015-2019 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:55+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documentos" @@ -32,9 +32,7 @@ msgstr "Crear tipo un tipo de documento" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Cada documento cargado debe tener asignado un tipo de documento, es la forma " -"básica en que Mayan EDMS clasifica los documentos." +msgstr "Cada documento cargado debe tener asignado un tipo de documento, es la forma básica en que Mayan EDMS clasifica los documentos." #: apps.py:151 msgid "Versions comment" @@ -135,14 +133,10 @@ msgstr "Comprimir" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Descargue el documento en el formato original o en una forma comprimida. " -"Esta opción se puede seleccionar sólo cuando se descarga un documento. Para " -"múltiples documentos, el paquete será siempre descargado en un archivo " -"comprimido." +msgstr "Descargue el documento en el formato original o en una forma comprimida. Esta opción se puede seleccionar sólo cuando se descarga un documento. Para múltiples documentos, el paquete será siempre descargado en un archivo comprimido." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -152,9 +146,7 @@ msgstr "Nombre de archivo comprimido" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"El nombre del archivo comprimido que va a contener los documentos a " -"descargar, si la opción anterior está activada." +msgstr "El nombre del archivo comprimido que va a contener los documentos a descargar, si la opción anterior está activada." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -168,10 +160,7 @@ msgstr "Preservar la extensión" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"Toma la extensión de archivo y la mueve al final del nombre de archivo, lo " -"que permite que los sistemas operativos que dependen de las extensiones de " -"archivo abran el documento correctamente." +msgstr "Toma la extensión de archivo y la mueve al final del nombre de archivo, lo que permite que los sistemas operativos que dependen de las extensiones de archivo abran el documento correctamente." #: forms/document_forms.py:147 msgid "Date added" @@ -222,9 +211,7 @@ msgstr "Rango de páginas" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "" -"Número de página a partir del cual se clonarán todas las transformaciones. " -"Se perderán las transformaciones existentes." +msgstr "Número de página a partir del cual se clonarán todas las transformaciones. Se perderán las transformaciones existentes." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -237,10 +224,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Toma la extensión de archivo y la mueve al final del nombre de archivo " -"permitiendo que los sistemas operativos que dependen de las extensiones de " -"archivo abran correctamente la versión del documento descargado." +msgstr "Toma la extensión de archivo y la mueve al final del nombre de archivo permitiendo que los sistemas operativos que dependen de las extensiones de archivo abran correctamente la versión del documento descargado." #: links.py:66 msgid "Preview" @@ -344,10 +328,7 @@ msgstr "Papelera" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Borrar las representaciones gráficas utilizadas para acelerar la " -"presentación de los documentos y resultados de las transformaciones " -"interactivas." +msgstr "Borrar las representaciones gráficas utilizadas para acelerar la presentación de los documentos y resultados de las transformaciones interactivas." #: links.py:274 msgid "Clear document image cache" @@ -442,9 +423,7 @@ msgstr "Todas las páginas" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "" -"UUID de un documento, ID único universalmente. Un identificador único " -"generado para cada documento." +msgstr "UUID de un documento, ID único universalmente. Un identificador único generado para cada documento." #: models/document_models.py:49 msgid "The name of the document." @@ -468,9 +447,7 @@ msgstr "Descripción" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"La fecha y hora del servidor en que finalmente se procesó el documento y se " -"agregó al sistema." +msgstr "La fecha y hora del servidor en que finalmente se procesó el documento y se agregó al sistema." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -490,8 +467,7 @@ msgstr "¿En la papelera?" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "" -"La fecha y hora del servidor cuando el documento fue movido a la papelera." +msgstr "La fecha y hora del servidor cuando el documento fue movido a la papelera." #: models/document_models.py:77 msgid "Date and time trashed" @@ -502,10 +478,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Un recibo de documento es un documento con una entrada en la base de datos " -"pero ningún archivo subido. Esto podría ser una subida interrumpida o una " -"subida diferida a través de la API." +msgstr "Un recibo de documento es un documento con una entrada en la base de datos pero ningún archivo subido. Esto podría ser una subida interrumpida o una subida diferida a través de la API." #: models/document_models.py:84 msgid "Is stub?" @@ -561,10 +534,9 @@ msgstr "El nombre del tipo de documento." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la " -"papelera." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la papelera." #: models/document_type_models.py:38 msgid "Trash time period" @@ -578,9 +550,7 @@ msgstr "Unidad de tiempo de envío a papelera" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de " -"la papelera." +msgstr "Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de la papelera." #: models/document_type_models.py:48 msgid "Delete time period" @@ -604,8 +574,7 @@ msgstr "Etiqueta rapida" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "" -"La fecha y hora del servidor cuando se procesó la versión del documento." +msgstr "La fecha y hora del servidor cuando se procesó la versión del documento." #: models/document_version_models.py:79 msgid "Timestamp" @@ -626,12 +595,9 @@ msgstr "Archivo" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"El tipo de archivo de la versión del documento. Los tipos MIME son una forma " -"estándar de describir el formato de un archivo, en este caso el formato de " -"archivo del documento. Algunos ejemplos: \"text/plain\" o \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "El tipo de archivo de la versión del documento. Los tipos MIME son una forma estándar de describir el formato de un archivo, en este caso el formato de archivo del documento. Algunos ejemplos: \"text/plain\" o \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -641,9 +607,7 @@ msgstr "Tipo MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "" -"La codificación del archivo de la versión del documento. Binario de 7 bits, " -"binario de 8 bits, texto, base64, etc." +msgstr "La codificación del archivo de la versión del documento. Binario de 7 bits, binario de 8 bits, texto, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -801,9 +765,7 @@ msgstr "Escanear documentos duplicados" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "" -"Ruta a la subclase Storage para usar cuando se almacenan los archivos de " -"imagen del documento en caché." +msgstr "Ruta a la subclase Storage para usar cuando se almacenan los archivos de imagen del documento en caché." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -813,18 +775,13 @@ msgstr "Argumentos para pasar al DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Deshabilita el primer nivel de caché que almacena las versiones de las " -"páginas de documentos que no son transformadas de alta resolución." +msgstr "Deshabilita el primer nivel de caché que almacena las versiones de las páginas de documentos que no son transformadas de alta resolución." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Deshabilita el segundo nivel de memoria caché que almacena versiones de " -"páginas de documentos de media a baja resolución, transformadas (giradas, " -"ampliadas, etc.)." +msgstr "Deshabilita el segundo nivel de memoria caché que almacena versiones de páginas de documentos de media a baja resolución, transformadas (giradas, ampliadas, etc.)." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -833,22 +790,16 @@ msgstr "Número máximo de documentos favoritos para recordar por usuario." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"Detecta la orientación de cada una de las páginas del documento y crea una " -"transformación de rotación correspondiente para mostrarla a la derecha. Esta " -"es una función experimental y está deshabilitada por defecto." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "Detecta la orientación de cada una de las páginas del documento y crea una transformación de rotación correspondiente para mostrarla a la derecha. Esta es una función experimental y está deshabilitada por defecto." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." -msgstr "" -"Tamaño de los bloques que se utilizarán al calcular la suma de comprobación " -"del archivo de documento. Un valor de 0 desactiva el cálculo de bloque y " -"todo el archivo se cargará en la memoria." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." +msgstr "Tamaño de los bloques que se utilizarán al calcular la suma de comprobación del archivo de documento. Un valor de 0 desactiva el cálculo de bloque y todo el archivo se cargará en la memoria." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -862,18 +813,13 @@ msgstr "Lista de idiomas de documentos apoyados. En formato ISO639-3." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "" -"Tiempo en segundos que el navegador debe almacenar en caché las imágenes del " -"documento suministradas. El valor predeterminado de 31559626 segundos " -"corresponde a 1 año." +msgstr "Tiempo en segundos que el navegador debe almacenar en caché las imágenes del documento suministradas. El valor predeterminado de 31559626 segundos corresponde a 1 año." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "" -"Número máximo de documentos recientemente accedidos (creados, editados, " -"vistos) para recordar por usuario." +msgstr "Número máximo de documentos recientemente accedidos (creados, editados, vistos) para recordar por usuario." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -881,15 +827,11 @@ msgstr "Número máximo de documentos creados recientemente para mostrar." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Cantidad de grados que se va a girar una página de documento por cada acción " -"del usuario." +msgstr "Cantidad de grados que se va a girar una página de documento por cada acción del usuario." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "" -"Ruta a la subclase Storage para usar cuando se almacenan archivos de " -"documentos." +msgstr "Ruta a la subclase Storage para usar cuando se almacenan archivos de documentos." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -903,23 +845,17 @@ msgstr "Altura en píxeles de la imagen en miniatura del documento." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página " -"del documento de forma interactiva." +msgstr "Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página del documento de forma interactiva." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página " -"del documento de forma interactiva." +msgstr "Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página del documento de forma interactiva." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Cantidad en porcentaje a acercar o alejar una página de documento por cada " -"interacción del usuario." +msgstr "Cantidad en porcentaje a acercar o alejar una página de documento por cada interacción del usuario." #: statistics.py:18 msgid "January" @@ -999,10 +935,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" -"\n" -" Página %(page_number)s de %(total_pages)s\n" -" " +msgstr "\n Página %(page_number)s de %(total_pages)s\n " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -1015,14 +948,11 @@ msgstr "Idioma desconocido \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." -msgstr "" -"Esto podría significar que el documento tiene un formato que no es " -"compatible, que está dañado o que el proceso de carga se interrumpió. " -"Utilice la acción de recálculo de la página del documento para intentar " -"realizar una introspección del recuento de páginas nuevamente." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." +msgstr "Esto podría significar que el documento tiene un formato que no es compatible, que está dañado o que el proceso de carga se interrumpió. Utilice la acción de recálculo de la página del documento para intentar realizar una introspección del recuento de páginas nuevamente." #: views/document_page_views.py:59 msgid "No document pages available" @@ -1054,14 +984,10 @@ msgstr "Documentos de tipo: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "" -"Los tipos de documentos son las unidades de configuración más básicas. Todo " -"en el sistema dependerá de ellos. Defina un tipo de documento para cada tipo " -"de documento físico que desee cargar. Tipos de documentos de ejemplo: " -"factura, recibo, manual, receta, balance." +msgstr "Los tipos de documentos son las unidades de configuración más básicas. Todo en el sistema dependerá de ellos. Defina un tipo de documento para cada tipo de documento físico que desee cargar. Tipos de documentos de ejemplo: factura, recibo, manual, receta, balance." #: views/document_type_views.py:77 msgid "No document types available" @@ -1095,28 +1021,19 @@ msgstr "Crear una etiqueta rápida para el tipo de documento: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"¿Eliminar la etiqueta rápida: %(label)s, del tipo de documento " -"\"%(document_type)s\"?" +msgstr "¿Eliminar la etiqueta rápida: %(label)s, del tipo de documento \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Editar etiqueta rápida \"%(filename)s\" del tipo de documento " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Editar etiqueta rápida \"%(filename)s\" del tipo de documento \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "" -"Las etiquetas rápidas son nombres de archivo predeterminados que permiten el " -"cambio de nombre rápido de documentos a medida que se cargan al " -"seleccionarlos de una lista. Las etiquetas rápidas también se pueden usar " -"después de cargar los documentos." +msgstr "Las etiquetas rápidas son nombres de archivo predeterminados que permiten el cambio de nombre rápido de documentos a medida que se cargan al seleccionarlos de una lista. Las etiquetas rápidas también se pueden usar después de cargar los documentos." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1168,10 +1085,7 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "" -"Esto podría significar que no se han cargado documentos o que su cuenta de " -"usuario no ha recibido el permiso de visualización para ningún documento o " -"tipo de documento." +msgstr "Esto podría significar que no se han cargado documentos o que su cuenta de usuario no ha recibido el permiso de visualización para ningún documento o tipo de documento." #: views/document_views.py:94 msgid "No documents available" @@ -1180,14 +1094,12 @@ msgstr "No hay documentos disponibles" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "" -"Solicitud de cambio de tipo de documento realizada en el documento %(count)d" +msgstr "Solicitud de cambio de tipo de documento realizada en el documento %(count)d" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "" -"Solicitud de cambio de tipo de documento realizada en %(count)d documentos" +msgstr "Solicitud de cambio de tipo de documento realizada en %(count)d documentos" #: views/document_views.py:117 msgid "Change" @@ -1255,8 +1167,7 @@ msgstr "%(count)d documentos en cola para el recuento de total de páginas" msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "¿Volver a calcular el total de páginas del documento seleccionado?" -msgstr[1] "" -"¿Volver a calcular el total de páginas de los documentos seleccionados?" +msgstr[1] "¿Volver a calcular el total de páginas de los documentos seleccionados?" #: views/document_views.py:463 #, python-format @@ -1268,29 +1179,23 @@ msgstr "¿Volver a calcular el total de páginas del documento: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "" -"El documento \"%(document)s\" está vacío. Cargue al menos una versión del " -"documento antes de intentar detectar el número de páginas." +msgstr "El documento \"%(document)s\" está vacío. Cargue al menos una versión del documento antes de intentar detectar el número de páginas." #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "" -"Solicitud de borrar transformaciones, procesada para %(count)d documento" +msgstr "Solicitud de borrar transformaciones, procesada para %(count)d documento" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "" -"Solicitud de borrar transformaciones procesada para %(count)d documentos" +msgstr "Solicitud de borrar transformaciones procesada para %(count)d documentos" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "" -"¿Borrar todas las transformaciones de página para el documento seleccionado?" -msgstr[1] "" -"¿Borrar todas las transformaciones de página para el documento seleccionado?" +msgstr[0] "¿Borrar todas las transformaciones de página para el documento seleccionado?" +msgstr[1] "¿Borrar todas las transformaciones de página para el documento seleccionado?" #: views/document_views.py:514 #, python-format @@ -1302,9 +1207,7 @@ msgstr "¿Borrar todas las transformaciones de página para el documento: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Error al eliminar las transformaciones de página para el documento: " -"%(document)s; %(error)s." +msgstr "Error al eliminar las transformaciones de página para el documento: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1327,13 +1230,9 @@ msgstr "Imprimir: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." -msgstr "" -"Los duplicados son documentos que se componen del mismo archivo exacto, " -"hasta el último byte. Los archivos que tienen el mismo texto u OCR pero que " -"no son idénticos o que se guardaron con un formato de archivo diferente no " -"aparecerán como duplicados." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." +msgstr "Los duplicados son documentos que se componen del mismo archivo exacto, hasta el último byte. Los archivos que tienen el mismo texto u OCR pero que no son idénticos o que se guardaron con un formato de archivo diferente no aparecerán como duplicados." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1341,11 +1240,9 @@ msgstr "No hay documentos duplicados" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." -msgstr "" -"Esta vista enumerará los últimos documentos visualizados o manipulados de " -"alguna manera por esta cuenta de usuario." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." +msgstr "Esta vista enumerará los últimos documentos visualizados o manipulados de alguna manera por esta cuenta de usuario." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1353,9 +1250,7 @@ msgstr "No hay documentos accedidos recientemente" #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "" -"Esta vista mostrará una lista de los últimos documentos cargados en el " -"sistema." +msgstr "Esta vista mostrará una lista de los últimos documentos cargados en el sistema." #: views/document_views.py:736 msgid "There are no recently added document" @@ -1366,9 +1261,7 @@ msgstr "No hay documento agregado recientemente" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "" -"Los documentos favoritos se enumerarán en esta vista. Hasta %(count)d " -"documentos pueden ser preferidos por usuario." +msgstr "Los documentos favoritos se enumerarán en esta vista. Hasta %(count)d documentos pueden ser preferidos por usuario." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1480,10 +1373,7 @@ msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "" -"Para evitar la pérdida de datos, los documentos no se eliminan al instante. " -"Primero, se colocan en el bote de basura. Desde aquí, pueden ser finalmente " -"eliminados o restaurados." +msgstr "Para evitar la pérdida de datos, los documentos no se eliminan al instante. Primero, se colocan en el bote de basura. Desde aquí, pueden ser finalmente eliminados o restaurados." #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 318c557bc7..3b7f845b03 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "اسناد" @@ -32,9 +32,7 @@ msgstr "نوع سند را ایجاد کنید" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"هر سند آپلود شده باید یک نوع سند اختصاص داده شود، این شیوه اصلی Mayan EDMS " -"اسناد را دسته بندی می کند." +msgstr "هر سند آپلود شده باید یک نوع سند اختصاص داده شود، این شیوه اصلی Mayan EDMS اسناد را دسته بندی می کند." #: apps.py:151 msgid "Versions comment" @@ -135,13 +133,10 @@ msgstr "فشرده سازی" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"سند را در فرمت اصلی یا به صورت فشرده دانلود کنید. این گزینه فقط هنگام دانلود " -"یک سند انتخاب می شود، برای چندین اسناد، بسته نرم افزاری همیشه به عنوان یک " -"فایل فشرده در دسترس خواهد بود." +msgstr "سند را در فرمت اصلی یا به صورت فشرده دانلود کنید. این گزینه فقط هنگام دانلود یک سند انتخاب می شود، برای چندین اسناد، بسته نرم افزاری همیشه به عنوان یک فایل فشرده در دسترس خواهد بود." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -151,9 +146,7 @@ msgstr "نام فایل فشرده شده" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که " -"قراراست که دانلود شوند." +msgstr "اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که قراراست که دانلود شوند." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -231,9 +224,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"فرمت فایل را می گیرد و آن را به انتهای نام فایل منتقل می کند تا سیستم عامل " -"هایی را که بر روی پسوندهای فایل تکیه دارند، به درستی باز می کند." +msgstr "فرمت فایل را می گیرد و آن را به انتهای نام فایل منتقل می کند تا سیستم عامل هایی را که بر روی پسوندهای فایل تکیه دارند، به درستی باز می کند." #: links.py:66 msgid "Preview" @@ -337,9 +328,7 @@ msgstr "سطل زباله می تواند" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده " -"قرار میگیرد." +msgstr "پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده قرار میگیرد." #: links.py:274 msgid "Clear document image cache" @@ -489,9 +478,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"یک مستند سند یک سند با یک ورودی در پایگاه داده است اما هیچ فایل آپلود نشده " -"است. این می تواند آپلود متوقف شده یا آپلود معلق از طریق API باشد." +msgstr "یک مستند سند یک سند با یک ورودی در پایگاه داده است اما هیچ فایل آپلود نشده است. این می تواند آپلود متوقف شده یا آپلود معلق از طریق API باشد." #: models/document_models.py:84 msgid "Is stub?" @@ -547,7 +534,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "مقدار زمان که پس از آن اسناد این نوع به سطل زباله منتقل می شود." #: models/document_type_models.py:38 @@ -607,8 +595,8 @@ msgstr "فایل" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -787,17 +775,13 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"اولین سطر ذخیره سازی که نسخه های با وضوح بالا و بدون تغییرات صفحات اسناد را " -"ذخیره می کند را غیرفعال می کند." +msgstr "اولین سطر ذخیره سازی که نسخه های با وضوح بالا و بدون تغییرات صفحات اسناد را ذخیره می کند را غیرفعال می کند." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"محدوده دوم حافظه پنهان که محتویات نسخه های با وضوح متوسط ​​و پایین را تغییر " -"داده (چرخش، زوم و ...) صفحات اسناد را غیرفعال می کند." +msgstr "محدوده دوم حافظه پنهان که محتویات نسخه های با وضوح متوسط ​​و پایین را تغییر داده (چرخش، زوم و ...) صفحات اسناد را غیرفعال می کند." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -806,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -861,17 +845,13 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت " -"تعاملی" +msgstr "حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت " -"تعاملی" +msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -968,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1003,8 +984,8 @@ msgstr "اسناد نوع: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1044,10 +1025,8 @@ msgstr "برچسب سریع: %(label)s را از نوع سند \"%(document_type #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"برچسب سریع \"%(filename)s\" را از نوع سند \"%(document_type)s\" ویرایش کنید" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "برچسب سریع \"%(filename)s\" را از نوع سند \"%(document_type)s\" ویرایش کنید" #: views/document_type_views.py:253 msgid "" @@ -1251,8 +1230,8 @@ msgstr "چاپ : %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1261,8 +1240,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo index 50372a32b9a4b197893157bb6e7ba1c0a6e4dd7e..5a35b5db47f09f255427ed5d4775fb7abf426601 100644 GIT binary patch delta 6704 zcmZA53w+P@9>?+TTy|v_+ic9`KQp_s&D`hC6wPgxT*Ag?#%!~{g;f7Uk}hb-5uG9; z%IT=65NA=GgHtLL%B@bxbW&6}o!9&S`+7Wj^nLj3`Tc(Xzu))wz5f2Q#lQKiyXoUO z)2QAGLu%_|Ofy^%V9YY|-#1dNG3iZ=8H^d&20hk|*opFCOvZXmjY+^X>pj?6*JBFq zz&JdQtVelW z9e+p7NIKJ?j(0}gH_$o(^_(hXvduyqgfGQ0|2br?P@(czhoTzFM{TM~)ReA9 zJ$NI&kFViWbhCjL;u%y2i`sAxmSHNMwFc9e+RsAGP)-8#uT7Irg{Hm?wKk7qFmAB* zZ=gnW6m|VY?2cEl2c|P^`n=4#05#RCQ61QZYVQ>K`WSNw)sY`PNyc!3OkK_poixoc z1pA|=JP$Q9<53ToVat!9u3L@%_zJ3>?e_D-c%1TAs0Zz2!)U|@F&a;!HoNB<8TGU^ z-3-L8_$Bs7%|vUis)xN%H)f+Y(|A;aRj83Yj_S}V)TZ5p1Mou(!jN`sNQ^;0Ohh{F zG3jK6P|+3nXBP2;Wi>mn98aMObJCnWG2QAx&CD{Kj4z>PEGXTXkw{d>TVO+svu2sTM9*w)0qRv1iX5bQ3fA@JW;|!oC`UI-~XHm_6Ypq4SEv}-j`xVulIyBZ5 z8=%SqP}dE^yK!U&bI^^Sxj2%t2XpZ=)OeCIoep`Cj-nVbQwXjlhlMH5jY>y8>pAJm8kVPDKey$@HQX6^`Tg-_b@ zMbrp?K(%`f_27n#sy9aAa2$n=@D&dkJzzI#B>Pb#xriF+EmVU+ot!NehH5Yt)qxb$ zh&o{;=3+2TL3L~vYANUAVO)y5vCMeh@{Q3mj|{uVtiq}IA%0SMh9{#h zR-qpF0FJ_EP#wC28qhTyg8##49Lz@0eUq^bPRA&nf#qb>)2*nU?nJ(2%zo5JFW?JU zi)vsA8)iAK#4VVTj= z4H%1uF$u5Oa+6-pH$)b)!A&9R`W2`{yBk;IIqZ!O@?!$-K@Fq@PkjUvQROYT#zW>! zGFp?|zRqt0Rj4I+4x8&j)C?U&I&D5h`eefUISsots6F#KY9M=& z6Ku|)_DEPZ^RI@RWYc>eW&u+uuO8q`?E%#0ti>E`afees4Yf4Yn1Q=-FkZ3sJ??bg z@Ws{@sCH_sSMdPlxPi>SrtZ6ePLF=Vc9d`8cuX1OjASwTQGOmZ(v7H*zlZEQ^D(M} z!FM?`G!{owF2yN$0LNk)7Y)ZJP#r(*A;U&BA#`8oJO|ZaE^_qE)3*M7^rw6XWAPY{ z#Gg@Xp2Jz=K$v@xRW#3{I`{=9U@fxEOyi+!SR93k=&2>sj7-!pXESxcWt2yw_QEC9 zX7i)lTEhVtgoPN06{ur17aQUV)LvR|-GjRCBu3zM)Po!3dVkaOn2ux`P%$0j@qSc8 zFQAs@HPqDaM9s`zTYnR^d3{GXr>7aZDEC5MEG8d&;cT3SJFyH~=Q*EOW30~q7BXt+ zFlOR;)Ci;QcBVWI&rwdrN(^D%H{c_vB}u%8|2bd=cEY!iNi~--1bd8fUbTZUlyV_z zNvbeO=YK7kF#G`H@FZ%=ZlP|7VJET7CKXvmb3baz4`LLax8)m{Mmchfv-a7T#;F>G z;nXi;2e!pE$U!rQ(9?)a=)KNV$6*ZRw%8a4TJurY%|b2BVr-48P}lFqSRQoJmT!!6 zu8-mf>AGa>hC@;9EJn@T+VRYPGj7~SMGGowCO99QL+yo27>i-~&bMPGs$(NiGcXmC zaRKJyHq-;^6gZnL618`dQ4eg7MVN)WM9qr@%)c@hsCXC?COT8N30qP=fm(uJP)igr ziRs4}RKqJ#4L@(oFQcY<8%AIaCgKUy{XT`x8!_D4%0osMWMB%8K~3>OY=+Bi`E}F- z-?M&z^(Y@jb>I{9#nTv!7qA~*MV+F~47(ooK~~8Oz`p2NPsUB=Ys|tilbv6^RwA=+ zR$~SJhT3e?ik+pIj|r4FqxQf@*c30LuJfPbY+@H`Ks~V)=3p$ABTMKp%gE@4Em$9G z&>s(?AAXFyB+cj85fe(BB^if0US+7MeF$~`Qq&$cHs8c8eE3o9LUOnab~YAk9Xvr(IHDXN|InBv3NJnDF! zEp@IBo6h@&=bLt9w&Fz8W((mpr3PH6&6H`&cc5lujIE!D`IPU&NIZ@Kcp0^1*D(pF zlsom$U^?YB*aZ)x_x$^EwI0|6<1iJ~&@kMEV{AEU2FpV^7LVaYhoio+qI;%Lq)xD(s5uuq~d# z6bzi@%wQ+XqkJA0VVBv?67It-ln-Gb-ZzJng!ASw|Lw^1;ZSE_1?t7J4mFZp7=q{U z4*U`C#BOt)zmv>I&D6W7>-VGf#3f9|fCr4}fE`fBuf$r05tQ8?GCCHEP$S%e>fs3t z!th$Dm&?U^gy9M^Mg4Ef{4BqEgZD|ngE%SI!PqOLyiEqRj1 zdo)gy3#alEZ=JI?T8>?|ya}Hqh7vwpr=;a*Ps}4a5(z|S;(J0%`YfR|n9zumxvw`W zJx>HuzNYhkJEc-FkU|?gi2AGG21%?T_7K6u?R108|A?oFf7!~7xQuv*NFy52##eZj zxI_#mJ|IGgW<;Wg3zXUr|Mljaqhqt?JQ;1AQerzXns}QyNhl2={AgnaCJ|!@r7*Qi zXfG(m60Im}Gu9`{2qk_0n2Fvjf5*T>Hvc;QMwAnNwyrLw6E6|Rh!=?c#9Cr8p%m_5 zj^e9?j`L0;gopnd-z3%(4-f@f|9i;P<-@oe z`<2!a^~m?YL}DxPGVvF}MZI2f*~G&H-)AJ&e>x2F7M#D@DEk@Ff*ZcZoSSFh$obuBO1`y zMN}(!L>4iN_=r%-B*qa>s6g`P`U)rO{XKAw?p#4dj;*|aNnF(2mc>ni?-}oJvML`Y zMiQwikj@Z`h`q$^bb?GbB7kU2)DjJ8_gC~M<`T~k-kwJ(^M~{r`Tj&Daj&hv->N^L zDm_ZLlp#$eej?l|kiH-`6Dx_vT;BkdIuR+vbro#N9YiLGm`%iS@k1DkpW_0e4*4zE z9F=Yn`-m9IFXCIoRpNKzJA&6#ZFGmA*wUhzCFNzVit^HuNhL*Y)4%9XHPxl9qPNGk z9u!iyqM*3CEHirh)J%6+-_EY~>D@BBq@?)R2m%VozA3yS0)i-^1mcdVXoNzd{iAMGHzq;qoNt^#SDy%cSc@-dcb_l#fLEq>(Li~wq8cf%p@370!i2m zXJaBRz}ENzYGS*PIhc-VqM!gSPuJk-cbQ5Q_Z zZa5da;}(1Tf;E6;)6%+71IR|*uN-~7jG2KN$eeb@@Pe2{$QaCOH- zC0=IuP4ENMg?muRa{_h4tEia;b2kkr9+jjWupbs-GpxquSc6S*BWmDVun6n11J5@> z{L6Nl?pT54=)yy&WIAv4>FCTf3MbK@hFY;4<6Zi#qRfEXAXk zhgm#k6yAy1xCgz_E6bRn=z}FVGK=-mTwbL^L)?y9>?0V3S5TW2+R2$?y0sT-K&7Zn z9fR7$c^HPvP!oCqHG%c0iN1mPScm%LUGK#Ep)|?u?CfeERC^F=X2Vf89*cV5Z0v;( zU@`8*Pz-09dO!+l0v%Bk7=)VOWYqm;VKB}^-S1I16+N&THIr2sfpr*!hfwMEH7ecC z;6A*9e1*)eo16ijM)ud-kmGzovQQ6t7F*y348gZi_dSTd=x(4ALFHR4!)vGkm9jpX z(O4|PDHx4gQ5PP>WIT*f_&aK#ktB!)nuz@1Fdb1dEy7h;hPwVTuF(6Tj9E`dHI`uS zu6)mM1?mAq`7X`H`%yQ%h%p$+cd9pL;_X<8+S|RDg26qUA4@sdj`r=gy#P~buf7Anf(T^NmD+V%wuquumoCu!nPGf6|9`R?`#Zm?+>Gj9h8b9AJ%!5h=mN(A{DAfx z)XMc7;0$O0@>w;-I2z}pCemP!pGQsf>HyZ?^ZpJrhI}(As1c4wEzxVJ_Aq_T*6>180LIh%diFQ3e*JcL@|PcaIAR9o-AFB#SmT^Ndk)%GF@QCYiuxbqggh`dqeGt_x;WTKX~18R?R zF%pMZr=iY!5VaN6sN7hMakvZJt$EN1+u=LPxgZgBVm9XCaNA#vTDq68CD(1jc-s4U z$JBoYwfDcGwxs14=ci#0)WAk#49>zdd}0jiUqWRY9U5uiSSPt$*pzlQ>c-u1BKAW* zhUOLPS)5NhYn-!!wU|KrIBLth%bhI>$9rifqwZUSy6?Jjx6|=D9a`#b7>@ff6_2C# zxcPYJ3m9+BKppRf={OO!#7nUyK4;r?s0Z%09>ONHkDvz7;HKhB%*5cjhGs#J|d$29-$5BcA1}X>KN2$b8xrEBf zu*psqr=w;x0JWFHP4FH!S$$_Y{I6v4f)uaotTZmQ=F~ni+ZbuqE>Vga=qKk zp`zsY3+h8ujpU>^?j(A>a5U1sN`9J(O8eV;TPzKr%?AhkD5Th9nOa-8e7qB zi`t?-7^U}rEEOf+9Mp{-#dI%zbwa(CAMw@E1(&fCMouRIaUd$mE~2jYyVJ>`I8?hM zYDMyG|3Dl|do*f7_2|#@&1Y1!R}I(>2lILJ$9pjo7h*1MM&0;Ft5=2d;R#2bpNn;v zZ`;@LUE2QK{1e=Vycnit20!A_yOQ-+QZ!ImfIeiDl422t;aV)hH<3Iuelz)x7~YA> z`W@H?&!7e#GRw)8uGpUTDC~lZF$3R2UH3C;1>^5w{fAK5a}U2(p=-9YhwE@X?bk5? zN6%roa4L4dc5|H{yJe`PT#TB?8VttW*dLEz0VeYD=ioHdO07nnzu{iiUrF%^9cg$D zJ7ddv&TCg}9g5-fkHAE{8#Tk_r~$r%&2SGY2@hiw9>WN{WDUB{8E_IRd3(62Bv2V< zJ7%M9{3Le5?WhNw!$7=-Yi^!3)Jkc67LY(iD^V**+M0Sc#v4!*okepk^A3N zb`TQ@C5M)`DF>#Ymg>)?D~)r+=fubM0IA~{@Fna{By#QJc#2TjN08T^zrXzlA0Sk; zO%%6T#=j2}gVdzVCz`8b%gxqasMjfo2qm-)&lCFdLmf7jezvm6s?`nQ92LFZjb%BN zJ$nCdpyIM8=-?Hi9qm%Qi};dIsd4c9fkxHloI~E4hY012%39(>Vkz+&F@himJ%8L; zhbo61Jpaz)`JUh7cH>2&EjM-HlY|l~l=f5DSiYxnKjBY*67dc74M&x5dx7d>h-ZoEYS@y@aeaW| zajfk-gT=((iJrt7;v*uCbH2t@Jc$d5Iof}fzd3mRYWF7fFx&po+QSLy?Q>cwC5K^eOguY!T8Qo;|qp-lgwnb zxv(`vU@)Qb0r8us=6r%v=pRD6g*~oA7l>boSo&T>eOF3|Y{Jf;p8+)b60?b?36-hD zDphRx3;vV%mdLbyyKpn{7;%DVMHCQ?C4K=xo+AP|o{v7nyM)Rc#3w`(j(Ou?LS>YLIg2+E1BlkTe}L, 2016 # Christophe CHAUVET , 2016-2018 @@ -13,18 +13,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2019-06-17 20:38+0000\n" +"Last-Translator: Frédéric Sheedy \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documents" @@ -36,9 +36,7 @@ msgstr "Créer un type de document" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Chaque document transféré doit être associé à un type de document, cela " -"permet à Mayan EDMS de catégoriser les documents." +msgstr "Chaque document transféré doit être associé à un type de document, cela permet à Mayan EDMS de catégoriser les documents." #: apps.py:151 msgid "Versions comment" @@ -139,14 +137,10 @@ msgstr "Compresser" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Télécharger le document dans son format original ou sous forme d'archive " -"compressée. Cette option est uniquement disponible lors du téléchargement " -"d'un document. Lors du téléchargement d'un groupe de documents, ce dernier " -"sera toujours téléchargé en tant qu'archive compressée." +msgstr "Télécharger le document dans son format original ou sous forme d'archive compressée. Cette option est uniquement disponible lors du téléchargement d'un document. Lors du téléchargement d'un groupe de documents, ce dernier sera toujours téléchargé en tant qu'archive compressée." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -156,9 +150,7 @@ msgstr "Nom du fichier compressé" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Le nom de fichier du fichier compressé qui contiendra les documents à " -"télécharger, si l'option précédente est sélectionnée." +msgstr "Le nom de fichier du fichier compressé qui contiendra les documents à télécharger, si l'option précédente est sélectionnée." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -172,10 +164,7 @@ msgstr "Conserver l'extension" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"Prend l'extension de fichier et la déplace à la fin du nom de fichier, ce " -"qui permet aux systèmes d'exploitation qui s'appuient sur des extensions de " -"fichier d'ouvrir le document correctement." +msgstr "Prend l'extension de fichier et la déplace à la fin du nom de fichier, ce qui permet aux systèmes d'exploitation qui s'appuient sur des extensions de fichier d'ouvrir le document correctement." #: forms/document_forms.py:147 msgid "Date added" @@ -239,10 +228,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Reprend l'extension de fichier et la place à la fin du nom de fichier afin " -"de permettre aux systèmes d'exploitation qui se basent sur les extensions " -"d'ouvrir correctement la version téléchargée du document." +msgstr "Reprend l'extension de fichier et la place à la fin du nom de fichier afin de permettre aux systèmes d'exploitation qui se basent sur les extensions d'ouvrir correctement la version téléchargée du document." #: links.py:66 msgid "Preview" @@ -346,9 +332,7 @@ msgstr "Corbeille" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Effacer les représentations graphiques utilisées pour accélérer l'affichage " -"des documents et les résultats des transformations interactives." +msgstr "Effacer les représentations graphiques utilisées pour accélérer l'affichage des documents et les résultats des transformations interactives." #: links.py:274 msgid "Clear document image cache" @@ -408,7 +392,7 @@ msgstr "Créer un type de document" #: links.py:371 msgid "Deletion policies" -msgstr "" +msgstr "Règle de suppression" #: links.py:375 links.py:396 msgid "Edit" @@ -467,9 +451,7 @@ msgstr "Description" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"La date et l'heure du serveur lorsque le document a finalement été traité et " -"ajouté au système." +msgstr "La date et l'heure du serveur lorsque le document a finalement été traité et ajouté au système." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -489,9 +471,7 @@ msgstr "Présent dans la corbeille ?" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "" -"La date et l'heure du serveur lorsque le document a été placé dans la " -"corbeille." +msgstr "La date et l'heure du serveur lorsque le document a été placé dans la corbeille." #: models/document_models.py:77 msgid "Date and time trashed" @@ -502,10 +482,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Un document parcellaire est un document avec une entrée en base de données " -"mais aucun fichier transféré. Cela peut correspondre à un transfert " -"interrompu ou à un transfert différé via l'API." +msgstr "Un document parcellaire est un document avec une entrée en base de données mais aucun fichier transféré. Cela peut correspondre à un transfert interrompu ou à un transfert différé via l'API." #: models/document_models.py:84 msgid "Is stub?" @@ -561,10 +538,9 @@ msgstr "Le nom du type de document." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Temps après lequel les documents de ce type seront déplacés vers la " -"corbeille." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Temps après lequel les documents de ce type seront déplacés vers la corbeille." #: models/document_type_models.py:38 msgid "Trash time period" @@ -578,9 +554,7 @@ msgstr "Unité de temps avant déplacement vers la corbeille" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Temps après lequel les documents de ce type présents dans la corbeille " -"seront supprimés." +msgstr "Temps après lequel les documents de ce type présents dans la corbeille seront supprimés." #: models/document_type_models.py:48 msgid "Delete time period" @@ -604,8 +578,7 @@ msgstr "Étiquetage rapide" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "" -"La date et l'heure du serveur lorsque la version du document a été traitée." +msgstr "La date et l'heure du serveur lorsque la version du document a été traitée." #: models/document_version_models.py:79 msgid "Timestamp" @@ -626,12 +599,9 @@ msgstr "Fichier" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"Le type MIME du fichier de la version du document. Les types MIME sont un " -"moyen standard de décrire le format d'un fichier, dans ce cas le format de " -"fichier du document. Quelques exemples: \"text/plain\" or \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "Le type MIME du fichier de la version du document. Les types MIME sont un moyen standard de décrire le format d'un fichier, dans ce cas le format de fichier du document. Quelques exemples: \"text/plain\" or \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -641,9 +611,7 @@ msgstr "Type MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "" -"L'encodage du fichier de version du document. Binaire 7 bits, binaire 8 " -"bits, texte, base64, etc." +msgstr "L'encodage du fichier de version du document. Binaire 7 bits, binaire 8 bits, texte, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -801,9 +769,7 @@ msgstr "" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "" -"Chemin de la sous-classe de stockage à utiliser lors du stockage des " -"fichiers d’image de document mis en cache." +msgstr "Chemin de la sous-classe de stockage à utiliser lors du stockage des fichiers d’image de document mis en cache." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -813,18 +779,13 @@ msgstr "Arguments à transmettre à DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Désactive le premier niveau de cache qui stocke les pages de documents de " -"haute résolution et non transformées." +msgstr "Désactive le premier niveau de cache qui stocke les pages de documents de haute résolution et non transformées." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Désactive le deuxième niveau de cache qui stocke des versions de moyenne à " -"faible résolution, transformées (tournées, agrandies, etc.) des pages des " -"documents." +msgstr "Désactive le deuxième niveau de cache qui stocke des versions de moyenne à faible résolution, transformées (tournées, agrandies, etc.) des pages des documents." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -833,23 +794,16 @@ msgstr "Nombre maximum de documents favoris à mémoriser par utilisateur." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"Détecte l'orientation de chacune des pages du document et crée une " -"transformation de rotation correspondante pour l'afficher dans la bonne " -"orientation. Il s'agit d'une fonctionnalité expérimentale désactivée par " -"défaut." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "Détecte l'orientation de chacune des pages du document et crée une transformation de rotation correspondante pour l'afficher dans la bonne orientation. Il s'agit d'une fonctionnalité expérimentale désactivée par défaut." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." -msgstr "" -"Taille des blocs à utiliser lors du calcul de la somme de contrôle d'un " -"fichier d'un document. Une valeur de 0 désactive le calcul du bloc et le " -"fichier entier sera chargé en mémoire." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." +msgstr "Taille des blocs à utiliser lors du calcul de la somme de contrôle d'un fichier d'un document. Une valeur de 0 désactive le calcul du bloc et le fichier entier sera chargé en mémoire." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -863,18 +817,13 @@ msgstr "Liste des langues de document supportées. Dans le format ISO639-3." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "" -"Durée en secondes pendant laquelle le navigateur doit mettre en cache les " -"images fournies pour un document. La valeur par défaut de 31559626 secondes " -"correspond à 1 an." +msgstr "Durée en secondes pendant laquelle le navigateur doit mettre en cache les images fournies pour un document. La valeur par défaut de 31559626 secondes correspond à 1 an." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "" -"Nombre maximum de documents récemment consultés (créés, modifiés ou " -"consultés) à mémoriser par utilisateur." +msgstr "Nombre maximum de documents récemment consultés (créés, modifiés ou consultés) à mémoriser par utilisateur." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -882,15 +831,11 @@ msgstr "Nombre maximum de documents récemment créés à afficher." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Valeur en degrés de la rotation d'une page de document par interaction de " -"l'utilisateur." +msgstr "Valeur en degrés de la rotation d'une page de document par interaction de l'utilisateur." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "" -"Chemin de la sous-classe de stockage à utiliser lors du stockage des " -"fichiers de document." +msgstr "Chemin de la sous-classe de stockage à utiliser lors du stockage des fichiers de document." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -904,23 +849,17 @@ msgstr "Hauteur en pixels de l'aperçu du document." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour " -"l'utilisateur." +msgstr "Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour l'utilisateur." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé " -"pour l'utilisateur." +msgstr "Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé pour l'utilisateur." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Valeur en pourcentage du zoom avant ou arrière d'une page de document par " -"interaction de l'utilisateur." +msgstr "Valeur en pourcentage du zoom avant ou arrière d'une page de document par interaction de l'utilisateur." #: statistics.py:18 msgid "January" @@ -1000,10 +939,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" -"\n" -" Page %(page_number)s de %(total_pages)s\n" -" " +msgstr "\n Page %(page_number)s de %(total_pages)s\n " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -1016,14 +952,15 @@ msgstr "Langue inconnue \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 msgid "No document pages available" -msgstr "" +msgstr "Aucune page de document disponible" #: views/document_page_views.py:61 #, python-format @@ -1051,15 +988,10 @@ msgstr "Documents du type : %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "" -"Les types de document sont les unités de configuration les plus " -"élémentaires. Tout dans le système dépendra d'eux. Définissez un type de " -"document pour chaque type de document physique que vous souhaitez " -"télécharger. Exemples de types de documents: facture, reçu, manuel, " -"ordonnance, bilan, etc." +msgstr "Les types de document sont les unités de configuration les plus élémentaires. Tout dans le système dépendra d'eux. Définissez un type de document pour chaque type de document physique que vous souhaitez télécharger. Exemples de types de documents: facture, reçu, manuel, ordonnance, bilan, etc." #: views/document_type_views.py:77 msgid "No document types available" @@ -1077,7 +1009,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer le type de document : %s ?" #: views/document_type_views.py:125 #, python-format msgid "Deletion policies for document type: %s" -msgstr "" +msgstr "Règles de suppression pour le type de document: %s" #: views/document_type_views.py:144 #, python-format @@ -1093,28 +1025,19 @@ msgstr "Créer un libellé rapide pour le type de document : %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Êtes-vous sûr de vouloir supprimer le libellé rapide %(label)s du type de " -"document \"%(document_type)s\" ?" +msgstr "Êtes-vous sûr de vouloir supprimer le libellé rapide %(label)s du type de document \"%(document_type)s\" ?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Modifier le libellé rapide \"%(filename)s\" du type de document " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Modifier le libellé rapide \"%(filename)s\" du type de document \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "" -"Les étiquettes rapides sont des noms de fichiers prédéterminés qui " -"permettent de renommer rapidement des documents au fur et à mesure de leur " -"téléchargement en les sélectionnant dans une liste. Les étiquettes rapides " -"peuvent également être utilisées une fois les documents téléversés." +msgstr "Les étiquettes rapides sont des noms de fichiers prédéterminés qui permettent de renommer rapidement des documents au fur et à mesure de leur téléchargement en les sélectionnant dans une liste. Les étiquettes rapides peuvent également être utilisées une fois les documents téléversés." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1136,8 +1059,7 @@ msgstr "Versions du document : %s" #: views/document_version_views.py:121 msgid "All later version after this one will be deleted too." -msgstr "" -"Toutes les versions postérieures à celle-ci seront également supprimées." +msgstr "Toutes les versions postérieures à celle-ci seront également supprimées." #: views/document_version_views.py:124 msgid "Revert to this version?" @@ -1167,10 +1089,7 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "" -"Cela peut signifier qu'aucun document n'a été chargé ou que votre compte " -"d'utilisateur ne dispose pas d'autorisation d'affichage pour aucun document " -"ou type de document." +msgstr "Cela peut signifier qu'aucun document n'a été chargé ou que votre compte d'utilisateur ne dispose pas d'autorisation d'affichage pour aucun document ou type de document." #: views/document_views.py:94 msgid "No documents available" @@ -1179,14 +1098,12 @@ msgstr "Aucun document disponible" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "" -"Demande de modification du type de document effectuée sur %(count)d document" +msgstr "Demande de modification du type de document effectuée sur %(count)d document" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "" -"Demande de modification du type de document effectuée sur %(count)d documents" +msgstr "Demande de modification du type de document effectuée sur %(count)d documents" #: views/document_views.py:117 msgid "Change" @@ -1214,8 +1131,7 @@ msgstr "Télécharger" #: views/document_views.py:343 msgid "Only exact copies of this document will be shown in the this list." -msgstr "" -"Seules les copies exactes de ce document seront affichées dans cette liste." +msgstr "Seules les copies exactes de ce document seront affichées dans cette liste." #: views/document_views.py:347 msgid "There are no duplicates for this document" @@ -1244,24 +1160,18 @@ msgstr "Propriétés du document : %s" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "" -"%(count)d document dans la file d'attente pour le recalcul du nombre de page" +msgstr "%(count)d document dans la file d'attente pour le recalcul du nombre de page" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "" -"%(count)d documents dans la file d'attente pour le recalcul du nombre de page" +msgstr "%(count)d documents dans la file d'attente pour le recalcul du nombre de page" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "" -"Êtes vous sûr de vouloir recalculer le nombre de pages du document " -"sélectionné ?" -msgstr[1] "" -"Êtes-vous sûr de vouloir recalculer le nombre de pages des documents " -"sélectionnés ?" +msgstr[0] "Êtes vous sûr de vouloir recalculer le nombre de pages du document sélectionné ?" +msgstr[1] "Êtes-vous sûr de vouloir recalculer le nombre de pages des documents sélectionnés ?" #: views/document_views.py:463 #, python-format @@ -1273,9 +1183,7 @@ msgstr "Recalculer le nombre de page pour le document : %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "" -"Le document \"%(document)s\" est vide. Téléchargez au moins une version du " -"document avant de tenter de détecter le nombre de pages." +msgstr "Le document \"%(document)s\" est vide. Téléchargez au moins une version du document avant de tenter de détecter le nombre de pages." #: views/document_views.py:492 #, python-format @@ -1285,16 +1193,13 @@ msgstr "Demande d'effacement de transformation traitée pour %(count)d document" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "" -"Demande d'effacement de transformation traitée pour %(count)d documents" +msgstr "Demande d'effacement de transformation traitée pour %(count)d documents" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "" -"Effacer toutes les transformations de page pour le document sélectionné?" -msgstr[1] "" -"Effacer toutes les transformations de page pour le document sélectionné?" +msgstr[0] "Effacer toutes les transformations de page pour le document sélectionné?" +msgstr[1] "Effacer toutes les transformations de page pour le document sélectionné?" #: views/document_views.py:514 #, python-format @@ -1306,9 +1211,7 @@ msgstr "Effacer toutes les transformations de page pour le document : %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Erreur lors de la suppression des transformations de page pour le document : " -"%(document)s; %(error)s." +msgstr "Erreur lors de la suppression des transformations de page pour le document : %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1331,13 +1234,9 @@ msgstr "Imprimer : %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." -msgstr "" -"Les doublons sont des documents composés exactement du même fichier jusqu'au " -"dernier octet. Les fichiers qui ont le même texte ou la même OCR mais qui ne " -"sont pas identiques ou qui ont été enregistrés dans un format de fichier " -"différent ne seront pas affichés comme doublons." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." +msgstr "Les doublons sont des documents composés exactement du même fichier jusqu'au dernier octet. Les fichiers qui ont le même texte ou la même OCR mais qui ne sont pas identiques ou qui ont été enregistrés dans un format de fichier différent ne seront pas affichés comme doublons." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1345,11 +1244,9 @@ msgstr "Il n'y a pas de documents en double" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." -msgstr "" -"Cette page affiche la liste des derniers documents consultés ou manipulés de " -"quelque manière que ce soit par ce compte d'utilisateur." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." +msgstr "Cette page affiche la liste des derniers documents consultés ou manipulés de quelque manière que ce soit par ce compte d'utilisateur." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1357,9 +1254,7 @@ msgstr "Il n'y a pas de document récemment consulté" #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "" -"Cette page afficher la liste des derniers documents téléchargés dans le " -"système." +msgstr "Cette page afficher la liste des derniers documents téléchargés dans le système." #: views/document_views.py:736 msgid "There are no recently added document" @@ -1370,9 +1265,7 @@ msgstr "Il n'y a pas de document ajouté récemment" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "" -"Les documents favoris seront listés dans cette page. Jusqu'à %(count)d " -"documents peuvent être ajoutés par utilisateur." +msgstr "Les documents favoris seront listés dans cette page. Jusqu'à %(count)d documents peuvent être ajoutés par utilisateur." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1429,9 +1322,7 @@ msgstr "Vider l'image en cache du document ?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "" -"Demande de nettoyage du cache de documents mise en file d'attente avec " -"succès." +msgstr "Demande de nettoyage du cache de documents mise en file d'attente avec succès." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" @@ -1486,10 +1377,7 @@ msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "" -"Pour éviter toute perte de données, les documents ne sont pas supprimés " -"instantanément. Tout d'abord, ils sont placés à la corbeille. De là, ils " -"peuvent être supprimés ou restaurés." +msgstr "Pour éviter toute perte de données, les documents ne sont pas supprimés instantanément. Tout d'abord, ils sont placés à la corbeille. De là, ils peuvent être supprimés ou restaurés." #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index 1a29442181..cc91228661 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "dokumentumok" @@ -32,9 +32,7 @@ msgstr "Dokumentum típus létrehozása" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Minden betöltött dokumentumhoz hozzá kell rendelni egy típust, ez az " -"alapvető kategorizálási elv a Mayan EDMS-ben." +msgstr "Minden betöltött dokumentumhoz hozzá kell rendelni egy típust, ez az alapvető kategorizálási elv a Mayan EDMS-ben." #: apps.py:151 msgid "Versions comment" @@ -135,8 +133,8 @@ msgstr "Tömörítés" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -148,9 +146,7 @@ msgstr "Tömörített fájlnév" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, " -"ha az előző opció van kiválasztva." +msgstr "A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, ha az előző opció van kiválasztva." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -332,9 +328,7 @@ msgstr "Kuka" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum " -"megjelenítését és az interaktív átalakításokat." +msgstr "Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum megjelenítését és az interaktív átalakításokat." #: links.py:274 msgid "Clear document image cache" @@ -516,9 +510,7 @@ msgstr "Dokumentum oldalak" #: models/document_page_models.py:253 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" -"Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak " -"száma: %(total_pages)d " +msgstr "Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak száma: %(total_pages)d " #: models/document_page_models.py:286 msgid "Date time" @@ -542,7 +534,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -602,8 +595,8 @@ msgstr "Állomány" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -797,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -834,9 +827,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy " -"lépésben." +msgstr "A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy lépésben." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -860,14 +851,11 @@ msgstr "Egy dokumentum oldal százalékos (%) nagyításának aránya egy lépé msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." +msgstr "Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy " -"lépésben." +msgstr "Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy lépésben." #: statistics.py:18 msgid "January" @@ -960,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -995,8 +984,8 @@ msgstr "%s típusú dokumentumok" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1036,11 +1025,8 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"\"%(document_type)s\" dokumentum típushoz tartozó \"%(filename)s\" " -"gyorscímke szerkesztése" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "\"%(document_type)s\" dokumentum típushoz tartozó \"%(filename)s\" gyorscímke szerkesztése" #: views/document_type_views.py:253 msgid "" @@ -1221,8 +1207,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." +msgstr "Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1245,8 +1230,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1255,8 +1240,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index d188badbd9..8cffbf5960 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Adek Lanin, 2019 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumen" @@ -133,8 +133,8 @@ msgstr "Kompresi" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -146,9 +146,7 @@ msgstr "Nama berkas terkompresi" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang " -"akan diunduh, bila pilihan sebelumnya terpilih." +msgstr "Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang akan diunduh, bila pilihan sebelumnya terpilih." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -330,9 +328,7 @@ msgstr "Tong sampah" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat " -"menampilkan dokumen dan hasil transformasi interaktif." +msgstr "Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat menampilkan dokumen dan hasil transformasi interaktif." #: links.py:274 msgid "Clear document image cache" @@ -451,9 +447,7 @@ msgstr "Deskripsi" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"Tanggal dan waktu pada peladen saat dokumen selesai diproses dan ditambahkan " -"ke sistem." +msgstr "Tanggal dan waktu pada peladen saat dokumen selesai diproses dan ditambahkan ke sistem." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -540,10 +534,9 @@ msgstr "Nama tipe dokumen." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Waktu yang dibutuhkan saat dokumen dari tipe ini akan dipindahkan ke tong " -"sampah." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Waktu yang dibutuhkan saat dokumen dari tipe ini akan dipindahkan ke tong sampah." #: models/document_type_models.py:38 msgid "Trash time period" @@ -557,9 +550,7 @@ msgstr "" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Waktu yang dibutuhkan setelah dokumen dari tipe ini pada tong sampah akan " -"dihapus." +msgstr "Waktu yang dibutuhkan setelah dokumen dari tipe ini pada tong sampah akan dihapus." #: models/document_type_models.py:48 msgid "Delete time period" @@ -604,8 +595,8 @@ msgstr "File" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -616,8 +607,7 @@ msgstr "Tipe MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "" -"Pengkodean versi dokumen. binari 7-bit, binari 8-bit, teks, base64, dll." +msgstr "Pengkodean versi dokumen. binari 7-bit, binari 8-bit, teks, base64, dll." #: models/document_version_models.py:104 msgid "Encoding" @@ -800,15 +790,15 @@ msgstr "Jumlah maksimum dokumen favorit per pengguna" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -837,8 +827,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." +msgstr "Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -856,23 +845,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk " -"memperbesar tampilan halaman dokumen secara interaktif" +msgstr "Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperbesar tampilan halaman dokumen secara interaktif" #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk " -"memperkecil tampilan halaman dokumen secara interaktif." +msgstr "Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperkecil tampilan halaman dokumen secara interaktif." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman " -"dokumen per interaksi pengguna." +msgstr "Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman dokumen per interaksi pengguna." #: statistics.py:18 msgid "January" @@ -965,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1000,8 +984,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1041,8 +1025,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1221,9 +1204,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Masalah dalam menghapus transformasi-transformasi untuk halaman: " -"%(document)s; %(error)s." +msgstr "Masalah dalam menghapus transformasi-transformasi untuk halaman: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1246,8 +1227,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1256,8 +1237,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index 37a2f2d57e..a25539ede2 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Roberto Rosario, 2016 @@ -12,16 +12,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documenti" @@ -33,9 +33,7 @@ msgstr "Creare un tipo di documento" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Ad ogni documento caricato deve essere assegnato un tipo documento, questa " -"è la via più semplice per categorizzare i documenti in Mayan EDMS." +msgstr "Ad ogni documento caricato deve essere assegnato un tipo documento, questa è la via più semplice per categorizzare i documenti in Mayan EDMS." #: apps.py:151 msgid "Versions comment" @@ -136,13 +134,10 @@ msgstr "Comprimere" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Scarica il documento nel formato originale oppure compresso. Questa opzione " -"è selezionabile quando scarichi un singolo documento, per documenti " -"multipli, il pacchetto sarà sempre scaricato in formato compresso." +msgstr "Scarica il documento nel formato originale oppure compresso. Questa opzione è selezionabile quando scarichi un singolo documento, per documenti multipli, il pacchetto sarà sempre scaricato in formato compresso." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -152,9 +147,7 @@ msgstr "Nome file compresso " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Il nome file del file compresso che conterrà il documento da scaricare, se " -"l'opzione precedente è selezionata." +msgstr "Il nome file del file compresso che conterrà il documento da scaricare, se l'opzione precedente è selezionata." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -336,9 +329,7 @@ msgstr "Cestino" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Cancella le rappresentazioni grafiche utilizzate per accellerare la " -"visualizzazione dei documenti e dei risultati interattivi trasformazioni." +msgstr "Cancella le rappresentazioni grafiche utilizzate per accellerare la visualizzazione dei documenti e dei risultati interattivi trasformazioni." #: links.py:274 msgid "Clear document image cache" @@ -488,10 +479,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Un documento troncato è un documento presente sul database che non ha un " -"file scaricato. Potrebbe essere dovuto ad un upload interrotto oppure " -"rimandato per caricarlo via API." +msgstr "Un documento troncato è un documento presente sul database che non ha un file scaricato. Potrebbe essere dovuto ad un upload interrotto oppure rimandato per caricarlo via API." #: models/document_models.py:84 msgid "Is stub?" @@ -547,10 +535,9 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Quantità di tempo dopo il quale i documenti di questo tipo saranno spostati " -"nel cestino." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Quantità di tempo dopo il quale i documenti di questo tipo saranno spostati nel cestino." #: models/document_type_models.py:38 msgid "Trash time period" @@ -564,9 +551,7 @@ msgstr "Unità di tempo per cestinare" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Quantità di tempo dopo il quale i documenti di questo tipo nel cestino " -"saranno cancellati." +msgstr "Quantità di tempo dopo il quale i documenti di questo tipo nel cestino saranno cancellati." #: models/document_type_models.py:48 msgid "Delete time period" @@ -611,8 +596,8 @@ msgstr "File" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -806,15 +791,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -861,23 +846,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Ingrandimento massimo in percentuale (%) da consentire all'utente per una " -"pagina del documento in modo interattivo." +msgstr "Ingrandimento massimo in percentuale (%) da consentire all'utente per una pagina del documento in modo interattivo." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Quantità minima in percentuale (%) per consentire all'utente di ingrandire " -"una pagina di documento in modo interattivo." +msgstr "Quantità minima in percentuale (%) per consentire all'utente di ingrandire una pagina di documento in modo interattivo." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Percentuale dello zoom di una pagina del documento per l'interazione " -"dell'utente." +msgstr "Percentuale dello zoom di una pagina del documento per l'interazione dell'utente." #: statistics.py:18 msgid "January" @@ -970,9 +949,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1005,8 +985,8 @@ msgstr "Documento di tipo: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1042,16 +1022,12 @@ msgstr "Crea etichetta rapida per il tipo documento: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Cancellare l'etichetta: %(label)s, dal tipo documento \"%(document_type)s\"?" +msgstr "Cancellare l'etichetta: %(label)s, dal tipo documento \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Modifica etichetta rapida \"%(filename)s\" dal tipo documento " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Modifica etichetta rapida \"%(filename)s\" dal tipo documento \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1232,9 +1208,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Errore nella cancellazione della trasformazione della pagina per il " -"documento:%(document)s; %(error)s." +msgstr "Errore nella cancellazione della trasformazione della pagina per il documento:%(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1257,8 +1231,8 @@ msgstr "Stampa: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1267,8 +1241,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.mo index 84e107609c00b771c44239eb4d92aba08970d43f..8c7711330d0868faf975cba690e88fab42feb436 100644 GIT binary patch delta 7419 zcmZ|U34D~r9meqqXA({c!6aO70wD(w0tttR0ThEA;SNYu;aGpLUp;R+ngjTccp{~Gmz{JzGF!Vx$OL)Z@Q zcio8^*&dvQZ(s+^a*WBq0!+ubsDUj-#%P*wRFuTMB$ne_$ZVNe)YgasNLwa~VZ0BM zF^N_+r8%g4DYnOI)C)mwoY`8w=@o3J}RihAx4Mm3f1l3+H?XPAwN3?~r_P!)?% z4b4HlU;*ldm6(qq)QoIJb^Jlpb5FRwf_l#hWY*1BI2pV5Xa1*>C}T%-!(FI~&!8H5 z6}728Kuu{P8$~bffi2hvtMEg-6{iib9efk($REW)IFm-?O{n%CM$ORvEaqRE=2Z$b z^+!=_a}GOWGSi{*{-_a+Mb$6GG3doBaI1U&sOw))Q=OP&U)&ef-c)QCXUuh|jx3CF zb~sTcjC9tl!7jKL6R-s}GcTh$aNNzGMb%4WBgA7Gs-1qQ`d8rFI0N;fY=*B9Uxq1I zg4*oS3KHt+-I$0w@fhw!&BWc*YJ+=F5AH*4rk7C-oX~&4#$1i8c*R|JcF~axWJBVBdWs> zVqa{*OYtMrl3hTJIJwZ8i|Wu=jB1T1k&r&r+BRVlZa|G}7iuJrqDK5AUWo@$U&gld zQZrYCTI)&Z!&0~WDb$P{LbZPw)qxL(GymgAd`7`c%o}0X^k&qH)}uzW88xD(P-}Sv z)!=dLf}fxoJd5f`+( zuE10ZHsg5Qhx73)YOQCEwV&dK7O42vm+NdFlIJp;rCF-c^7WN*YE?Z z;Uy%aW;(5xQLqj*qR;UbJn!aLUS-S{^0#3I_Mc$?zAzEBBmwM=D^WAH85x{;5b3)) zf&H=n)wcafsOM&5n$EwMgx2yV_r^MGLw>944!oZHL#VZFUu^$O=#4rxqfl!*2ld?b zsMF#>?UgE2`^&K#u0bv3R^@rWd4hzF+hNpZdLK2SGssufbed@Y;&D0ZMM2aH8gN@2 zbBNjG(4mg;q^#M9Ub=gwgM^GKA>u$yE( zb|n8x%*5wVFFJ(>F@2`p)gPgjs3T`fQ=5xg%Gs!qA3?SI8R~n|Yqp(<0@TtKq3TVH zlITprgX&=|YICf1E9^iu@C>R$Z=q)30%|kn&aq224%P88)Y8SVi+mAkWEHLYK9td2;PqQ_yl&rPq8na$5c%Fjx8@l z?U@O#Kfo07ucGRm#Mt?7eVtvyKBxvKVmFS}Jk*R-ark@U3e;)XfZgyQY9w!>I(!T@ zlV74{s>2PoJqI;_eC&r~u@`#r18tg{NyJ9Fz&6~7n&LG$3b&(P@Gj~&eU2aD-%ulZ zzsz>z9O?_%`bN7s2Vk0E22dR;L)DMq09=DnHnQ1ELN9FRu_Ne(dQqY4SmY#{$ykIN zP)qPO-iq-H?f2q`s24qnn&MYbFFc7$u$9+t!bVj4Obj7<+Q?(t{z%Nke z^e}2^{($;Ue2NZ!g?V^sxqYq})o`inji@E6Mtu+JU00$u>#B0*U&mrC1$yy4I2s>7 zJ$MY&!IQ`;nKQ^o&6N0bk_>hjI2a;_;!rP^;nEsun<2)&18z-ekTSXt7oDG zBw`~+jr0N3W_t(|@M+}ZXP(CZrdHXdxeawXwqZ6lqel2H>iG-U9=lfCy_JIMXdWiw zXk-SW=4ujpZ~H=%lZCu&dJhsSXb_Q$(w?5=(sbI8Ar_u>WA=G#Os)q&lpJ@ac+ zyGKwR`q<5%#whls-AJZdj zI9!f>@LALzIp*fSLY=1MdfV<0)XdGmXcmb^5_<4{d>9Yl-!af&*S?y=yNvvPOu!LK z?d~3joyfnAdhUJH%&ewzF7ClD_zpUF3OiuOM*BTUX=MJjxhg2g#K%!n^d2VR$Ec2- zck`*s?Xek*Z745xoq{@^GcXw+K^?Oe9EhKwI+C=)E=fPsd-7H=|603|6v)Y_U3~*; z3PY#{Z^abcf~vO<^@8VdIG)0xn7-1EaJFk1#!)_(I7aB=lM%ZP@|&aepG9=0*3V+a z_UF5B4{?S#Zi`}@Xd3AU+_2v7(|;3kWWc$ z_Bh_r*iriq1%Du}BYsWj+Dd3sX@BUt#$q@%=2yf=ZeCnTTnn~dd{e|_}^QaA|TAx_6`*q@Kx^gnPS@fz_q(Uba*qOKtp^CG5Fo=X(CWq-!| z+_X6Brb}@oksqaUU*ZIrMefZm;#Ot2zDKMio>PYFb7DMkxiVbs zh*yat#5N+Ic#3EyUMHR*^xfc!n&0r-ie9xQGKs0=+Y|2+x-Owi*CZl2mf~+Ol%)|b zkxwKJ5l_4K+F%yalaqhb;EzJRdysC84V=bsF$mqJ`*0emY*f(n;-`p6C6b6W zgs#!VZ;74C@L&c}L-GdVW#WE9*IPt{s3)!%x!`&?-b{Q(IMj=C+aMde z4roJNO_UJ5VnzHv9IhRytp8Zt=;pWMF5-!c_i-aJhS)?j5v>W6==_gshNsf!WMA}-YE91@?ITV_T`1rzS>*RFay&IPPGphK ziPU+5;fhdQz!UL@f?;QgpBoE(j<+Th^p)p1S1ZeTT{v`LK3C#YPdGAoj{0BYiG=D#J0&em zb^fq3$LDWoX<{s60v_^t5%N?TR~hj5Yx2CIKvDDl;>5UY8mRUB*Q5qR|2e1YznIvg z`JIW$9g{LLvoH3jEV8WDmlMudUp8kzbHSX~T6O-`O_leWw^&8~U^wCldR4V~$GnVI zZ89=Ry*dA`wz^y4uki&vfmlP)vh@G;g63b94UJ#m2|KJ|eO-8vLkFwt>pV`xUmbR; zS*Dit5x>*m5Br^3CZNIRFAr7K2mGvEIP~1MmZtE(*RG|>>#w4%*t3nE`f{H2g!7s| ztqdjf&WQMyMuybZc>KW(r@`ZQGW-E{)sU)MUu8z~+Qs?t(FvjI*ur|8QWpDP%iGda z#lL*Hac#4OO6=40``T@t^80%Ri{O^hv*S=cI7tS-&e2xBKOH;tZ+iODQ9!GO! T#z(3=v>o*OBF!h4ZHfCQNM!^~ delta 6929 zcmaLbd0drM9>?*6isFK}B1*tzQxQQ?ao4mAH{8etb45i01yry^XS%tYIiscKp4y_B zr4=q|jY~S!WVxhej=5)HTAGtN(P;De-gETTYyOz?>UZDgoclayf1Zn7E%lpy+s}Kp zM!BVi)Wpx22XIM6V^)x_Qd70YOsH#2eVpiAjx8zg#YXrGHo(Yw*6!F!*JC_x!f5;g zWAImJc&IV4#(2%cWR~$oHU^*{qbQ4&(1TU6H#Wg)_!Ro%LadHUF%UOm6Wor;co~_C z2@Nx*Gsa>HW?>)Pg1zY9+$EDhMQXSm`BYQ~?_g_u7n|WvSRP{{tnsLsHN!L zgIlOwyNjB64Mq`+4`3~9j%ueHY9)uGmsK+PWE$cEtc2T97w$tf^d+i;^QaE5U{m}F zwIWe0g9aXly04wHAF87)WRcAj?13*}Dqe_Y{cDg(-2;Ye(Z$DL|S?I)mCs3Ypkq%~muwe%yY(B4eLs<;eQzX3I) z{iqvGVtc%d9WaVz)Au8tPoS210crs2QSBYZ@_xpgK@H@aIAeHl%q=e&25EwLmV&S) zYROYjE7KR%!Dv@5LS45218_B}p;z7ad+{XY&ruz{&VkX4-@_0*f;#LasDXNe8D=Fi z@pukfqE;f9tIApL{oQ@iKG3thWs180s&Ez<0g-$!qquv{rQP*8X-S;!L!Mm>9 zn#OhALpXr`O*b-a@kJblr!W~?HM4KRTpUPwBBtTTsF{T}w*!ttEqw~s!Lg_B>diP8wQ~DVdws~2Poidc z5!G%9s^j0W6INt){jf)}d;V8bp$@j9X0j7Clar{KUPm=}2ZOL|OWR;g)BwUz6KROG zu?tqk$4~>yMs4L}{0wIx?=I7~73&{Nrl6Jm@tBV}ly{>#ie;MBFd3_33aa6BERR{J z4)ZV_XQ2jk1~s7)?2R`t1Rvxe=)QEUk0ZQfG}Ae#k-mr;>FcN)b|Sw!<|t|juj4xW z71hv64$cx>kDIY&J9|bh;(p4>ysgyHZ7jlY-dbvJIo3t*PBNXz9K*p_v!mVPTx>x3 zEsVskFb+#yIp#t8n~{PXY?F_=ejVyD{uo!{4|oyhb+UUuj?P9t!rlPiRgey_7%D2s{@a1A!Vk$vqUn}=GN4XCX; zf|_}sezxIk)ca#OR>G~Q0q;g#cL1y68Pou;q0U4A?{R$}=_R8E+M!02h6y+YbqF_L zIKGcn@HA>`N?iFS^7b~rV|i@;sD0No=5zS@c}%tm^#o7@CMGKT#8L_<{-P$#i(|#AQShRJ7ly( zwHS^rjK-$;Ct>=>U=23IcTw$K#Tqs1?{m0jzukX5o*LUu?{Z7TDTR};6c;`PGB@%Lj4_4VW@rc#UL{^6^7Y% z!%-`ogspX`x{^@`Pooae68r|&VhGL}ZU?dk^+w!?VfYDZh9#&0l^tQP55fABlQ0w0 zQ626p7i8g_iPp)QjRJ^xzgu#3QI1@1h1AINBP5+M;OG z`yj!Yj5@3xPyn1wH@ebL_jh1a+DN z$JxiQA+DjEhC1ChPy_HEZ_i3yRKszo0kwDKF6gB^2(P(Qm39KmuwjI-ok} zhBdICa}4S*KZ(Kk4C>IXL-n^~D(kNsj!>ZvE@CqJPqTk$v_s7-*I9&qlm`%J2qj(x zzO^g_Cqw0zr% z2Z<756A?$F!|-t;lF%!hL+v}fU*TiK2ZYjE;&q~r3Z$+UukYXb?^C#FD}0}w`K(Xl zE%0ANB6(KcmzFsjQKuA)bFhxDWY14S>U2&{5!YP3_{Qb`gL-=&(ewWWnY!HYmisc% z`7zd^z5&t9)rlAXkiX^f{jnvHz_nq-CGuJByFkkK(j+q96JHaJi45)kE~2WtsKOsE zrrP(9(T6aAdi@Widuf}?=r5TB^0SEP1W&Fn{e@3G8E1)6#A)IyFs^dr%UXiF&R2jnnuj95oBA$Ak*5J!nUL={5mhCUdS9}z|Lq*$K#r|L;T)G2i% zYPtSRG?gL5Au1~pe<%J%D3v8*_)gF9JYoW|m#F6&B5S@Q%24LjZfaw)DqXsbfy8Jc zhIpIs=b8X~O7m|@W(qN!;00%XB9zK<(PSJ%93U!F?v3}7hs;jmH)1|9gg8%JCYlpT z#J#kV%+Ew!;yL15Lg^9T`jfdrTu==u%wj&r_gp>=rxH7e5kyBq|I7X}Y(-ordJrp! z4nzo1gIGW)wITjNyhhw5BDi-PdWZ7yDY2eVIzbc=g+zNoX({o7FK6H1W66JcuS`R+ zF5k%cXXjk(?(!m%Yn3)wOsF60ztt7iIBR1r@d{DR)!lJEKm#XTJ{*4`vR(OAtm^U~ z;xoiTq5)B#Q1Z9|yh*;AFVFf%_`b3qt)U`cWa3A}!?xO#Iv1n1?5ZpO?!3o7GF^yN zB9u^i!(uAYZaJdJm0!Zm(R{q?Dk|f0qMa*0jb(`9AM1_}E#8-WHK;fsl}n zyn@1vywUe>FRnZ|s!UaPt8212X~^^b_wN{+Jw7upBlrFti;sBS($vBGa)m}))adRng&Gl&YYT^cW`=c V2G@?yACuuOkG(g@1Jhpf`!8@YTiyTw diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po index 104981322d..0cf2466f07 100644 --- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,19 +9,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-28 06:41+0000\n" +"Last-Translator: Māris Teivāns \n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumenti" @@ -33,9 +32,7 @@ msgstr "Izveidojiet dokumenta veidu" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Katram augšupielādētajam dokumentam ir jāpiešķir dokumenta veids, tas ir " -"galvenais veids, kā Mayan EDMS kategorizē dokumentus." +msgstr "Katram augšupielādētajam dokumentam ir jāpiešķir dokumenta veids, tas ir galvenais veids, kā Mayan EDMS kategorizē dokumentus." #: apps.py:151 msgid "Versions comment" @@ -136,13 +133,10 @@ msgstr "Saspiest" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Lejupielādējiet dokumentu oriģinālā formātā vai saspiestā veidā. Šī opcija " -"ir pieejama tikai tad, ja lejupielādējat vienu dokumentu, vairākiem " -"dokumentiem pakete vienmēr būs lejupielādēta kā saspiests fails." +msgstr "Lejupielādējiet dokumentu oriģinālā formātā vai saspiestā veidā. Šī opcija ir pieejama tikai tad, ja lejupielādējat vienu dokumentu, vairākiem dokumentiem pakete vienmēr būs lejupielādēta kā saspiests fails." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -152,9 +146,7 @@ msgstr "Saspiests faila nosaukums" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Saspiestā faila nosaukums, kurā būs lejupielādējami dokumenti, ja ir " -"izvēlēta iepriekšējā opcija." +msgstr "Saspiestā faila nosaukums, kurā būs lejupielādējami dokumenti, ja ir izvēlēta iepriekšējā opcija." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -168,10 +160,7 @@ msgstr "Saglabāt paplašinājumu" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"Veic faila paplašinājumu un pārvieto to līdz faila nosaukuma beigām, ļaujot " -"operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi atvērt " -"dokumentu." +msgstr "Veic faila paplašinājumu un pārvieto to līdz faila nosaukuma beigām, ļaujot operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi atvērt dokumentu." #: forms/document_forms.py:147 msgid "Date added" @@ -222,7 +211,7 @@ msgstr "Lapu diapazons" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "" +msgstr "Lapas numurs, no kura tiks klonēti visi pārveidojumi. Esošās transformācijas tiks zaudētas." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -235,10 +224,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Veic faila paplašinājumu un pārvieto to faila nosaukuma beigās, ļaujot " -"operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi lejupielādēt " -"lejupielādēto dokumentu versiju." +msgstr "Veic faila paplašinājumu un pārvieto to faila nosaukuma beigās, ļaujot operētājsistēmām, kas balstās uz failu paplašinājumiem, pareizi lejupielādēt lejupielādēto dokumentu versiju." #: links.py:66 msgid "Preview" @@ -342,9 +328,7 @@ msgstr "Miskaste" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Notīriet grafikas attēlus, kas izmantoti, lai paātrinātu dokumentu displeju " -"un interaktīvās transformācijas rezultātus." +msgstr "Notīriet grafikas attēlus, kas izmantoti, lai paātrinātu dokumentu displeju un interaktīvās transformācijas rezultātus." #: links.py:274 msgid "Clear document image cache" @@ -439,7 +423,7 @@ msgstr "Visas lapas" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "" +msgstr "Dokumenta UUID, universāli unikāls ID. Katram dokumentam izveidots unikāls identifikators." #: models/document_models.py:49 msgid "The name of the document." @@ -463,9 +447,7 @@ msgstr "Apraksts" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"Servera datums un laiks, kad dokuments beidzot tika apstrādāts un pievienots " -"sistēmai." +msgstr "Servera datums un laiks, kad dokuments beidzot tika apstrādāts un pievienots sistēmai." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -496,10 +478,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Dokumenta gabals ir dokuments ar ierakstu datubāzē, bet neviens fails nav " -"augšupielādēts. Tas varētu būt pārtraukta augšupielāde vai atlikta " -"augšupielāde, izmantojot API." +msgstr "Dokumenta gabals ir dokuments ar ierakstu datubāzē, bet neviens fails nav augšupielādēts. Tas varētu būt pārtraukta augšupielāde vai atlikta augšupielāde, izmantojot API." #: models/document_models.py:84 msgid "Is stub?" @@ -555,7 +534,8 @@ msgstr "Dokumenta veida nosaukums." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "Laiks, pēc kura šāda veida dokumenti tiks pārvietoti uz miskasti." #: models/document_type_models.py:38 @@ -615,12 +595,9 @@ msgstr "Fails" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"Dokumenta versijas fails ir mimetype. MIME veidi ir standarta veids, kā " -"aprakstīt faila formātu, šajā gadījumā dokumenta faila formātu. Daži " -"piemēri: "text / plain" vai "image / jpeg"." +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "Dokumenta versijas fails ir mimetype. MIME veidi ir standarta veids, kā aprakstīt faila formātu, šajā gadījumā dokumenta faila formātu. Daži piemēri: \"text/plain\" vai \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -630,9 +607,7 @@ msgstr "MIME tips" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "" -"Dokumenta versijas faila kodējums. binārā 7 bitu, binārā 8 bitu, teksta, " -"bāzes64 utt." +msgstr "Dokumenta versijas faila kodējums. binārā 7 bitu, binārā 8 bitu, teksta, bāzes64 utt." #: models/document_version_models.py:104 msgid "Encoding" @@ -790,9 +765,7 @@ msgstr "Skenēt dokumentu dublikātus" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "" -"Ceļš uz glabāšanas apakšklasi, ko izmanto, saglabājot kešatmiņā saglabāto " -"dokumentu attēlu failus." +msgstr "Ceļš uz glabāšanas apakšklasi, ko izmanto, saglabājot kešatmiņā saglabāto dokumentu attēlu failus." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -802,42 +775,31 @@ msgstr "Argumenti, kas jānodod DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Atspējo pirmo kešatmiņas pakāpi, kurā tiek glabātas augstas izšķirtspējas, " -"pārveidotu dokumentu lapu versijas." +msgstr "Atspējo pirmo kešatmiņas pakāpi, kurā tiek glabātas augstas izšķirtspējas, pārveidotu dokumentu lapu versijas." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Atspējo otro kešatmiņas pakāpi, kurā tiek saglabātas vidēja līdz zema " -"izšķirtspēja, pārveidotas (pagrieztas, tālinātas utt.) Dokumentu lapu " -"versijas." +msgstr "Atspējo otro kešatmiņas pakāpi, kurā tiek saglabātas vidēja līdz zema izšķirtspēja, pārveidotas (pagrieztas, tālinātas utt.) Dokumentu lapu versijas." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." -msgstr "" -"Maksimālais iecienīto dokumentu skaits, kas jāatceras katram lietotājam." +msgstr "Maksimālais iecienīto dokumentu skaits, kas jāatceras katram lietotājam." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"Atklājiet katra dokumenta lapas orientāciju un izveidojiet atbilstošu " -"rotācijas transformāciju, lai parādītu to tiesības uz augšu. Šī ir " -"eksperimentāla funkcija un pēc noklusējuma tā ir atspējota." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "Atklājiet katra dokumenta lapas orientāciju un izveidojiet atbilstošu rotācijas transformāciju, lai parādītu to tiesības uz augšu. Šī ir eksperimentāla funkcija un pēc noklusējuma tā ir atspējota." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." -msgstr "" -"Datu faila kontrolsummas aprēķināšanai izmantojamo bloku lielums. Vērtība 0 " -"atspējo bloku aprēķinu un viss fails tiks ielādēts atmiņā." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." +msgstr "Datu faila kontrolsummas aprēķināšanai izmantojamo bloku lielums. Vērtība 0 atspējo bloku aprēķinu un viss fails tiks ielādēts atmiņā." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -851,17 +813,13 @@ msgstr "Atbalstīto dokumentu valodu saraksts. ISO639-3 formātā." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "" -"Laiks sekundēs, kad pārlūkam ir jāsniedz piegādāto dokumentu attēlu " -"kešatmiņa. Noklusējuma vērtība 31559626 sekundes atbilst 1 gadam." +msgstr "Laiks sekundēs, kad pārlūkam ir jāsniedz piegādāto dokumentu attēlu kešatmiņa. Noklusējuma vērtība 31559626 sekundes atbilst 1 gadam." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "" -"Maksimālais skaits nesen piekļūto (izveidoto, rediģēto, skatīto) dokumentu, " -"kas jāatceras katram lietotājam." +msgstr "Maksimālais skaits nesen piekļūto (izveidoto, rediģēto, skatīto) dokumentu, kas jāatceras katram lietotājam." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -869,13 +827,11 @@ msgstr "Maksimālais nesen izveidoto dokumentu skaits." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Summa grādos, lai pagrieztu dokumenta lapu katrai lietotāja mijiedarbībai." +msgstr "Summa grādos, lai pagrieztu dokumenta lapu katrai lietotāja mijiedarbībai." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "" -"Ceļš uz glabāšanas apakšklasi, ko var izmantot, glabājot dokumentu failus." +msgstr "Ceļš uz glabāšanas apakšklasi, ko var izmantot, glabājot dokumentu failus." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -889,23 +845,17 @@ msgstr "Dokumenta sīktēla attēla pikseļu augstums." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maksimālā summa procentos (%), lai ļautu lietotājam interaktīvi tuvināt " -"dokumenta lapu." +msgstr "Maksimālā summa procentos (%), lai ļautu lietotājam interaktīvi tuvināt dokumenta lapu." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimālā summa procentos (%), lai ļautu lietotājam interaktīvi attālināt " -"dokumentu lapu." +msgstr "Minimālā summa procentos (%), lai ļautu lietotājam interaktīvi attālināt dokumentu lapu." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Summa, kas procentos palielināta vai samazināta dokumenta lappusē katrai " -"lietotāja mijiedarbībai." +msgstr "Summa, kas procentos palielināta vai samazināta dokumenta lappusē katrai lietotāja mijiedarbībai." #: statistics.py:18 msgid "January" @@ -985,7 +935,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" +msgstr "\nLapa %(page_number)s no %(total_pages)s" #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -994,18 +944,15 @@ msgstr "Parādāmās lapas nav" #: utils.py:18 #, python-format msgid "Unknown language \"%s\"" -msgstr "Nezināma valoda "%s"" +msgstr "Nezināma valoda \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." -msgstr "" -"Tas varētu nozīmēt, ka dokuments ir tādā formātā, kas netiek atbalstīts, vai " -"tas ir bojāts vai augšupielādes process tika pārtraukts. Izmantojiet " -"dokumenta lapas pārrēķināšanas darbību, lai mēģinātu atkārtoti apskatīt lapu " -"skaitu." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." +msgstr "Tas varētu nozīmēt, ka dokuments ir tādā formātā, kas netiek atbalstīts, vai tas ir bojāts vai augšupielādes process tika pārtraukts. Izmantojiet dokumenta lapas pārrēķināšanas darbību, lai mēģinātu atkārtoti apskatīt lapu skaitu." #: views/document_page_views.py:59 msgid "No document pages available" @@ -1037,14 +984,10 @@ msgstr "Dokumenta dokumenti: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "" -"Dokumentu veidi ir visvienkāršākās konfigurācijas vienības. Viss sistēmā būs " -"atkarīgs no tiem. Definējiet dokumenta veidu katram fiziskā dokumenta tipam, " -"kuru plānojat augšupielādēt. Dokumentu tipu piemērs: rēķins, kvīts, " -"rokasgrāmata, recepte, bilance." +msgstr "Dokumentu veidi ir visvienkāršākās konfigurācijas vienības. Viss sistēmā būs atkarīgs no tiem. Definējiet dokumenta veidu katram fiziskā dokumenta tipam, kuru plānojat augšupielādēt. Dokumentu tipu piemērs: rēķins, kvīts, rokasgrāmata, recepte, bilance." #: views/document_type_views.py:77 msgid "No document types available" @@ -1078,27 +1021,19 @@ msgstr "Izveidojiet ātru uzlīmi dokumenta tipam: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Izdzēsiet ātrās iezīmes: %(label)s, no dokumenta tipa "" -"%(document_type)s"?" +msgstr "Izdzēsiet ātrās iezīmes: %(label)s, no dokumenta tipa \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Ātra uzlīmes "%(filename)s" rediģēšana no dokumenta tipa "" -"%(document_type)s"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Ātra uzlīmes \"%(filename)s\" rediģēšana no dokumenta tipa \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "" -"Ātrās uzlīmes ir iepriekš noteikti failu nosaukumi, kas ļauj ātri pārdēvēt " -"dokumentus, tos augšupielādējot, atlasot tos no saraksta. Ātrās uzlīmes var " -"izmantot arī pēc tam, kad dokumenti ir augšupielādēti." +msgstr "Ātrās uzlīmes ir iepriekš noteikti failu nosaukumi, kas ļauj ātri pārdēvēt dokumentus, tos augšupielādējot, atlasot tos no saraksta. Ātrās uzlīmes var izmantot arī pēc tam, kad dokumenti ir augšupielādēti." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1150,10 +1085,7 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "" -"Tas varētu nozīmēt, ka neviens dokuments nav augšupielādēts vai ka jūsu " -"lietotāja kontam nav piešķirta neviena dokumenta vai dokumenta veida " -"skatījuma atļauja." +msgstr "Tas varētu nozīmēt, ka neviens dokuments nav augšupielādēts vai ka jūsu lietotāja kontam nav piešķirta neviena dokumenta vai dokumenta veida skatījuma atļauja." #: views/document_views.py:94 msgid "No documents available" @@ -1188,7 +1120,7 @@ msgstr "Mainiet dokumenta veidu: %s" #: views/document_views.py:151 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Dokumenta tips "%s" veiksmīgi mainīts." +msgstr "Dokumenta tips \"%s\" veiksmīgi mainīts." #: views/document_views.py:220 msgid "Download" @@ -1249,21 +1181,17 @@ msgstr "Pārrēķināt dokumenta lapu skaitu: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "" -"Dokuments "%(document)s" ir tukšs. Pirms mēģināt atklāt lapas " -"skaitu, augšupielādējiet vismaz vienu dokumentu versiju." +msgstr "Dokuments \"%(document)s\" ir tukšs. Pirms mēģināt atklāt lapas skaitu, augšupielādējiet vismaz vienu dokumentu versiju." #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "" -"Transformācijas skaidrs pieprasījums, kas apstrādāts dokumentā %(count)d" +msgstr "Transformācijas skaidrs pieprasījums, kas apstrādāts dokumentā %(count)d" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "" -"Transformācijas skaidrais pieprasījums, kas apstrādāts dokumentiem %(count)d" +msgstr "Transformācijas skaidrais pieprasījums, kas apstrādāts dokumentiem %(count)d" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" @@ -1282,8 +1210,7 @@ msgstr "Notīriet visas dokumenta lapas transformācijas: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Kļūda, izdzēšot lapas pārveidojumus dokumentam: %(document)s; %(error)s." +msgstr "Kļūda, izdzēšot lapas pārveidojumus dokumentam: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1306,12 +1233,9 @@ msgstr "Drukāt: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." -msgstr "" -"Dublikāti ir dokumenti, kas sastāv no tā paša faila līdz pēdējam baitam. " -"Faili, kuriem ir tāds pats teksts vai OCR, bet nav identiski vai tika " -"saglabāti, izmantojot citu failu formātu, netiks parādīti kā dublikāti." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." +msgstr "Dublikāti ir dokumenti, kas sastāv no tā paša faila līdz pēdējam baitam. Faili, kuriem ir tāds pats teksts vai OCR, bet nav identiski vai tika saglabāti, izmantojot citu failu formātu, netiks parādīti kā dublikāti." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1319,11 +1243,9 @@ msgstr "Nav dublētu dokumentu" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." -msgstr "" -"Šajā skatā tiks uzskaitīti jaunākie dokumenti, kurus šī lietotāja konts " -"jebkādā veidā skatījis vai manipulē." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." +msgstr "Šajā skatā tiks uzskaitīti jaunākie dokumenti, kurus šī lietotāja konts jebkādā veidā skatījis vai manipulē." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1342,9 +1264,7 @@ msgstr "Nav nesen pievienota dokumenta" msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "" -"Šajā skatā tiks iekļauti iecienītie dokumenti. Katram lietotājam var būt " -"iecienīts līdz %(count)d dokumentiem." +msgstr "Šajā skatā tiks iekļauti iecienītie dokumenti. Katram lietotājam var būt iecienīts līdz %(count)d dokumentiem." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1374,7 +1294,7 @@ msgstr[2] "Pievienojiet atlasītos dokumentus favorītiem" #: views/favorite_document_views.py:73 #, python-format msgid "Document \"%(instance)s\" is not in favorites." -msgstr "Dokuments "%(instance)s" nav izlasē." +msgstr "Dokuments \"%(instance)s\" nav izlasē." #: views/favorite_document_views.py:77 #, python-format @@ -1460,10 +1380,7 @@ msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "" -"Lai izvairītos no datu zuduma, dokumenti netiek nekavējoties dzēsti. " -"Pirmkārt, tie tiek ievietoti miskastē. No šejienes tos pēc tam var beidzot " -"dzēst vai atjaunot." +msgstr "Lai izvairītos no datu zuduma, dokumenti netiek nekavējoties dzēsti. Pirmkārt, tie tiek ievietoti miskastē. No šejienes tos pēc tam var beidzot dzēst vai atjaunot." #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" diff --git a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po index 728e6bdea5..fa6703aced 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -12,16 +12,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documenten" @@ -134,8 +134,8 @@ msgstr "Comprimeren" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -147,10 +147,7 @@ msgstr "Bestandsnaam gecomprimeerde archiefbestand" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten " -"bevat die dienen te worden gedownload, als de voorgaande optie is " -"geselecteerd." +msgstr "De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten bevat die dienen te worden gedownload, als de voorgaande optie is geselecteerd." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -332,9 +329,7 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Opschonen van de grafische afbeeldingen, die gebuikt worden bij het " -"versnellen van de documentweergave en interactive transformatie resultaten." +msgstr "Opschonen van de grafische afbeeldingen, die gebuikt worden bij het versnellen van de documentweergave en interactive transformatie resultaten." #: links.py:274 msgid "Clear document image cache" @@ -540,7 +535,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -600,8 +596,8 @@ msgstr "Bestand" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -795,15 +791,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -850,15 +846,13 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." +msgstr "Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " +msgstr "Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -955,9 +949,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -990,8 +985,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1031,8 +1026,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1214,9 +1208,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Fout bij verwijderen van de pagina transformaties voor document: " -"%(document)s ; %(error)s ." +msgstr "Fout bij verwijderen van de pagina transformaties voor document: %(document)s ; %(error)s ." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1239,8 +1231,8 @@ msgstr "Afdrukken: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1249,8 +1241,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index 8b2384f056..179c302fcc 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2016-2018 @@ -12,18 +12,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumenty" @@ -35,9 +33,7 @@ msgstr "Utwórz typ dokumentu" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest " -"to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." +msgstr "Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." #: apps.py:151 msgid "Versions comment" @@ -138,14 +134,10 @@ msgstr "Kompresuj" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Pobiera dokument w formacie oryginalnym lub w formie skompresowanej. " -"Powyższa opcja ma zastosowanie jedynie w przypadku pobierania pojedynczego " -"pliku. W przypadku wielu dokumentów zostaną one pobrane w formie " -"skompresowanego archiwum." +msgstr "Pobiera dokument w formacie oryginalnym lub w formie skompresowanej. Powyższa opcja ma zastosowanie jedynie w przypadku pobierania pojedynczego pliku. W przypadku wielu dokumentów zostaną one pobrane w formie skompresowanego archiwum." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -155,9 +147,7 @@ msgstr "Nazwa pliku skompresowanego" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie " -"skompresowanej, jeśli poprzednio wybrano opcję kompresji." +msgstr "Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie skompresowanej, jeśli poprzednio wybrano opcję kompresji." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -235,9 +225,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Pobiera rozszerzenie pliku i łączy je z nazwą pliku umożliwiając systemom " -"operacyjnym poprawnie otworzyć pobraną wersję dokumentu." +msgstr "Pobiera rozszerzenie pliku i łączy je z nazwą pliku umożliwiając systemom operacyjnym poprawnie otworzyć pobraną wersję dokumentu." #: links.py:66 msgid "Preview" @@ -341,9 +329,7 @@ msgstr "Kosz" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Wyczyść reprezentacje grafiki przyspieszające wyświetlanie dokumentów i " -"wyniki interaktywnych przekształceń." +msgstr "Wyczyść reprezentacje grafiki przyspieszające wyświetlanie dokumentów i wyniki interaktywnych przekształceń." #: links.py:274 msgid "Clear document image cache" @@ -493,10 +479,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Niepełny dokument jest dokumentem z wpisem w bazie danych bez przesłanego " -"pliku. Może się to zdarzyć podczas przerwania przesyłania pliku do systemu " -"lub zawieszenia przesyłania poprzez API." +msgstr "Niepełny dokument jest dokumentem z wpisem w bazie danych bez przesłanego pliku. Może się to zdarzyć podczas przerwania przesyłania pliku do systemu lub zawieszenia przesyłania poprzez API." #: models/document_models.py:84 msgid "Is stub?" @@ -552,7 +535,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "Czas, po jakim dokumenty tego typu zostaną przeniesione do kosza." #: models/document_type_models.py:38 @@ -612,8 +596,8 @@ msgstr "Plik" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -792,18 +776,13 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Wyłącza pierwszy poziom pamięci podręcznej, która przechowuje strony " -"dokumentu w wersjach o wysokiej rozdzielczości, nieprzekształcone." +msgstr "Wyłącza pierwszy poziom pamięci podręcznej, która przechowuje strony dokumentu w wersjach o wysokiej rozdzielczości, nieprzekształcone." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Wyłącza drugi poziom pamięci podręcznej, która przechowuje strony dokumentu " -"w wersjach od średniej do niskiej rozdzielczości, przekształcone (obrócone, " -"powiększone, itp.)." +msgstr "Wyłącza drugi poziom pamięci podręcznej, która przechowuje strony dokumentu w wersjach od średniej do niskiej rozdzielczości, przekształcone (obrócone, powiększone, itp.)." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -812,15 +791,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -867,23 +846,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maksymalna, procentowa (%) skala powiększenia strony dokumentu przez " -"użytkownika." +msgstr "Maksymalna, procentowa (%) skala powiększenia strony dokumentu przez użytkownika." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimalna, procentowa (%) skala pomniejszenia strony dokumentu przez " -"użytkownika." +msgstr "Minimalna, procentowa (%) skala pomniejszenia strony dokumentu przez użytkownika." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Liczba punktów procentowych powiększenia lub pomniejszenia strony dokumentu " -"przez użytkownika." +msgstr "Liczba punktów procentowych powiększenia lub pomniejszenia strony dokumentu przez użytkownika." #: statistics.py:18 msgid "January" @@ -976,9 +949,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1011,8 +985,8 @@ msgstr "Dokumenty typu: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1048,15 +1022,12 @@ msgstr "Utwórz szybką etykietę dla typu dokumentu: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Usunąć szybką etykietę: %(label)s z typu dokumentu \"%(document_type)s\"?" +msgstr "Usunąć szybką etykietę: %(label)s z typu dokumentu \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Edytuj szybką etykietę \"%(filename)s\" typu dokumentu \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Edytuj szybką etykietę \"%(filename)s\" typu dokumentu \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1243,9 +1214,7 @@ msgstr "Usunąć wszystkie przekształcenia strony dla dokumentu: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Błąd podczas usuwania przekształceń strony dla dokumentu: %(document)s; " -"%(error)s." +msgstr "Błąd podczas usuwania przekształceń strony dla dokumentu: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1268,8 +1237,8 @@ msgstr "Wydruk: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1278,8 +1247,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 @@ -1360,9 +1329,7 @@ msgstr "Wyczyścić pamięć podręczną obrazów dokumentów?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "" -"Czyszczenie pamięci podręcznej dokumentów dodano pomyślnie do kolejki " -"wykonania." +msgstr "Czyszczenie pamięci podręcznej dokumentów dodano pomyślnie do kolejki wykonania." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" @@ -1370,8 +1337,7 @@ msgstr "Wyszukać zdublowane dokumenty?" #: views/misc_views.py:39 msgid "Duplicated document scan queued successfully." -msgstr "" -"Skanowanie zduplikowanych dokumentów dodano pomyślnie do kolejki wykonania." +msgstr "Skanowanie zduplikowanych dokumentów dodano pomyślnie do kolejki wykonania." #: views/trashed_document_views.py:39 #, python-format diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index e42821cc44..8195f7a11e 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,16 +10,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documentos" @@ -132,8 +132,8 @@ msgstr "Comprimir" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -327,9 +327,7 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Limpar as representações gráficas usadas para acelerar a exibição e " -"transformações interativas de documentos." +msgstr "Limpar as representações gráficas usadas para acelerar a exibição e transformações interativas de documentos." #: links.py:274 msgid "Clear document image cache" @@ -535,7 +533,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -595,8 +594,8 @@ msgstr "Ficheiro" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -790,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -827,9 +826,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Valor em graus para rodar uma página de documento por interação do " -"utilizador." +msgstr "Valor em graus para rodar uma página de documento por interação do utilizador." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -847,17 +844,13 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de " -"documento de forma interativa." +msgstr "Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de documento de forma interativa." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de " -"documento de forma interativa." +msgstr "Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de documento de forma interativa." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -954,9 +947,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -989,8 +983,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1030,8 +1024,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1213,9 +1206,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Erro ao excluir as transformações de página para o documento: %(document)s; " -"%(error)s ." +msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1238,8 +1229,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1248,8 +1239,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po index 815eec3949..6313fe9ea2 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -13,16 +13,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documento" @@ -34,9 +34,7 @@ msgstr "Criar tipo de documento" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"A cada documento carregado deve ser atribuído um tipo de documento, é a " -"forma básica pela qual o Mayan EDMS categoriza os documentos." +msgstr "A cada documento carregado deve ser atribuído um tipo de documento, é a forma básica pela qual o Mayan EDMS categoriza os documentos." #: apps.py:151 msgid "Versions comment" @@ -137,13 +135,10 @@ msgstr "Comprimir" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Faça o download do documento no formato original ou de forma comprimida. " -"Esta opção só pode ser selecionada quando o download de um documento, para " -"vários documentos. O pacote sempre será baixado como um arquivo compactado." +msgstr "Faça o download do documento no formato original ou de forma comprimida. Esta opção só pode ser selecionada quando o download de um documento, para vários documentos. O pacote sempre será baixado como um arquivo compactado." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -153,9 +148,7 @@ msgstr "Comprimido o filename " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"O nome do arquivo do arquivo compactado que vai conter os documentos a serem " -"baixados, se a opção anterior é selecionado." +msgstr "O nome do arquivo do arquivo compactado que vai conter os documentos a serem baixados, se a opção anterior é selecionado." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -169,10 +162,7 @@ msgstr "Preservar a extensão" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"Toma e move a extensão do arquivo para o final do seu nome, permitindo aos " -"sistemas operacionais que utilizam extensões de arquivo abrir o documento " -"corretamente." +msgstr "Toma e move a extensão do arquivo para o final do seu nome, permitindo aos sistemas operacionais que utilizam extensões de arquivo abrir o documento corretamente." #: forms/document_forms.py:147 msgid "Date added" @@ -236,10 +226,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Toma e move a extensão do arquivo para o final do seu nome, permitindo aos " -"sistemas operacionais que utilizam extensões de arquivo abrir a versão " -"baixada do documento corretamente." +msgstr "Toma e move a extensão do arquivo para o final do seu nome, permitindo aos sistemas operacionais que utilizam extensões de arquivo abrir a versão baixada do documento corretamente." #: links.py:66 msgid "Preview" @@ -343,9 +330,7 @@ msgstr "Lixeira" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Desmarque as representações gráficas utilizadas para acelerar a exibição e " -"transformações interativas resultados dos documentos." +msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos." #: links.py:274 msgid "Clear document image cache" @@ -464,9 +449,7 @@ msgstr "Descrição" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"Data e hora do servidor quando o documento finalmente foi processado e " -"adicionado ao sistema." +msgstr "Data e hora do servidor quando o documento finalmente foi processado e adicionado ao sistema." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -497,10 +480,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Um rascunho de documento é um documento com uma entrada no banco de dados, " -"mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um " -"envio diferido por meio da API." +msgstr "Um rascunho de documento é um documento com uma entrada no banco de dados, mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um envio diferido por meio da API." #: models/document_models.py:84 msgid "Is stub?" @@ -556,10 +536,9 @@ msgstr "O nome do tipo de documento." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Quantidade de tempo após a qual se enviará documentos deste tipo para a " -"lixeira." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Quantidade de tempo após a qual se enviará documentos deste tipo para a lixeira." #: models/document_type_models.py:38 msgid "Trash time period" @@ -573,8 +552,7 @@ msgstr "Unidade de tempo de envio para a lixeira" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Quantidade de tempo após a qual documentos deste tipo serão eliminados." +msgstr "Quantidade de tempo após a qual documentos deste tipo serão eliminados." #: models/document_type_models.py:48 msgid "Delete time period" @@ -619,12 +597,9 @@ msgstr "Arquivo" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"O arquivo MIME type da versão do documento. MIME types são uma forma de " -"descrever o formato de um arquivo, neste caso o formato do documento. Alguns " -"exemplos: \"text/plain\" ou \"image/jpeg\"." +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "O arquivo MIME type da versão do documento. MIME types são uma forma de descrever o formato de um arquivo, neste caso o formato do documento. Alguns exemplos: \"text/plain\" ou \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -817,15 +792,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -854,8 +829,7 @@ msgstr "Número máximo de documentos recém-criados a serem mostrados." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Valor em graus para girar uma página do documento por interação do usuário." +msgstr "Valor em graus para girar uma página do documento por interação do usuário." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -873,23 +847,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em " -"uma página do documento de forma interativa." +msgstr "Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em uma página do documento de forma interativa." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em " -"uma página do documento de forma interativa." +msgstr "Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em uma página do documento de forma interativa." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Quantidade em porcentagem de zoom em uma página ou documento por interação " -"do usuário." +msgstr "Quantidade em porcentagem de zoom em uma página ou documento por interação do usuário." #: statistics.py:18 msgid "January" @@ -982,9 +950,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1017,8 +986,8 @@ msgstr "Documentos do tipo: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1054,16 +1023,12 @@ msgstr "Criar uma etiqueta rápida para o documento tipo: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" +msgstr "Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Editar etiqueta rápida \"%(filename)s\" para documento do tipo " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Editar etiqueta rápida \"%(filename)s\" para documento do tipo \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1131,14 +1096,12 @@ msgstr "" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "" -"Pedido de alteração de tipo de documento executado em %(count)d documento" +msgstr "Pedido de alteração de tipo de documento executado em %(count)d documento" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "" -"Pedido de alteração de tipo de documento executado em %(count)d documentos" +msgstr "Pedido de alteração de tipo de documento executado em %(count)d documentos" #: views/document_views.py:117 msgid "Change" @@ -1223,24 +1186,18 @@ msgstr "" #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "" -"Solicitação de transparência de transformação processada para %(count)d " -"documento" +msgstr "Solicitação de transparência de transformação processada para %(count)d documento" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "" -"Solicitação de transparência de transformação processada para %(count)d " -"documentos" +msgstr "Solicitação de transparência de transformação processada para %(count)d documentos" #: views/document_views.py:503 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "" -"Limpar todas as transformações de página para o documento selecionado?" -msgstr[1] "" -"Limpar todas as transformações de página para o documento selecionado?" +msgstr[0] "Limpar todas as transformações de página para o documento selecionado?" +msgstr[1] "Limpar todas as transformações de página para o documento selecionado?" #: views/document_views.py:514 #, python-format @@ -1252,9 +1209,7 @@ msgstr "Limpar todas as transformações de página para o documento: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Erro ao excluir as transformações de página para o documento: %(document)s; " -"%(error)s ." +msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1277,8 +1232,8 @@ msgstr "Imprimir: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1287,8 +1242,8 @@ msgstr "Não há documentos duplicados" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo index fa3bc2f89b70045709736693d1dc891ee6760262..0f3f22f4a336bc030ca9fc0f718634770e1cbd22 100644 GIT binary patch delta 5383 zcmZwKd32S<8OQN?Spo@!Eei>Yd4Z6G5Mly^gk9Og9!OY>EZ1-Y!I0=pfc2rkt2`|G@i{?i=eXJ+oaGtWFT z^XBsUrdHcFxAI!LwfVW>XRu>TFFY7&Og-gMF={oYA<>u_xCc}4x^H|BV}?;5jpJTF&Q7RdgeI_{b@LX&){d+9zCLIjgO;?PvT5GgkA79w#De) z#&pFPjK=hWIOi<9sw&N7}c8F$$guERlm(1eQoThs(uNyg;iFdU4P z7=gd^-H%$?VVr~SVh2ohjp>U+un*2dEo=?4Mzay~JPOZKSc`u}vSsGbTPs?HjAcBm z!WS?OV;EH_9e}DAVLN;fH9-|>_tv3Sz8&N7S&YRasOL_jr&NAOfoz&DFb$(vP81G7 zbsU2ls1P;5V$_7oF$*hE8EHTTz7O@>QQx;w^IS!;Zf@dKj7=v0($U4;c2T&P0o=X08XwK81 z)VHAa<~!_!ail}-$*2{LMfESjQCNbbvBCem#rFm()lmcN#7U^}relO-Off2u2R!Z$ zH_B8Y!J4PAGroe6coLPFbEp6=`}JF>eo-8R_Sge8PCr!t(fB^jMopB)^0ngOn1C}- zhutfsph$OM6z<25@D)@hcF?O09!5R*D(WzuLk)NpwX*L}0kzMxhc*ExQP0B;=wU~E z0^8wEByi6(P?$->e&j#%E&pS?O)8hT5~rh!$5ChElJ9lYN}ViYN--9dv9+j-Y(WLS z4Wlvay9c%4moZZJ|0D%Ha1ND$_ffau3TETKQITg;(F9{q{imQ-Qh=Ihq3>dBOT7fu zuMG8E2#4c3zy2DwWq$J~3PpGtM_{kP#w^15n1iokYy3OT!|ON)Ck?SHt49UA50mgD zcE?XqTXq|@;<%yKbW}iN(bFF1Q;A8r-i&RDQkffr z+UtA_Vv*l|43&}7sPUUo0eq4}{_mmi1q}t5In3_q2Gm4h)QWbYR&)%tmlse2UdGP& z8EU{=s6d=tyP%F3M?DQY;TTkaGf-Q)FqizlMWK`iUVdgM%ZbPN$oVoAxDt1xCW>SO zyI>-A#dOrbqc8%ep(dPz3vdN0pcAMCHRDWt7Zb3b$A;^{QJ8|`u{*9rMY;(U={D2@ zyO6(2<`vY6FJJ>+LXA^5k}Hc_@BsGUEv2(^8c$#%Z!6970oJ0|YK$Fl9VXJS3-85O zaUtG9?RCLe`zqdneW)MD0odZ#+uvjVcBCU0#>~Z3+>E-;2k}{a2d`i`lTh@`EJj~K z!*=rmDd@U2qYl%@s1;pD-l`^gvi;&Q5;ai;YJ%0c%OQt2gL=<=duYp$ zD{ty?8oq^GFq1gdzF}t}H`mmmr#)_@kcZLq&csQ`JI2%?=gRyVHQ*Tuk`6l}-c z(P7HOb6Ad=VB}o8q6$>M%~*#A{Py%h`yKKg)XLYO0@;R zqfz&J4l=i?Mjg_#s6&}Q-?|(VsBb|{up2e;1=K{B@G@S-C-KYzzQAH3`>ViiAnl&{ z7lkYuwzAP=*Bry{*s0haq7>f|IDqzD@i|q@i5jF8ejKMZb?1~dGiF#j*$8o677y7P3 zZSh7_08gR%9maop6wXjk>W?k86Q0MO)UV(a{1G+aHQP#qpe?cpBOUhT)x_&dzSuP__amhmSV??V^A zL;7k@;Zfj-_!`#~ORFBhWT1CO8%-_I}=U-WH8 zm--Ftg>etsl??VBbnA&mC}1zn@ka=X&ir~uYu6z)V0yxEIu zu+=KNr)yCedm0DeZglZ4sKa&*Bk?xsT1HgZd3s?q^$c{C#1RzqK(TKHYULYIfrYV^ zLjagT{iRBqx(lcm&*%6uCOu^Pzm0nSBftK&uk)~7P*>C~>4n?1iNh##rQr;Az>ByQ zucG$qp^!ZbVH`~TIZVR0u?t>DJ+FVGtA97t^~*tJun+n1%;Y0lbIlcmox1Qmy@C zH5PNJm!kgtX?9Z>h-YyxeuL4Zy#7%;!M?Tjw10OI%WOa15s4LchKN`%~YAx^5@14JwVC zW7C8QIBbLcCNv9mI6c(F`%w#c4cp_14NL7|YN8>AhRdka`VDHJ4jXMC$*B5RRDcUm zsV+rbuct8^PoYlzE!2e0rf_=9eZBiQ#KZ4TX=>)Tkl*L|eUjg_@Sd1{PG@{_OM}6h0E$(-|0kD|VWb9!`uK=wvlcjO*Yy{lf+EsZL6` zHa^KoZLE)vah$>7L)}L@eZ$wfS2@YyMG2nMFMKIsS}WISOiz3`qqr!4f?HYY2Ha(p zB{i#p71bGTO-0%2V5llkUS8`KRg^tk6Lj+@WV-iO=o8h-meH@Qv@95Mmj^3?p+I$T znOj;Ja)W`A6?X>8Y^?+f5@|L`NF)*48;L9uSqPD!gbK055?gCY?6tm?L{Y6b)l^H;3a?6| zw0cOVh8eZCdW>Pv={d+)YP2&osX3ieYBFXxQx0e5`|Evjygv8;yw7v*|Nig2Px5wE zi_g}!@cyl>-#dn%ESE7Iad)6G^|aF>bk&&J_Qs6HO_+#Hj{dR6^datn-Ej^k;YP<# zF-P}fDn@rOCLV`i0?xO3O%081TsVMrcnt&4LpCjOCA#rtEW#Zajz3{5e1dJTWhY}= zV>`^ic}|zL}2bvtvDK zW;<~_p21*@b{o?b<1r2kP!oF|nWI^TeZ4f^qOlskK&oX1bGK$R9qG$>upBpHJ8Vg> zDrtLEJQSb8si*;FqgHP*YUY&~g&QyuKSVuu6um0tc^XvFT*qX5gh3e3v~*)Ss-tI6 z0~DbKoQ#=Rf~rU@D)Bnhb9)?rj~eGHQg!nKjzGTz>OYFc7W|&KdPgXn1q*6 zC4Gb%*q;q^219WnUcq(vbfQi0ES3>BVjAYtiCl{6|2yfA#WuWdKiv6(|2Vkx9eWT;|s8T;d4IGwY`|FSXE@MWb5*hF1>~NyYY$RFp z3WnisRLKvcDsuvrz$GWXiMsC*24D~yLj6Rb?(c!ua1d&s7_!ieQ!oYxpfY@#{D9_){9+=to|7aW^VGrfoN&@aQQJKdPXi3sh_xDB3Bp)?Up<@y1y-|$1?^)DyvoIGI zJMl-@it)`SG$!Iv%)^kLoP8XIy|DpX;$LwRHsN^e)633mJu2ZkROt_6G=7CzvY${h zZk26~MJ1GhUafI14LK3Dw#zUA-$c!9J8C8$qGtSS9E=B1Z^j3x%B7R7);bsG;!xD} zy{L*DMfHCimB5wW)PE3->s%Ozo%`4|eE~JlYp5Ajqh_=hwU(z*9bUpPyoT!VCThTY zs0lsBb{NC^JQUMW2@XIlX<-iazd&OW7kKHJ1f~;(!;pPtX5d168#T~F497qgvJJ+f zI!;4>?1vg~FiycKsDuunCUhK&@C?RagqH=^gK4Pq-wUJhIaH=)s7%+O9;ilsFPYt_ z8K1_TcmdVV(tgHl!R5FYgLq46uN=iw7|7d70bhb-4Ix`vR%PeBuUt7H^`~ zI)9*j6<1*#@jgt!MkoFmlZj&o+2096Fp0PVb)2{3HavxY$7u{g(`yFOdkGgRQ8W4u z*Wzs_UNVG-iC17(jC{uay^w=ilIhq9m!K+Ejm*i^A-S8Yn1GQ(ZU4Eb=Z0Xc&VMlt zt>seZi%Rq(u629|wWixJ7C%94u5+k0y@|TN8FfnTqxQ%XRKKAGc2m1iOW4baM_~lx zn-Ut@MCGWNtVQ0UW+!sgO(SX`*DyOkAinRSQyk6p1Hb;Rc zR;t7hROLpYDlrSyZw0bH&HmBUUo*eM1#PxRSc(&hI01MBbv=BH9cUr4k{xpWMq?211k|1>!Bw~xmB?e%bD`s?Kg(o>jkBBLElecdf!ai8un}8uhBUw> z)QtR!?R~MhhBzN}{Uq`#F@JXA&b-Enxqbm#6aNL1@D?hu@Ok#RBGh@G>NpQIfo0eV zUvjKOC9=+mYv)ma4YZXD{jdS`;0^T0+enqoJsgF_^R;DpHRC{ZKX3muD@ATGb8su3 zLoLCq1-3%v*p+w-Y7czsTyON!&{{TQEVf=~OPGwBX`bUObQ5pDj<^>C@k__cj^Coz z_6O{Zxr=Nf9>+@LE3*lIIscDoXr>{HZ2}P(M4XOnWRr_4@m?HOSb^Ci7RnG z9>Fl2`+|LbIVyg`u?{t%U!mTx2eB5=)_cKcS;{U4)_-#OHPxA6=2JM z-B;LGbO9C;PsMTAfFtm~n2dv2Cnc~5yW<8_e@8G8uVM~9cD~PEMg3E`P(ouDR%2^Q zp7D|$V8Cj-+c%rRV;tVa5DZ&m|Ca2CLx@Y( zP=A$f7ZPDP}EpamX;Z%&lQp~_rs7<*CHQ*Ig;@@Ea-a#F| z`>4$vTshY6(k_*@qu!_likx@>DzUYw64#=R)iKP%X4Gzvd({q@`l>H4;<-+4ikQx4 z6JMR@Gl9, 2016 @@ -10,19 +10,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2019-06-18 15:40+0000\n" +"Last-Translator: Harald Ersch\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Documente" @@ -34,9 +33,7 @@ msgstr "Creați un tip de document" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Fiecare document încărcat trebuie să fie atribuit unui tip de document, " -"acesta este modul de bază în care Mayan EDMS categorizează documente." +msgstr "Fiecare document încărcat trebuie să fie atribuit unui tip de document, acesta este modul de bază în care Mayan EDMS categorizează documente." #: apps.py:151 msgid "Versions comment" @@ -137,14 +134,10 @@ msgstr "Comprimă" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Descărcați documentul în format original sau într-un mod comprimat. Această " -"opțiune este selectabilă numai atunci când descărcați un document, pentru " -"mai multe documente, pachetul va fi întotdeauna descărcări ca fișier " -"comprimat." +msgstr "Descărcați documentul în format original sau într-un mod comprimat. Această opțiune este selectabilă numai atunci când descărcați un document, pentru mai multe documente, pachetul va fi întotdeauna descărcări ca fișier comprimat." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -154,9 +147,7 @@ msgstr "Nume fişier comprimat" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Nume fișier comprimat, care va conține documentele ce urmează să fie " -"descărcate, în cazul în care această opțiunea a fost selectată anterior." +msgstr "Nume fișier comprimat, care va conține documentele ce urmează să fie descărcate, în cazul în care această opțiunea a fost selectată anterior." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -170,10 +161,7 @@ msgstr "Păstrați extensia" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"Ia extensia de fișier și o mută până la capătul fișierului, permițând " -"sistemelor de operare care se bazează pe extensii de fișiere să deschidă " -"documentul corect." +msgstr "Ia extensia de fișier și o mută până la capătul fișierului, permițând sistemelor de operare care se bazează pe extensii de fișiere să deschidă documentul corect." #: forms/document_forms.py:147 msgid "Date added" @@ -224,9 +212,7 @@ msgstr "Gamă de pagini" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "" -"Numărul paginii din care vor fi clonate toate transformările. Transformările " -"existente vor fi pierdute." +msgstr "Numărul paginii din care vor fi clonate toate transformările. Transformările existente vor fi pierdute." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -239,10 +225,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"Ia extensia de fișier și o mută până la capătul fișierului, permițând " -"sistemelor de operare care se bazează pe extensii de fișiere să deschidă " -"corect versiunea documentului descărcat." +msgstr "Ia extensia de fișier și o mută până la capătul fișierului, permițând sistemelor de operare care se bazează pe extensii de fișiere să deschidă corect versiunea documentului descărcat." #: links.py:66 msgid "Preview" @@ -346,9 +329,7 @@ msgstr "Coș de gunoi" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Goliți reprezentările grafice folosite pentru a accelera afișarea " -"documentelor și rezultatele interactive de transformari." +msgstr "Goliți reprezentările grafice folosite pentru a accelera afișarea documentelor și rezultatele interactive de transformari." #: links.py:274 msgid "Clear document image cache" @@ -443,7 +424,7 @@ msgstr "Toate paginile" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "" +msgstr "UUID al unui document, identificator unic universal. Un identificator unic generat pentru fiecare document." #: models/document_models.py:49 msgid "The name of the document." @@ -467,8 +448,7 @@ msgstr "Descriere" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "" -"Data și ora serverului când documentul a fost procesat și adăugat în sistem." +msgstr "Data și ora serverului când documentul a fost procesat și adăugat în sistem." #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" @@ -499,10 +479,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Un stub document este un document cu o intrare în baza de date, dar nu se " -"încarcat niciun fișier. Aceasta ar putea fi o încărcare întreruptă sau o " -"încărcare amânată prin API." +msgstr "Un stub document este un document cu o intrare în baza de date, dar nu se încarcat niciun fișier. Aceasta ar putea fi o încărcare întreruptă sau o încărcare amânată prin API." #: models/document_models.py:84 msgid "Is stub?" @@ -558,10 +535,9 @@ msgstr "Numele tipului de document." #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Cantitatea de timp după care documentele de acest tip vor fi mutate în coșul " -"de gunoi." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Cantitatea de timp după care documentele de acest tip vor fi mutate în coșul de gunoi." #: models/document_type_models.py:38 msgid "Trash time period" @@ -575,9 +551,7 @@ msgstr "Unitatea timpului păstrare în gunoi" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Cantitatea de timp după care documentele de acest tip din coșul de gunoi vor " -"fi șterse." +msgstr "Cantitatea de timp după care documentele de acest tip din coșul de gunoi vor fi șterse." #: models/document_type_models.py:48 msgid "Delete time period" @@ -601,8 +575,7 @@ msgstr "Etichetă rapidă" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "" -"Data și ora serverului la care a fost procesată versiunea documentului." +msgstr "Data și ora serverului la care a fost procesată versiunea documentului." #: models/document_version_models.py:79 msgid "Timestamp" @@ -623,12 +596,9 @@ msgstr "Fișier" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"Mimetype pentru versiunea documentuli. Tipurile MIME sunt o modalitate " -"standard de a descrie formatul unui fișier, în acest caz formatul de fișier " -"al documentului. Câteva exemple: \"text / plain\" sau \"image / jpeg\"." +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "Mimetype pentru versiunea documentuli. Tipurile MIME sunt o modalitate standard de a descrie formatul unui fișier, în acest caz formatul de fișier al documentului. Câteva exemple: \"text / plain\" sau \"image / jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -638,9 +608,7 @@ msgstr "Tip MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "" -"Codarea fișierului de versiune a documentului. binar 7-bit, binar 8-bit, " -"text, base64, etc." +msgstr "Codarea fișierului de versiune a documentului. binar 7-bit, binar 8-bit, text, base64, etc." #: models/document_version_models.py:104 msgid "Encoding" @@ -798,9 +766,7 @@ msgstr "Scanați după documente duplicate" msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "" -"Calea către subclasa de stocare pe care să o utilizați la stocarea " -"fișierelor de imagini memorate în memoria cache." +msgstr "Calea către subclasa de stocare pe care să o utilizați la stocarea fișierelor de imagini memorate în memoria cache." #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." @@ -810,42 +776,31 @@ msgstr "Argumentele care trec la DOCUMENT_CACHE_STORAGE_BACKEND." msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Dezactivează primul nivel de memorie cache care stochează versiuni de " -"rezoluție și versiuni non-transformate ale paginilor documentelor." +msgstr "Dezactivează primul nivel de memorie cache care stochează versiuni de rezoluție și versiuni non-transformate ale paginilor documentelor." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Dezactivează cel de-al doilea nivel de memorie cache care stochează paginile " -"documentelor cu rezoluție medie, mică, transformată (rotită, mărite, etc.)." +msgstr "Dezactivează cel de-al doilea nivel de memorie cache care stochează paginile documentelor cu rezoluție medie, mică, transformată (rotită, mărite, etc.)." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." -msgstr "" -"Numărul maxim de documente preferate de reținut pentru fiecare utilizator." +msgstr "Numărul maxim de documente preferate de reținut pentru fiecare utilizator." #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"Detectează orientarea fiecărei pagini a documentului și creează o " -"transformare de rotație corespunzătoare pentru a o afișa vertical. Aceasta " -"este o caracteristică experimentală și este dezactivată în mod implicit." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "Detectează orientarea fiecărei pagini a documentului și creează o transformare de rotație corespunzătoare pentru a o afișa vertical. Aceasta este o caracteristică experimentală și este dezactivată în mod implicit." #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." -msgstr "" -"Dimensiunea blocurilor de utilizat la calcularea sumelor de control ale " -"fișierului documentului. O valoare de 0 dezactivează calculul blocului și " -"întregul fișier va fi încărcat în memorie." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." +msgstr "Dimensiunea blocurilor de utilizat la calcularea sumelor de control ale fișierului documentului. O valoare de 0 dezactivează calculul blocului și întregul fișier va fi încărcat în memorie." #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." @@ -859,18 +814,13 @@ msgstr "Lista limbilor de documente acceptate. În format ISO639-3." msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "" -"Timp în secunde în care browserul ar trebui să cacheze imaginile " -"documentului furnizat. Valoarea implicită de 31559626 secunde corespunde " -"unui an." +msgstr "Timp în secunde în care browserul ar trebui să cacheze imaginile documentului furnizat. Valoarea implicită de 31559626 secunde corespunde unui an." #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "" -"Numărul maxim de documente recent accesate (create, editate, vizualizate) pe " -"care să le rețineți pentru fiecare utilizator." +msgstr "Numărul maxim de documente recent accesate (create, editate, vizualizate) pe care să le rețineți pentru fiecare utilizator." #: settings.py:112 msgid "Maximum number of recently created documents to show." @@ -878,15 +828,11 @@ msgstr "Numărul maxim de documente create recent pentru a fi afișate." #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu " -"utilizatorul." +msgstr "Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu utilizatorul." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "" -"Calea către subclasa de stocare care trebuie utilizată la stocarea " -"fișierelor de documente." +msgstr "Calea către subclasa de stocare care trebuie utilizată la stocarea fișierelor de documente." #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." @@ -900,23 +846,17 @@ msgstr "Înălțimea în pixeli a imaginii miniatură a documentelor." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Suma maximă în procente (%), permisă utilizatorilor pentru mărirea " -"interactiv a unei pagini ." +msgstr "Suma maximă în procente (%), permisă utilizatorilor pentru mărirea interactiv a unei pagini ." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Suma minimă în procente (%), permisă utilizatorului pentru micșorarea " -"interactivă a unei pagini ." +msgstr "Suma minimă în procente (%), permisă utilizatorului pentru micșorarea interactivă a unei pagini ." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Suma în procente folosită pentru a mării sau micşora un document interactiv " -"cu utilizatorul." +msgstr "Suma în procente folosită pentru a mării sau micşora un document interactiv cu utilizatorul." #: statistics.py:18 msgid "January" @@ -996,10 +936,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" -"\n" -" Pag %(page_number)s din %(total_pages)s\n" -" " +msgstr "\n Pag %(page_number)s din %(total_pages)s\n " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -1012,14 +949,11 @@ msgstr "Limbă necunoscută \"%s\"" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." -msgstr "" -"Acest lucru ar putea însemna că documentul are un format care nu este " -"acceptat, că este corupt sau că procesul de încărcare a fost întrerupt. " -"Utilizați acțiunea de recalculare a paginii de document pentru a încerca să " -"introduceți din nou numărul paginilor." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." +msgstr "Acest lucru ar putea însemna că documentul are un format care nu este acceptat, că este corupt sau că procesul de încărcare a fost întrerupt. Utilizați acțiunea de recalculare a paginii de document pentru a încerca să introduceți din nou numărul paginilor." #: views/document_page_views.py:59 msgid "No document pages available" @@ -1051,15 +985,10 @@ msgstr "Documente de tipul: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "" -"Tipurile de documente sunt cele mai elementare unități de configurare. Totul " -"în sistem va depinde de ele. Definiți un tip de document pentru fiecare tip " -"de document fizic pe care intenționați să îl încărcați. Exemple de tipuri de " -"documente: factură, chitanță, procedură, manual de utilizare, prescripție, " -"bilanț." +msgstr "Tipurile de documente sunt cele mai elementare unități de configurare. Totul în sistem va depinde de ele. Definiți un tip de document pentru fiecare tip de document fizic pe care intenționați să îl încărcați. Exemple de tipuri de documente: factură, chitanță, procedură, manual de utilizare, prescripție, bilanț." #: views/document_type_views.py:77 msgid "No document types available" @@ -1093,28 +1022,19 @@ msgstr "Creați o etichetă rapidă pentru tipul de document: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Ștergeți eticheta rapidă: %(label)s, de la tipul de document " -"\"%(document_type)s\"?" +msgstr "Ștergeți eticheta rapidă: %(label)s, de la tipul de document \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Editați eticheta rapidă \"%(filename)s\" din tipul de document " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Editați eticheta rapidă \"%(filename)s\" din tipul de document \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "" -"Etichetele rapide sunt nume de fișier predeterminate care permit redenumirea " -"rapidă a documentelor în momentul în care sunt încărcate selectându-le dintr-" -"o listă. Etichetele rapide pot fi de asemenea folosite după ce documentele " -"au fost încărcate." +msgstr "Etichetele rapide sunt nume de fișier predeterminate care permit redenumirea rapidă a documentelor în momentul în care sunt încărcate selectându-le dintr-o listă. Etichetele rapide pot fi de asemenea folosite după ce documentele au fost încărcate." #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1166,10 +1086,7 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "" -"Acest lucru ar putea însemna că nu au fost încărcate documente sau că nu vi " -"s-a acordat permisiunea de vizualizare pentru niciun document sau tip de " -"document." +msgstr "Acest lucru ar putea însemna că nu au fost încărcate documente sau că nu vi s-a acordat permisiunea de vizualizare pentru niciun document sau tip de document." #: views/document_views.py:94 msgid "No documents available" @@ -1178,16 +1095,12 @@ msgstr "Nu există documente disponibile" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "" -"Solicitarea de modificare a tipului de document efectuată pe %(count)d " -"documente" +msgstr "Solicitarea de modificare a tipului de document efectuată pe %(count)d documente" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "" -"Solicitarea de modificare a tipului de document efectuată pe %(count)d " -"documente" +msgstr "Solicitarea de modificare a tipului de document efectuată pe %(count)d documente" #: views/document_views.py:117 msgid "Change" @@ -1216,9 +1129,7 @@ msgstr "Descărcare" #: views/document_views.py:343 msgid "Only exact copies of this document will be shown in the this list." -msgstr "" -"Numai exemplarele exacte ale acestui document vor fi afișate în această " -"listă." +msgstr "Numai exemplarele exacte ale acestui document vor fi afișate în această listă." #: views/document_views.py:347 msgid "There are no duplicates for this document" @@ -1247,15 +1158,12 @@ msgstr "Proprietățile documentului: %s" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "" -"%(count)d documente sunt în coada pentru recalcularea numărului de pagini" +msgstr "%(count)d documente sunt în coada pentru recalcularea numărului de pagini" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "" -"Documentele %(count)d s-au plasat în așteptare pentru recalcularea numărului " -"de pagini" +msgstr "Documentele %(count)d s-au plasat în așteptare pentru recalcularea numărului de pagini" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" @@ -1274,9 +1182,7 @@ msgstr "Recalculați numărul de pagini al documentului: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "" -"Documentul \"%(document)s\" este gol. Încărcați cel puțin o versiune de " -"document înainte de a încerca să detectați numărul de pagini." +msgstr "Documentul \"%(document)s\" este gol. Încărcați cel puțin o versiune de document înainte de a încerca să detectați numărul de pagini." #: views/document_views.py:492 #, python-format @@ -1328,13 +1234,9 @@ msgstr "Tipărește: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." -msgstr "" -"Duplicatele sunt documente care sunt compuse din exact același fișier, până " -"la ultimul octet. Fișierele care au același text sau OCR dar nu sunt " -"identice sau au fost salvate utilizând un alt format de fișier nu vor apărea " -"ca duplicate." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." +msgstr "Duplicatele sunt documente care sunt compuse din exact același fișier, până la ultimul octet. Fișierele care au același text sau OCR dar nu sunt identice sau au fost salvate utilizând un alt format de fișier nu vor apărea ca duplicate." #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1342,11 +1244,9 @@ msgstr "Nu există documente duplicate" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." -msgstr "" -"Această vizualizare va afișa cele mai recente documente vizualizate sau " -"manipulate în vreun fel de acest cont de utilizator." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." +msgstr "Această vizualizare va afișa cele mai recente documente vizualizate sau manipulate în vreun fel de acest cont de utilizator." #: views/document_views.py:710 msgid "There are no recently accessed document" @@ -1354,8 +1254,7 @@ msgstr "Nu există niciun document accesat recent " #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "" -"Această vizualizare va afișa cele mai recente documente încărcate în sistem." +msgstr "Această vizualizare va afișa cele mai recente documente încărcate în sistem." #: views/document_views.py:736 msgid "There are no recently added document" @@ -1366,9 +1265,7 @@ msgstr "Nu există niciun document adăugat recent " msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "" -"Documentele preferate vor fi listate în această vizualizare. Până la " -"%(count)d documente pot fi preferate de către fiecare utilizator." +msgstr "Documentele preferate vor fi listate în această vizualizare. Până la %(count)d documente pot fi preferate de către fiecare utilizator." #: views/favorite_document_views.py:36 msgid "There are no favorited documents." @@ -1427,9 +1324,7 @@ msgstr "Eliminați memoria cache a imaginilor?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "" -"Ștergerea cache-ului de documente a fost pusă în coada de așteptare cu " -"succes." +msgstr "Ștergerea cache-ului de documente a fost pusă în coada de așteptare cu succes." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" @@ -1486,10 +1381,7 @@ msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "" -"Pentru a evita pierderea datelor, documentele nu sunt șterse instantaneu. " -"Mai întâi, ele sunt plasate în coșul de gunoi. De aici, ele pot fi ulterior " -"șterse sau restaurate." +msgstr "Pentru a evita pierderea datelor, documentele nu sunt șterse instantaneu. Mai întâi, ele sunt plasate în coșul de gunoi. De aici, ele pot fi ulterior șterse sau restaurate." #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index a34688f418..02fe14e4ee 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,18 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Документы" @@ -34,9 +32,7 @@ msgstr "Создать тип документа" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Каждому загруженому документу должен быть присвоен тип документа, - это " -"основной способ, которым Mayan EDMS распределяет документы по категориям." +msgstr "Каждому загруженому документу должен быть присвоен тип документа, - это основной способ, которым Mayan EDMS распределяет документы по категориям." #: apps.py:151 msgid "Versions comment" @@ -137,13 +133,10 @@ msgstr "Сжать" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Скачать документ в исходном, или в сжатом формате. Этот вариант доступен " -"только при загрузке одного документа, для нескольких документов будет " -"использован сжатый файл." +msgstr "Скачать документ в исходном, или в сжатом формате. Этот вариант доступен только при загрузке одного документа, для нескольких документов будет использован сжатый файл." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -153,9 +146,7 @@ msgstr "Имя сжатого файла" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Имя файла сжатого файла, который будет содержать загружаемые документы, если " -"выбран предыдущий параметр." +msgstr "Имя файла сжатого файла, который будет содержать загружаемые документы, если выбран предыдущий параметр." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -337,9 +328,7 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Очистить графику для ускорения отображения документов и интерактивных " -"преобразований." +msgstr "Очистить графику для ускорения отображения документов и интерактивных преобразований." #: links.py:274 msgid "Clear document image cache" @@ -489,10 +478,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Заглушка документа - это запись в базе данных без самого документа. Документ " -"может оказатсья заглушкой, если его загрузка оборвалась, или выполняется его " -"отложенная загрузка через API." +msgstr "Заглушка документа - это запись в базе данных без самого документа. Документ может оказатсья заглушкой, если его загрузка оборвалась, или выполняется его отложенная загрузка через API." #: models/document_models.py:84 msgid "Is stub?" @@ -548,10 +534,9 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Сколько должно пройти времени, прежде чем документы этого типа будут " -"перемещены в корзину." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Сколько должно пройти времени, прежде чем документы этого типа будут перемещены в корзину." #: models/document_type_models.py:38 msgid "Trash time period" @@ -565,9 +550,7 @@ msgstr "Единица измерения периода жизни" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Сколько должно пройти времени, прежде чем документы этого типа будут удалены " -"из корзины." +msgstr "Сколько должно пройти времени, прежде чем документы этого типа будут удалены из корзины." #: models/document_type_models.py:48 msgid "Delete time period" @@ -612,8 +595,8 @@ msgstr "Файл" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -807,15 +790,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -965,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1000,8 +984,8 @@ msgstr "Документы с типом: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1041,11 +1025,8 @@ msgstr "Снять быструю метку %(label)s с типа докуме #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Редактировать быструю метку %(filename)s\" с типа документов " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Редактировать быструю метку %(filename)s\" с типа документов \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1232,9 +1213,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Ошибка при удалении страницы для преобразования документов: %(document)s; " -"%(error)s." +msgstr "Ошибка при удалении страницы для преобразования документов: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1257,8 +1236,8 @@ msgstr "Печать: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1267,8 +1246,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po index 0c533b4afd..01129e3bd4 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,17 +10,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Dokumenti" @@ -133,8 +132,8 @@ msgstr "Stisni" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -146,9 +145,7 @@ msgstr "Ime stisnjene datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila " -"prejšnja opcija izbrana." +msgstr "Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila prejšnja opcija izbrana." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -330,9 +327,7 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza " -"dokumentov in rezultatov interaktivnih transformacij." +msgstr "Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza dokumentov in rezultatov interaktivnih transformacij." #: links.py:274 msgid "Clear document image cache" @@ -538,7 +533,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -598,8 +594,8 @@ msgstr "" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -793,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -830,8 +826,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." +msgstr "Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -849,23 +844,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje " -"strani v dokumentu." +msgstr "Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje " -"strani v dokumentu." +msgstr "Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Znesek v procentih za približane oziroma oddaljene strani na dokument v " -"uporabniškem vmesniku." +msgstr "Znesek v procentih za približane oziroma oddaljene strani na dokument v uporabniškem vmesniku." #: statistics.py:18 msgid "January" @@ -958,9 +947,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -993,8 +983,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1034,8 +1024,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1223,8 +1212,7 @@ msgstr "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." +msgstr "Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1247,8 +1235,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1257,8 +1245,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po index 34db6ce4d2..9e51641e71 100644 --- a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,16 +12,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Belgeler" @@ -33,9 +33,7 @@ msgstr "Belge türü oluşturma" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Yüklenen her belgeye bir belge türü atanmalıdır; bu, Mayan EDMS'in belgeleri " -"sınıflandırmasının temel şeklidir." +msgstr "Yüklenen her belgeye bir belge türü atanmalıdır; bu, Mayan EDMS'in belgeleri sınıflandırmasının temel şeklidir." #: apps.py:151 msgid "Versions comment" @@ -136,13 +134,10 @@ msgstr "Şıkıştırma" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Dokümanı orijinal formatında veya sıkıştırılmış bir şekilde indirin. Bu " -"seçenek yalnızca bir belgeyi indirirken seçilebilir, birden fazla belge için " -"paket sıklıkla sıkıştırılmış bir dosya olarak indirilir." +msgstr "Dokümanı orijinal formatında veya sıkıştırılmış bir şekilde indirin. Bu seçenek yalnızca bir belgeyi indirirken seçilebilir, birden fazla belge için paket sıklıkla sıkıştırılmış bir dosya olarak indirilir." #: forms/document_forms.py:35 msgid "Compressed filename" @@ -152,9 +147,7 @@ msgstr "Sıkıştırılmış dosya adı" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Önceki seçenek seçiliyse, indirilecek belgeleri içeren sıkıştırılmış " -"dosyanın dosya adı." +msgstr "Önceki seçenek seçiliyse, indirilecek belgeleri içeren sıkıştırılmış dosyanın dosya adı." #: forms/document_forms.py:85 msgid "Quick document rename" @@ -336,9 +329,7 @@ msgstr "Çöp Kutusu" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Belgelerin ekranını ve etkileşimli dönüşüm sonuçlarını hızlandırmak için " -"kullanılan grafik gösterimlerini temizleyin." +msgstr "Belgelerin ekranını ve etkileşimli dönüşüm sonuçlarını hızlandırmak için kullanılan grafik gösterimlerini temizleyin." #: links.py:274 msgid "Clear document image cache" @@ -488,10 +479,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Bir doküman koçanı, veritabanında bir girişi bulunan, ancak hiçbir dosya " -"yüklenmemiş bir dokümandır. Bu, API aracılığıyla kesilen bir yükleme veya " -"ertelenmiş bir yükleme olabilir." +msgstr "Bir doküman koçanı, veritabanında bir girişi bulunan, ancak hiçbir dosya yüklenmemiş bir dokümandır. Bu, API aracılığıyla kesilen bir yükleme veya ertelenmiş bir yükleme olabilir." #: models/document_models.py:84 msgid "Is stub?" @@ -547,7 +535,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "Bu türün belgelerinin çöp kutusuna taşınmasından sonraki süre." #: models/document_type_models.py:38 @@ -607,8 +596,8 @@ msgstr "Dosya" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -787,18 +776,13 @@ msgstr "" msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "" -"Belgelerin sayfalarının dönüştürülmemiş, yüksek çözünürlüklü sürümlerini " -"depolayan ilk önbellek katmanını devre dışı bırakır." +msgstr "Belgelerin sayfalarının dönüştürülmemiş, yüksek çözünürlüklü sürümlerini depolayan ilk önbellek katmanını devre dışı bırakır." #: settings.py:41 msgid "" "Disables the second cache tier which stores medium to low resolution, " "transformed (rotated, zoomed, etc) versions of documents' pages." -msgstr "" -"Orta sayfadan düşük çözünürlüğe, belgenin sayfalarının dönüştürülmüş " -"(döndürülmüş, yakınlaştırılmış vb.) Sürümlerini depolayan ikinci önbellek " -"katmanını devre dışı bırakır." +msgstr "Orta sayfadan düşük çözünürlüğe, belgenin sayfalarının dönüştürülmüş (döndürülmüş, yakınlaştırılmış vb.) Sürümlerini depolayan ikinci önbellek katmanını devre dışı bırakır." #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." @@ -807,15 +791,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -844,9 +828,7 @@ msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Kullanıcı etkileşimi başına bir doküman sayfasını döndürmek için gereken " -"derece miktarı." +msgstr "Kullanıcı etkileşimi başına bir doküman sayfasını döndürmek için gereken derece miktarı." #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." @@ -864,23 +846,17 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Kullanıcının bir belge sayfasını etkileşimli olarak yakınlaştırmasını " -"sağlamak için yüzde olarak maksimum miktarı (%)." +msgstr "Kullanıcının bir belge sayfasını etkileşimli olarak yakınlaştırmasını sağlamak için yüzde olarak maksimum miktarı (%)." #: settings.py:154 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Kullanıcıya bir belge sayfasını etkileşimli olarak uzaklaştırmak için yüzde " -"olarak minimum tutar (%)." +msgstr "Kullanıcıya bir belge sayfasını etkileşimli olarak uzaklaştırmak için yüzde olarak minimum tutar (%)." #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Kullanıcı etkileşimi başına belge sayfasında yakınlaştırma veya uzaklaştırma " -"yüzdesi." +msgstr "Kullanıcı etkileşimi başına belge sayfasında yakınlaştırma veya uzaklaştırma yüzdesi." #: statistics.py:18 msgid "January" @@ -973,9 +949,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -1008,8 +985,8 @@ msgstr "Belgelerin türü: %s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1049,10 +1026,8 @@ msgstr "Hızlı etiketi silin: %(label)s, Belge türünün \"%(document_type)s\" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"\"%(filename)s\" hızlı etiketini %(document_type)sBelge türünden düzenleyin" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "\"%(filename)s\" hızlı etiketini %(document_type)sBelge türünden düzenleyin" #: views/document_type_views.py:253 msgid "" @@ -1120,8 +1095,7 @@ msgstr "" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "" -"%(count)d belge üzerinde gerçekleştirilen Belge türü değişikliği isteği" +msgstr "%(count)d belge üzerinde gerçekleştirilen Belge türü değişikliği isteği" #: views/document_views.py:110 #, python-format @@ -1183,21 +1157,18 @@ msgstr "Belge için özellikler: %s" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "" -"%(count)d Belgesi, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" +msgstr "%(count)d Belgesi, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "" -"%(count)d Belgeler, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" +msgstr "%(count)d Belgeler, sayfa sayısı yeniden hesaplaması için kuyruğa alındı" #: views/document_views.py:452 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Seçilen belgenin sayfa sayısını yeniden hesapla mı?" -msgstr[1] "" -"Seçilen belgelerin sayfa sayısını tekrar hesaplamak istiyor musunuz?" +msgstr[1] "Seçilen belgelerin sayfa sayısını tekrar hesaplamak istiyor musunuz?" #: views/document_views.py:463 #, python-format @@ -1237,8 +1208,7 @@ msgstr "Belgenin tüm sayfa dönüşümlerini temizle: %s?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Belge için sayfa dönüşümleri silinirken hata oluştu: %(document)s; %(error)s." +msgstr "Belge için sayfa dönüşümleri silinirken hata oluştu: %(document)s; %(error)s." #: views/document_views.py:565 msgid "Transformations cloned successfully." @@ -1261,8 +1231,8 @@ msgstr "Yazdırma: %s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1271,8 +1241,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po index 9e36e468b4..3128db68f7 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,16 +10,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "Tài liệu" @@ -132,8 +132,8 @@ msgstr "Nén" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -533,7 +533,8 @@ msgstr "" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models/document_type_models.py:38 @@ -593,8 +594,8 @@ msgstr "File" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 @@ -788,15 +789,15 @@ msgstr "" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." msgstr "" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -843,8 +844,7 @@ msgstr "" msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Số phần trăm lớn nhất (%) cho phép người dùng phóng to một trang tài liệu." +msgstr "Số phần trăm lớn nhất (%) cho phép người dùng phóng to một trang tài liệu." #: settings.py:154 msgid "" @@ -854,9 +854,7 @@ msgstr "Số phần trăm nhỏ nhất (%) cho phép người dùng thu nhỏ tr #: settings.py:161 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người " -"dùng." +msgstr "Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người dùng." #: statistics.py:18 msgid "January" @@ -949,9 +947,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -984,8 +983,8 @@ msgstr "" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." msgstr "" @@ -1025,8 +1024,7 @@ msgstr "" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:253 @@ -1228,8 +1226,8 @@ msgstr "" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." msgstr "" #: views/document_views.py:688 @@ -1238,8 +1236,8 @@ msgstr "" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "" #: views/document_views.py:710 diff --git a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po index 3db9912fd1..690d7400b9 100644 --- a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,16 +11,16 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 +#: statistics.py:233 msgid "Documents" msgstr "文档" @@ -32,8 +32,7 @@ msgstr "创建文档类型" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"必须为每个上传的文档分配文档类型,这是Mayan EDMS对文档进行分类的基本方式。" +msgstr "必须为每个上传的文档分配文档类型,这是Mayan EDMS对文档进行分类的基本方式。" #: apps.py:151 msgid "Versions comment" @@ -134,12 +133,10 @@ msgstr "压缩" #: forms/document_forms.py:28 msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"以原始格式或压缩方式下载文档。此选项仅在下载一个文档时可选,对于多个文档,该" -"包将始终作为压缩文件下载。" +msgstr "以原始格式或压缩方式下载文档。此选项仅在下载一个文档时可选,对于多个文档,该包将始终作为压缩文件下载。" #: forms/document_forms.py:35 msgid "Compressed filename" @@ -163,9 +160,7 @@ msgstr "保留扩展名" msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open document correctly." -msgstr "" -"获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开" -"文档。" +msgstr "获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开文档。" #: forms/document_forms.py:147 msgid "Date added" @@ -229,9 +224,7 @@ msgid "" "Takes the file extension and moves it to the end of the filename allowing " "operating systems that rely on file extensions to open the downloaded " "document version correctly." -msgstr "" -"获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开" -"下载的文档版本。" +msgstr "获取文件扩展名并将其移动到文件名的末尾,允许依赖文件扩展名的操作系统正确打开下载的文档版本。" #: links.py:66 msgid "Preview" @@ -485,9 +478,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"文档存根是一个在数据库上有条目但没有上传文件的文档。这可能是因为通过API中断上" -"传或延迟上传。" +msgstr "文档存根是一个在数据库上有条目但没有上传文件的文档。这可能是因为通过API中断上传或延迟上传。" #: models/document_models.py:84 msgid "Is stub?" @@ -543,7 +534,8 @@ msgstr "文档类型的名称。" #: models/document_type_models.py:36 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "将此类文档移至垃圾箱的时间。" #: models/document_type_models.py:38 @@ -603,11 +595,9 @@ msgstr "文件" #: models/document_version_models.py:94 msgid "" "The document version's file mimetype. MIME types are a standard way to " -"describe the format of a file, in this case the file format of the document. " -"Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "" -"文档版本的文件mime类型。 MIME类型是描述文件格式的标准方式,在本例中是文档的文" -"件格式。例如:“text / plain”或“image / jpeg”。" +"describe the format of a file, in this case the file format of the document." +" Some examples: \"text/plain\" or \"image/jpeg\". " +msgstr "文档版本的文件mime类型。 MIME类型是描述文件格式的标准方式,在本例中是文档的文件格式。例如:“text / plain”或“image / jpeg”。" #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -800,17 +790,15 @@ msgstr "每个用户要记住的收藏文档最大数量。" #: settings.py:61 msgid "" "Detect the orientation of each of the document's pages and create a " -"corresponding rotation transformation to display it rightside up. This is an " -"experimental feature and it is disabled by default." -msgstr "" -"检测每个文档页面的方向并创建相应的旋转变换以将其正面显示。这是一项实验性功" -"能,默认情况下处于禁用状态。" +"corresponding rotation transformation to display it rightside up. This is an" +" experimental feature and it is disabled by default." +msgstr "检测每个文档页面的方向并创建相应的旋转变换以将其正面显示。这是一项实验性功能,默认情况下处于禁用状态。" #: settings.py:70 msgid "" -"Size of blocks to use when calculating the document file's checksum. A value " -"of 0 disables the block calculation and the entire file will be loaded into " -"memory." +"Size of blocks to use when calculating the document file's checksum. A value" +" of 0 disables the block calculation and the entire file will be loaded into" +" memory." msgstr "" #: settings.py:77 @@ -825,8 +813,7 @@ msgstr "支持的文档语言列表。采用ISO639-3格式。" msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "" -"浏览器应缓存提供的文档图像的时间,以秒为单位。默认值31559626秒对应1年。" +msgstr "浏览器应缓存提供的文档图像的时间,以秒为单位。默认值31559626秒对应1年。" #: settings.py:105 msgid "" @@ -948,10 +935,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" -"\n" -"                    第%(page_number)s页,总%(total_pages)s页\n" -"                " +msgstr "\n                    第%(page_number)s页,总%(total_pages)s页\n                " #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -964,9 +948,10 @@ msgstr "" #: views/document_page_views.py:54 msgid "" -"This could mean that the document is of a format that is not supported, that " -"it is corrupted or that the upload process was interrupted. Use the document " -"page recalculation action to attempt to introspect the page count again." +"This could mean that the document is of a format that is not supported, that" +" it is corrupted or that the upload process was interrupted. Use the " +"document page recalculation action to attempt to introspect the page count " +"again." msgstr "" #: views/document_page_views.py:59 @@ -999,12 +984,10 @@ msgstr "文档类型:%s" #: views/document_type_views.py:71 msgid "" "Document types are the most basic units of configuration. Everything in the " -"system will depend on them. Define a document type for each type of physical " -"document you intend to upload. Example document types: invoice, receipt, " +"system will depend on them. Define a document type for each type of physical" +" document you intend to upload. Example document types: invoice, receipt, " "manual, prescription, balance sheet." -msgstr "" -"文档类型是最基本的配置单元。系统中的所有东西都将取决于它们。为要上传的每种物" -"理文档定义文档类型。示例文档类型:发票,收据,手册,处方,资产负债表。" +msgstr "文档类型是最基本的配置单元。系统中的所有东西都将取决于它们。为要上传的每种物理文档定义文档类型。示例文档类型:发票,收据,手册,处方,资产负债表。" #: views/document_type_views.py:77 msgid "No document types available" @@ -1042,8 +1025,7 @@ msgstr "从文档类型“%(document_type)s”删除快速标签:%(label)s?" #: views/document_type_views.py:215 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "从文档类型“%(document_type)s”编辑快速标签“%(filename)s”" #: views/document_type_views.py:253 @@ -1051,9 +1033,7 @@ msgid "" "Quick labels are predetermined filenames that allow the quick renaming of " "documents as they are uploaded by selecting them from a list. Quick labels " "can also be used after the documents have been uploaded." -msgstr "" -"快速标签是预定的文件名,允许通过从列表中选择文档来快速重命名文档。上传文档后" -"也可以使用快速标签。" +msgstr "快速标签是预定的文件名,允许通过从列表中选择文档来快速重命名文档。上传文档后也可以使用快速标签。" #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" @@ -1105,9 +1085,7 @@ msgid "" "This could mean that no documents have been uploaded or that your user " "account has not been granted the view permission for any document or " "document type." -msgstr "" -"这可能意味着没有上传任何文档,或者您的用户帐户未被授予任何文档或文档类型的查" -"看权限。" +msgstr "这可能意味着没有上传任何文档,或者您的用户帐户未被授予任何文档或文档类型的查看权限。" #: views/document_views.py:94 msgid "No documents available" @@ -1249,11 +1227,9 @@ msgstr "打印:%s" #: views/document_views.py:681 msgid "" "Duplicates are documents that are composed of the exact same file, down to " -"the last byte. Files that have the same text or OCR but are not identical or " -"were saved using a different file format will not appear as duplicates." -msgstr "" -"重复项是由完全相同的文件组成的文档,直到最后一个字节。具有相同文本或OCR但不一" -"致或使用不同文件格式保存的文件不会显示为重复项。" +"the last byte. Files that have the same text or OCR but are not identical or" +" were saved using a different file format will not appear as duplicates." +msgstr "重复项是由完全相同的文件组成的文档,直到最后一个字节。具有相同文本或OCR但不一致或使用不同文件格式保存的文件不会显示为重复项。" #: views/document_views.py:688 msgid "There are no duplicated documents" @@ -1261,8 +1237,8 @@ msgstr "没有重复的文档" #: views/document_views.py:706 msgid "" -"This view will list the latest documents viewed or manipulated in any way by " -"this user account." +"This view will list the latest documents viewed or manipulated in any way by" +" this user account." msgstr "此视图将列出此用户帐户以任何方式查看或操作的最新文档。" #: views/document_views.py:710 @@ -1390,9 +1366,7 @@ msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." -msgstr "" -"为避免数据丢失,不会立即删除文档。首先,它们放在垃圾桶里。从这里可以最终删除" -"或恢复它们。" +msgstr "为避免数据丢失,不会立即删除文档。首先,它们放在垃圾桶里。从这里可以最终删除或恢复它们。" #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" diff --git a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po index 59b68f6aa3..779ed4d1c5 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po index f87e6eb18b..50020addf9 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po index 1515b24531..53dd2e0f17 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:17 msgid "Dynamic search" @@ -37,10 +35,7 @@ msgstr "Složi sve" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Kada se proveri, biće vraćeni samo rezultati koji odgovaraju svim poljima. " -"Kada se neprovereni rezultati koji se podudaraju sa najmanje jednim poljem " -"će biti vraćeni." +msgstr "Kada se proveri, biće vraćeni samo rezultati koji odgovaraju svim poljima. Kada se neprovereni rezultati koji se podudaraju sa najmanje jednim poljem će biti vraćeni." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po index c7d7c25900..fe7d766399 100644 --- a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po index 1940da8d84..6be65a7b3e 100644 --- a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po index 36eb889fdb..7aca2efd6e 100644 --- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 @@ -41,10 +40,7 @@ msgstr "Alle Felder" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Wenn aktiviert, werden nur Ergebnisse angezeigt bei denen alle Felder " -"zutreffen. Ohne diese Option werden Ergebnisse mit mindestens einem Feld " -"angezeigt." +msgstr "Wenn aktiviert, werden nur Ergebnisse angezeigt bei denen alle Felder zutreffen. Ohne diese Option werden Ergebnisse mit mindestens einem Feld angezeigt." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po index 8b758dcca5..3629c8e405 100644 --- a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 @@ -34,10 +33,7 @@ msgstr "Ταίριαξε με όλα" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Αν επιλεχθεί, θα επιστραφούν μόνο αποτελέσματα που ταιριάζουν με όλα τα " -"πεδία. Αν δεν επιλεχθεί, θα επιστραφούν αποτελέσματα που ταιριάζουν σε " -"τουλάχιστον ένα πεδίο." +msgstr "Αν επιλεχθεί, θα επιστραφούν μόνο αποτελέσματα που ταιριάζουν με όλα τα πεδία. Αν δεν επιλεχθεί, θα επιστραφούν αποτελέσματα που ταιριάζουν σε τουλάχιστον ένα πεδίο." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po index e6dd11ad5a..9dd31f9340 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 @@ -38,10 +37,7 @@ msgstr "Parear todos" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Cuando se selecciona, sólo se devolverán los resultados que coincidan con " -"todos los campos. Si no se selecciona los resultados que coincidan con al " -"menos un campo se devolverá." +msgstr "Cuando se selecciona, sólo se devolverán los resultados que coincidan con todos los campos. Si no se selecciona los resultados que coincidan con al menos un campo se devolverá." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po index 18a62b9164..78bd2232fe 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Nima Towhidi , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -36,10 +35,7 @@ msgstr "انطباق با همه" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"با انتخاب این گزینه، فقط نتایجی که با همه‌ی فیلدها منطبق باشند برگردانده " -"می‌شوند. وقتی این گزینه انتخاب نشده باشد، نتایجی که دست کم با یک فیلد منطبق " -"باشند برگردانده می‌شوند." +msgstr "با انتخاب این گزینه، فقط نتایجی که با همه‌ی فیلدها منطبق باشند برگردانده می‌شوند. وقتی این گزینه انتخاب نشده باشد، نتایجی که دست کم با یک فیلد منطبق باشند برگردانده می‌شوند." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po index 249c5149ab..c02ae8f8b6 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2014-2015 @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -40,10 +39,7 @@ msgstr "Correspond à tous" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Lorsqu'il est coché, seuls les résultats correspondant à tous les champs " -"seront renvoyés. Lorsqu'il ne l'est pas, les résultats correspondant à au " -"moins un champ seront retournés." +msgstr "Lorsqu'il est coché, seuls les résultats correspondant à tous les champs seront renvoyés. Lorsqu'il ne l'est pas, les résultats correspondant à au moins un champ seront retournés." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po index d7803345bb..5f604e9524 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 # molnars , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po index eb845ae8eb..3b61e8a7a0 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po index 82598c44fe..3d65847c80 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Carlo Zanatto <>, 2012 # Giovanni Tricarico , 2014 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po index 952afafe85..cae8227af1 100644 --- a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:17 msgid "Dynamic search" @@ -36,10 +34,7 @@ msgstr "Saskaņot visus" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Pēc izvēles tiek atgriezti tikai rezultāti, kas atbilst visiem laukiem. Kad " -"tiks atdoti nekontrolēti rezultāti, kas atbilst vismaz vienam laukam, tiks " -"atgriezti." +msgstr "Pēc izvēles tiek atgriezti tikai rezultāti, kas atbilst visiem laukiem. Kad tiks atdoti nekontrolēti rezultāti, kas atbilst vismaz vienam laukam, tiks atgriezti." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po index 452b35504a..a156d1216d 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po index e60f61398f..cca3d38c0d 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012 @@ -15,15 +15,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:17 msgid "Dynamic search" @@ -41,10 +38,7 @@ msgstr "Dopasuj wszystko" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Zaznaczone oznacza, że zostaną zwrócone wyniki jedynie w przypadku " -"dopasowania wszystkich pól. Niezaznaczone oznacza, że zostaną zwrócone " -"wyniki jeśli wartość z przynajmniej jednego pola zostanie dopasowane." +msgstr "Zaznaczone oznacza, że zostaną zwrócone wyniki jedynie w przypadku dopasowania wszystkich pól. Niezaznaczone oznacza, że zostaną zwrócone wyniki jeśli wartość z przynajmniej jednego pola zostanie dopasowane." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index aa72697b29..2420812c00 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Vítor Figueiró , 2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po index c459b9f20d..98b15dfe36 100644 --- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -38,10 +37,7 @@ msgstr "Corresponder a todos" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Quando marcado, somente os resultados que correspondem a todos os campos " -"serão retornados. Quando os resultados não verificados correspondentes a " -"pelo menos um campo serão retornados." +msgstr "Quando marcado, somente os resultados que correspondem a todos os campos serão retornados. Quando os resultados não verificados correspondentes a pelo menos um campo serão retornados." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po index 7d23a8dd11..44685d559e 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:17 msgid "Dynamic search" @@ -37,10 +35,7 @@ msgstr "Se potrivește cu toate" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"Atunci când este bifată, vor fi returnate numai rezultatele care corespund " -"tuturor câmpurilor. Atunci când rezultatele neconfirmate care corespund cel " -"puțin un câmp vor fi returnate." +msgstr "Atunci când este bifată, vor fi returnate numai rezultatele care corespund tuturor câmpurilor. Atunci când rezultatele neconfirmate care corespund cel puțin un câmp vor fi returnate." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po index d7c2eefa85..099e5dc374 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po index 6c731a0168..10a5072907 100644 --- a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:17 msgid "Dynamic search" diff --git a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po index 6c84bed69e..6403903284 100644 --- a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 @@ -36,10 +35,7 @@ msgstr "Hepsini eşleştir" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"İşaretlendiğinde, yalnızca tüm alanlarla eşleşen sonuçlar döndürülür. " -"İşaretlenmemiş sonuçlar en az bir alanla eşleşen olduğunda geri " -"döndürülecektir." +msgstr "İşaretlendiğinde, yalnızca tüm alanlarla eşleşen sonuçlar döndürülür. İşaretlenmemiş sonuçlar en az bir alanla eşleşen olduğunda geri döndürülecektir." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po index 3dbb1f899e..b97a511bb0 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 diff --git a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po index 89c825fc6c..6dc56d9aaa 100644 --- a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 @@ -35,9 +34,7 @@ msgstr "匹配所有" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "" -"选中后,将仅返回与所有字段匹配的结果。未选中时,将返回与至少一个字段匹配的结" -"果。" +msgstr "选中后,将仅返回与所有字段匹配的结果。未选中时,将返回与至少一个字段匹配的结果。" #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 7b2d1017f0..d9b17a5d0a 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index a661e9c45e..bdf8655c69 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po index 813463885a..5f559531a2 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po index ec23021595..fae2d9f8cc 100644 --- a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po index f295aa45ff..1dc335ae13 100644 --- a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po index 25d1dd62d1..7a114d37ac 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mathias Behrle , 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-28 21:18+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 @@ -159,9 +158,7 @@ msgstr "Ereignissubskriptionen erfolgreich aktualisiert" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "" -"Subskription für globale oder Objektereignisse um Benachrichtigungen zu " -"erhalten." +msgstr "Subskription für globale oder Objektereignisse um Benachrichtigungen zu erhalten." #: views.py:117 msgid "There are no notifications" @@ -171,9 +168,7 @@ msgstr "Keine Benachrichtigungen vorhanden" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "" -"Ereignisse sind Aktionen, die an diesem Objekt vorgenommen wurden oder durch " -"die Benutzung des Objekts hervorgerufen werden." +msgstr "Ereignisse sind Aktionen, die an diesem Objekt vorgenommen wurden oder durch die Benutzung des Objekts hervorgerufen werden." #: views.py:167 msgid "There are no events for this object" diff --git a/mayan/apps/events/locale/el/LC_MESSAGES/django.po b/mayan/apps/events/locale/el/LC_MESSAGES/django.po index 457422e12b..2486e75905 100644 --- a/mayan/apps/events/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index c031d980a3..24c36ebc7e 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2017-2019 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-30 16:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 @@ -160,8 +159,7 @@ msgstr "Las suscripciones de eventos se actualizaron con éxito" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "" -"Suscríbase a eventos globales o de objetos para recibir notificaciones." +msgstr "Suscríbase a eventos globales o de objetos para recibir notificaciones." #: views.py:117 msgid "There are no notifications" @@ -171,9 +169,7 @@ msgstr "No hay notificaciones" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "" -"Los eventos son acciones que se han realizado a este objeto o utilizando " -"este objeto." +msgstr "Los eventos son acciones que se han realizado a este objeto o utilizando este objeto." #: views.py:167 msgid "There are no events for this object" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index f22a073641..3822460e29 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015,2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 044c8f88de..5260060032 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 # Frédéric Sheedy , 2019 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-17 13:22+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 @@ -162,9 +161,7 @@ msgstr "Souscriptions aux événements mises à jour avec succès" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "" -"Abonnez-vous à des événements globaux ou à des objets pour recevoir des " -"notifications." +msgstr "Abonnez-vous à des événements globaux ou à des objets pour recevoir des notifications." #: views.py:117 msgid "There are no notifications" @@ -174,9 +171,7 @@ msgstr "Il n'y a pas de notification" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "" -"Les événements sont des actions qui ont été effectuées sur cet objet ou " -"utilisant cet objet." +msgstr "Les événements sont des actions qui ont été effectuées sur cet objet ou utilisant cet objet." #: views.py:167 msgid "There are no events for this object" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index 55e6c894e5..62a70fc6b6 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index 2c56c3cc40..eaabfc7e46 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index 644568ce11..8982243378 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-13 17:25+0000\n" "Last-Translator: Daniele Bortoluzzi \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/events/locale/lv/LC_MESSAGES/django.mo index c75c039b919fc1d6e174648e9d71e3e6f1451b19..75fcfce25f6b5a97edd95d8dd260142b112fdc60 100644 GIT binary patch delta 244 zcmeB|oG7_LgsEPhfq|i!i-AEBNG}G`yg+&{kmdx^r-3vNkiH6}nSt~pAk7V=pF!zQ zKw1XK{|BX|fsz(Lz6FqG1JZ>+ngd8z0BI>8-3X=U0BJWMe>*pj0x9?h6aXRycA#xQ zvlxVdG)Pf1KoWSYssWu|LnpAa)4P} zVIJ4mz|eTcDf#YzUPx$AlHnV-q=LHd89S&C^s$UH?BX2t{w{i3r?eXNhJMQ*Oa?); R$+c~3u{>T>4Wd}RQh$Pg9cusp diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po index 5504cd34cb..cec70652bb 100644 --- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" -"PO-Revision-Date: 2019-05-31 12:26+0000\n" +"PO-Revision-Date: 2019-06-28 12:35+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" @@ -87,11 +85,11 @@ msgstr "Notikumu abonēšana" #: links.py:67 msgid "Mark as seen" -msgstr "Atzīmējiet kā redzams" +msgstr "Atzīmējiet kā redzēts" #: links.py:71 msgid "Mark all as seen" -msgstr "Atzīmējiet visu, kā redzams" +msgstr "Atzīmējiet visu, kā redzēts" #: links.py:76 msgid "Subscriptions" diff --git a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po index b6d41c5448..ec974b1498 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index 0a34a2fc48..f46ab76167 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index 255ab6446f..31789a8410 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po index 13139365f6..6da808a559 100644 --- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Rogerio Falcone , 2015 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po index 73c12ebecd..3a59ead06c 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-02 05:19+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" @@ -170,9 +168,7 @@ msgstr "Nu există nicio notificare" msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "" -"Evenimentele sunt acțiuni care au fost realizate pe acest obiect sau " -"utilizând acest obiect." +msgstr "Evenimentele sunt acțiuni care au fost realizate pe acest obiect sau utilizând acest obiect." #: views.py:167 msgid "There are no events for this object" @@ -190,8 +186,7 @@ msgstr "Eroare la actualizarea abonamentului eveniment obiect; %s" #: views.py:215 msgid "Object event subscriptions updated successfully" -msgstr "" -"Obținerea abonamentelor evenimentului obiect a fost actualizată cu succes" +msgstr "Obținerea abonamentelor evenimentului obiect a fost actualizată cu succes" #: views.py:248 #, python-format diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 2dfed3aa4f..49d58f1012 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po index de34730165..188c458fad 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" diff --git a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po index 6040c96c4a..f5ffffcd67 100644 --- a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po index cdb591f68d..9db1d6ff53 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po index cc92b6d099..59c314ce3d 100644 --- a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 diff --git a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po index bb1ea75150..db0b6a158d 100644 --- a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Mohammed ALDOUB , 2019 # Yaman Sanobar , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:15 msgid "Label" @@ -190,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po index 51a3cb6f27..31cb3367af 100644 --- a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Iliya Georgiev , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Iliya Georgiev , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -189,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po index ed38632e2b..853d050cce 100644 --- a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # www.ping.ba , 2019 # Atdhe Tabaku , 2019 # Ilvana Dollaroviq , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,14 +17,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Ilvana Dollaroviq , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:15 msgid "Label" @@ -192,8 +190,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po index c41ce4674e..fb0dfbde9e 100644 --- a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin.py:15 msgid "Label" @@ -188,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po index 5f6cd4588f..004a196c70 100644 --- a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -188,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po index 1262a791df..240a3aedfa 100644 --- a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Tobias Paepke , 2019 # Berny , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -195,8 +194,8 @@ msgstr "Argumente die an den Treiber übergeben werden." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." @@ -238,7 +237,8 @@ msgstr "Dateimetadatenverarbeitung für Dokumententyp %s bearbeiten" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." msgstr "" -"Alle Dokumente eines Typs für die Verarbeitung von Dateimetadaten einstellen." +"Alle Dokumente eines Typs für die Verarbeitung von Dateimetadaten " +"einstellen." #: views.py:147 #, python-format diff --git a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po index 33c667b0ef..981bfbb747 100644 --- a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -187,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po index 3b08b1e345..4eef409729 100644 --- a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -56,7 +56,8 @@ msgstr "Herramienta EXIF" #: events.py:12 msgid "Document version submitted for file metadata processing" msgstr "" -"Versión del documento enviado para el procesamiento de metadatos del archivo." +"Versión del documento enviado para el procesamiento de metadatos del " +"archivo." #: events.py:16 msgid "Document version file metadata processing finished" @@ -172,7 +173,8 @@ msgstr "Entradas de metadato de archivos" #: permissions.py:10 msgid "Change document type file metadata settings" -msgstr "Cambiar la configuración de metadatos del archivo de tipo de documento" +msgstr "" +"Cambiar la configuración de metadatos del archivo de tipo de documento" #: permissions.py:15 msgid "Submit document for file metadata processing" @@ -200,8 +202,8 @@ msgstr "Argumentos para pasar a los controladores." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." @@ -248,8 +250,8 @@ msgstr "" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." msgstr "" -"Enviar todos los documentos de un tipo para el procesamiento de metadatos de " -"archivos." +"Enviar todos los documentos de un tipo para el procesamiento de metadatos de" +" archivos." #: views.py:147 #, python-format diff --git a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po index 340cfa97ee..0fd2c94361 100644 --- a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Mehdi Amani , 2019 # Nima Towhidi , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,10 +17,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Nima Towhidi , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -189,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po index 8ee1ef61e1..db2645c736 100644 --- a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Christophe CHAUVET , 2019 @@ -10,7 +10,7 @@ # Baptiste GAILLET , 2019 # Yves Dubois , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -20,10 +20,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -195,8 +195,8 @@ msgstr "Arguments à transmettre au pilote." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." @@ -238,8 +238,8 @@ msgstr "" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." msgstr "" -"Soumettez tous les documents d'un type pour le traitement des métadonnées de " -"fichier." +"Soumettez tous les documents d'un type pour le traitement des métadonnées de" +" fichier." #: views.py:147 #, python-format diff --git a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po index e7fe08dbd1..e4978cc72f 100644 --- a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Dezső József , 2019 # molnars , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: molnars , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -189,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po index b2e6f0e7e2..3d1363e89a 100644 --- a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sehat , 2019 # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:15 @@ -189,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po index a2df6d01d8..e36a8aa66f 100644 --- a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Marco Camplese , 2019 # Giovanni Tricarico , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -17,10 +17,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -189,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po index eac2a2ff62..da5e572394 100644 --- a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: admin.py:15 msgid "Label" @@ -183,8 +182,8 @@ msgid "" "Set new document types to perform file metadata processing automatically by " "default." msgstr "" -"Iestatiet jaunus dokumentu veidus, lai pēc noklusējuma veiktu failu metadatu " -"apstrādi." +"Iestatiet jaunus dokumentu veidus, lai pēc noklusējuma veiktu failu metadatu" +" apstrādi." #: settings.py:25 msgid "Arguments to pass to the drivers." @@ -192,8 +191,8 @@ msgstr "Argumenti, kas jānodod vadītājiem." #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po index 54203e22ad..5d9758b8d7 100644 --- a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Lucas Weel , 2019 # Evelijn Saaltink , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -189,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po index e6fb0d130c..b23049c014 100644 --- a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Wojciech Warczakowski , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,13 +16,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin.py:15 msgid "Label" @@ -190,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po index 36ddf7e531..008a1e04c1 100644 --- a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Emerson Soares , 2019 # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" -"Last-Translator: Manuela Silva , " -"2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva , 2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:15 @@ -190,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po index bac2ece594..fcceaa3238 100644 --- a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,14 +15,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" -"Last-Translator: José Samuel Facundo da Silva , " -"2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Last-Translator: José Samuel Facundo da Silva , 2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -191,8 +189,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po index ae742a29c6..62716f1ce2 100644 --- a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Stefaniu Criste , 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: admin.py:15 msgid "Label" @@ -60,7 +58,8 @@ msgstr "Instrument EXIF" #: events.py:12 msgid "Document version submitted for file metadata processing" msgstr "" -"Versiunea de document a fost trimisă pentru procesarea metadatelor de fișiere" +"Versiunea de document a fost trimisă pentru procesarea metadatelor de " +"fișiere" #: events.py:16 msgid "Document version file metadata processing finished" @@ -199,19 +198,19 @@ msgstr "Argumente de transmis driverului" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." msgstr "" -"Metadatele fișierelor sunt atributele fișierului documentului. Ele pot varia " -"de la informațiile despre cameră folosite pentru a face o fotografie până la " -"autorul care a creat un fișier. Metadatele fișierelor sunt setate când " -"fișierul documentului a fost creat pentru prima dată. Atributele de metadate " -"ale fișierelor se află în fișierul propriu-zis. Ele nu sunt aceleași ca și " -"metadatele documentului, care sunt definite de utilizator și se află în baza " -"de date." +"Metadatele fișierelor sunt atributele fișierului documentului. Ele pot varia" +" de la informațiile despre cameră folosite pentru a face o fotografie până " +"la autorul care a creat un fișier. Metadatele fișierelor sunt setate când " +"fișierul documentului a fost creat pentru prima dată. Atributele de metadate" +" ale fișierelor se află în fișierul propriu-zis. Ele nu sunt aceleași ca și " +"metadatele documentului, care sunt definite de utilizator și se află în baza" +" de date." #: views.py:43 views.py:62 msgid "No file metadata available." diff --git a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po index 617305e3d1..22608ad045 100644 --- a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Sergey Glita , 2019 # lilo.panic, 2019 # D Muzzle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -18,13 +18,11 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: D Muzzle , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:15 msgid "Label" @@ -192,8 +190,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po index 3ca3cb1d7c..0cfd4df8fa 100644 --- a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: kontrabant , 2019\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: admin.py:15 msgid "Label" @@ -189,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po index 5c7cf1135f..19841b0c9c 100644 --- a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: serhatcan77 , 2019\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:15 @@ -188,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po index 674066d073..b0ef6a6dbc 100644 --- a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 # Trung Phan Minh , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:15 @@ -189,8 +188,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po index 6c0cfc9fd6..2b45d320c3 100644 --- a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:15 @@ -187,8 +187,8 @@ msgstr "" #: views.py:35 msgid "" -"File metadata are the attributes of the document's file. They can range from " -"camera information used to take a photo to the author that created a file. " +"File metadata are the attributes of the document's file. They can range from" +" camera information used to take a photo to the author that created a file. " "File metadata are set when the document's file was first created. File " "metadata attributes reside in the file itself. They are not the same as the " "document metadata, which are user defined and reside in the database." diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index 1e0c22733e..62ff6abc67 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:42 msgid "Linking" @@ -144,8 +142,8 @@ msgstr "is in regular expression (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -261,8 +259,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index f2ff9afea1..570a8e9fc0 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -143,8 +142,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -260,8 +259,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po index a43d2fe1a3..f03fedea19 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:42 msgid "Linking" @@ -145,8 +143,8 @@ msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -230,9 +228,7 @@ msgstr "Pogledati postojeće smart linkove" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Lista odvojenih primarnih ključeva tipova dokumenata na koje se povezuje ova " -"pametna veza." +msgstr "Lista odvojenih primarnih ključeva tipova dokumenata na koje se povezuje ova pametna veza." #: serializers.py:141 #, python-format @@ -264,11 +260,8 @@ msgstr "Dokumenti u pametnom linku:%s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Dokumenti u pametnom linku \"%(smart_link)s\" koji se odnose na " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Dokumenti u pametnom linku \"%(smart_link)s\" koji se odnose na \"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po index f951cba0cd..2191d51ab4 100644 --- a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:42 msgid "Linking" @@ -143,8 +141,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -260,8 +258,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po index 0024ed8f25..e166fa63de 100644 --- a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -142,8 +141,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -259,8 +258,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po index 09a373db05..d0ba23a0e0 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 22:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -148,12 +147,9 @@ msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die " -"{{ document }} Kontextvariable ist verfügbar." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die {{ document }} Kontextvariable ist verfügbar." #: models.py:35 msgid "Dynamic label" @@ -236,9 +232,7 @@ msgstr "Existierende Smart Links anzeigen" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen " -"dieser Smart Link verknüpft wird." +msgstr "Kommagetrennte Liste von Primärschlüsseln von Dokumententypen, mit denen dieser Smart Link verknüpft wird." #: serializers.py:141 #, python-format @@ -270,10 +264,8 @@ msgstr "Ähnliche Dokumente für %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -293,11 +285,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" -"Indices gruppieren Dokumente in Einheiten, üblicherweise mit ähnlichen " -"Eigenschaften und gleichen oder ähnlichen Typen. Smart links ermöglichen die " -"Definition von Beziehungen zwischen Dokumenten, auch wenn sie in " -"verschiedenen Indices sind oder einen unterschiedlichen Typ aufweisen." +msgstr "Indices gruppieren Dokumente in Einheiten, üblicherweise mit ähnlichen Eigenschaften und gleichen oder ähnlichen Typen. Smart links ermöglichen die Definition von Beziehungen zwischen Dokumenten, auch wenn sie in verschiedenen Indices sind oder einen unterschiedlichen Typ aufweisen." #: views.py:195 msgid "There are no smart links" @@ -307,10 +295,7 @@ msgstr "Keine ähnlichen Dokumente vorhanden" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" -"Smart links ermöglichen die Definition von Beziehungen zwischen Dokumenten, " -"auch wenn sie in verschiedenen Indices sind oder einen unterschiedlichen Typ " -"aufweisen." +msgstr "Smart links ermöglichen die Definition von Beziehungen zwischen Dokumenten, auch wenn sie in verschiedenen Indices sind oder einen unterschiedlichen Typ aufweisen." #: views.py:232 msgid "There are no smart links for this document" @@ -335,9 +320,7 @@ msgstr "Smart Link %s bearbeiten" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" -"Bedingungen sind kleine logische Einheiten, die in der Kombination " -"definieren, wie der Smart Link funktionieren wird." +msgstr "Bedingungen sind kleine logische Einheiten, die in der Kombination definieren, wie der Smart Link funktionieren wird." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po index 9a3f55f903..2a71f44544 100644 --- a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -142,8 +141,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -165,8 +164,7 @@ msgstr "Σφάλμα κατά την δημιουργία δυναμικής ε #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Αυτός ο έξυπνος συνδεσμός δεν επιτρέπεται για τον επιλεγμένο τύπο εγγράφου." +msgstr "Αυτός ο έξυπνος συνδεσμός δεν επιτρέπεται για τον επιλεγμένο τύπο εγγράφου." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -260,11 +258,8 @@ msgstr "Έγγραφα στον έξυπνο σύνδεσμο: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Έγγραφα στον έξυπνο σύνδεσμο \"%(smart_link)s\" που σχετίζονται με το " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Έγγραφα στον έξυπνο σύνδεσμο \"%(smart_link)s\" που σχετίζονται με το \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -277,8 +272,7 @@ msgstr "Ενεργοποίηση τύπων εγγράφου" #: views.py:171 #, python-format msgid "Document type for which to enable smart link: %s" -msgstr "" -"Τύποι εγγράφων για τους οποίους θα ενεργοποιηθούν οι έξυπνοι σύνδεσμοι: %s" +msgstr "Τύποι εγγράφων για τους οποίους θα ενεργοποιηθούν οι έξυπνοι σύνδεσμοι: %s" #: views.py:188 msgid "" diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index 9878c06269..f5bbc73fe5 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -145,12 +144,9 @@ msgstr "está en la expresión regular (no sensible a mayúsculas)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas " -"predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/" -"templates/builtins/). La variable de contexto {{document}} está disponible." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). La variable de contexto {{document}} está disponible." #: models.py:35 msgid "Dynamic label" @@ -171,9 +167,7 @@ msgstr "Error generando etiqueta dinámica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Este enlace inteligente no está permitido para el tipo de documento " -"seleccionado." +msgstr "Este enlace inteligente no está permitido para el tipo de documento seleccionado." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -235,9 +229,7 @@ msgstr "Ver enlaces inteligentes existentes" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Lista separada por comas de las llaves principales de tipos de documentos a " -"las que se vinculará este enlace inteligente." +msgstr "Lista separada por comas de las llaves principales de tipos de documentos a las que se vinculará este enlace inteligente." #: serializers.py:141 #, python-format @@ -269,11 +261,8 @@ msgstr "Documentos en enlace inteligente: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Los documentos en enlace inteligente \"%(smart_link)s\" en relación con " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Los documentos en enlace inteligente \"%(smart_link)s\" en relación con \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -293,11 +282,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" -"Los índices agrupan los documentos en unidades, generalmente con propiedades " -"similares y de tipos iguales o similares. Los enlaces inteligentes permiten " -"definir las relaciones entre los documentos, incluso si están en diferentes " -"índices y son de diferentes tipos." +msgstr "Los índices agrupan los documentos en unidades, generalmente con propiedades similares y de tipos iguales o similares. Los enlaces inteligentes permiten definir las relaciones entre los documentos, incluso si están en diferentes índices y son de diferentes tipos." #: views.py:195 msgid "There are no smart links" @@ -307,9 +292,7 @@ msgstr "No hay enlaces inteligentes" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" -"Los enlaces inteligentes permiten definir las relaciones entre los " -"documentos, incluso si están en diferentes índices y son de diferentes tipos." +msgstr "Los enlaces inteligentes permiten definir las relaciones entre los documentos, incluso si están en diferentes índices y son de diferentes tipos." #: views.py:232 msgid "There are no smart links for this document" @@ -334,9 +317,7 @@ msgstr "Editar enlace inteligente: %s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" -"Las condiciones son pequeñas unidades lógicas que cuando se combinan definen " -"cómo se comportará el enlace inteligente." +msgstr "Las condiciones son pequeñas unidades lógicas que cuando se combinan definen cómo se comportará el enlace inteligente." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index c13802c0d9..6377d50224 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -144,8 +143,8 @@ msgstr "موجود در عبارات منظم (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -229,9 +228,7 @@ msgstr "دیدن پیوندهای هوشمند موجود" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"لیست کاملی از نوع اسناد کلید های اصلی که این پیوند هوشمند متصل است جدا شده " -"است." +msgstr "لیست کاملی از نوع اسناد کلید های اصلی که این پیوند هوشمند متصل است جدا شده است." #: serializers.py:141 #, python-format @@ -263,10 +260,8 @@ msgstr "اسناد در لینک هوشمند: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"اسناد پیوند هوشمند \"%(smart_link)s\" به عنوان \"%(document)s\" مربوط به" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "اسناد پیوند هوشمند \"%(smart_link)s\" به عنوان \"%(document)s\" مربوط به" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo index 1eef525f3daf4baa56c13abb16bb2e0af34b1f73..2c8bcb876e6e4b243ec5f4a361567801726f124e 100644 GIT binary patch literal 7300 zcmd6r-H#n*9mk&{3asD@FM>top;)?0d(L)wXG>|9c3W54g0v;Rp`D)doU_xOGjlpK zXSZwRg2;u0cwvkh)I^QJuw3blpvHu7Znz*ZTwy{);Z64;gbS4B!p$+weO0bND!X5l+DC zE;HuK(85o{3-Dv`S*Z3ez)!%JAzjQHa2tH9c)#UxW3J}@dbk_j20sG70@d#fyaGN6 z=ixK(M)*3s3cd>^@_X=;P>rtvTcPA=LZ&kN;7jl@)cg`&^54SGR@j7^Z=ra83jT%r zvrz3H`miw{gb|c{8T=^x7S#CPEBIq5Ier1@YW@JVzE|PL;hRwNy$ks>mtSejH{rEV za(@@f9?!v@@D;cV{QJ+=eYnCFHb>UnIA!o|7$2Ye+zGg zBPhTAJLJ#2$B))?4U@<&4Ji4)1b+g1PU!F`PI|#cK918z5NZ|0k6bK z_rv{A`gsyg!PlYe`yP~j{snJ=mobUt+zB<#T~Pk_39{ zz;~e9ZN)j&ZWmPEI1DxKF{p9B0A>HLLDcEnejb*Gd=FRi#{&h01x}5BKsOv3L&yD` zvU7PzX3evo^AIP~j1R3>hwP(6dbx}9Ax`OD$G#lqUMTrx8`)pF-ovR_d64t7oU+3~ zPE_x0It}GZ(&OhiF`+-?A3BsLWh41ddH5JAZlp)q;!aNG#=V?}IpyCv6wlJ-oNhSe zr}LbIfcHJ%bDaE)bm9-$YL-*JJ;`Y~F_rg8V49q_ao(pJ9dqrrjoh+r#Zf!V!Z=E8 z7TdHRB$@4n(b-wMZF{=S%q<0BFF4(EwjH;IeHUdmTN${t_M+;OngemaAK26lf+WaX zn~~DY#+|jD?H~!6XT_d%D}L7H#jv$#v&As231FAQUeBI(HpsG|wdmSSMlWTpUD_aV z>PF*U+znfH7=;sjU!IG=bVmonClW5j% zXN8GlWtG~>2hwGwiOrv;=Ai4j%oV7$ug1&uzHeg_KYQN4){!CWcJUGy>Wr<6yyYsf z@-gZi*7Z+|KJD?aRfE)qQEg`YW73cOb-Bw_y3GcuOu8TWasK=uacN5EnnQ8o!fsSeK+GiJ=^?JR;Z-Mey|y_tRJ?e7FQAU|F16hx z9uCGs$l55&2h%P)Oos&63W1U>+BEEw6B5EW9=Ie6=^I3Cg}FONGpnE}n)qDNw8zJ3 zg{Hk80qA2<>+&9>^s^WaQo=o3cEoJyIr!rew_!&SyW&F~Cv1nEj>C)@GUl>te&qqB zn(@nga4MFbR+45EKZu{h*!iB{J084v-URi_egAxxvqTN93x#0$y=qY zJ~4WCtd?u4OWX39qg{XG@LNWzH99wRBt|FeuNx|@HTxfEv68XM5%p(Em8B-uORlIZ za#6imr7*=u7`1vsd9x)FaAsV(?bDe|)d>?e5|q_%8X9A1Sv!g=bEQSwHG9a~wrS;s z7kyEUQZ9z3jF~tE8!ngoQQu`jJIDe#oOYfVA*=PL5^{|oT2mBfx%1c7m9ihSv{9C` zk&5KDP4igDhT_h%e=17qqT}mE*&`sij4$kDDAnPSxOP9CE_bf!PBJ|;adhG6e6_xr=I#mVs0>$boWRp&+49b3)9j96 zw8yplqg7`CL#1{pOz=-XE^_ont7%@MhJ?K4 zQbewqGZ>yHQRiZ_sjQbZWnU@E*3oLcpfpDqa9qkz?P3TGJa8GgE%m#tW>+E01gSkY z40mytr00e^^7(w1yrg9b=`M>$QPzg3l9Q!Q=bhZv`C7fbQImCf*uWC?*{}ki!4F7D z2|}$YcZ+AahL93Kw!8Q_xYih86{j@?A`!U^oYdY_9)Kc0XE zqR|bWVdP3{tePtWRl6P=Y)eU0+S#l#l59`?2y2{ii*=)H=85|TzGeGyd-Oa$IQkjOjM|B#GS5Oj9C_pyqr2SXn*dEssc zv3KCK93}lP6zfNVswl^ai$Yxme5qB+cSku=r50bWJ4B&I-Huk3+`G74-G=7CV$iQD^Qx5@J)J2}Wd4JcFPzcyRQ$>@zAo0btC~Jf3^;1> z;im$wOf|d4^7itK;XO=AQPq7CB9RhOUeEh{=)C@w5}BsW*mZ_n=(#*dINYb{qBOZ8L$#zB3WfRE_R{f8mo+hiO2vTKFdIcdF9C1ln&l+P2x3Z^6}oG+pL8oi)RPNJ>fmu3l2 zjj}Ek|6ki`qr7=)#w#~jOPLVHzFsE4^@~=zDN}rrL^hbpn`gm)iO5x|50t|0d=d0X zp~NG(Roksu=-FropQ&Ukzb}lp`dlvTzTPGqx~RcA`>Y>zW0UdlWr&*tt`!ph16)Ui z0TUBWeWE#N#}WBS!KMF(3<*=N$*R8ADKkXVoQyWe%G#9nv^LtuNk}C%R`>=#=cT@F zhyGgfAT5jm~N95_)ndH2sSP=%DL#Fy0DXEH0m}s2--+=)d~Sc&y-R1BdL<= zO3nR;kp6LrrK`qTfFiWVV^hC*zZujn9V%0VinF3;?Fq?m&7jIkestAN)klxT8Wfu0 r==sF`hu81Ff-q7ts|!umV!HY_)j^#t delta 1615 zcmY+^TS${(9LMozZystcUCU{k)0Rs!4|$w6Yw5}X!pm7))N+ie1P5-yD)eFu`|ub#@e!6{2Hm)TdhQz*VRo)PlnG!t??cGv zNz+Zo!;M~S!1I`o_fTJ)!gcr(#+&7)=uIcb=zb|`!dA4f9eKn=Q3LPCVTUniu$}jd)JJEc zg!Jk22oB+KWDn+5KKb89=N&f+(PCL!uox>ag4#(xHsb)QG!q!a494&SD%BwhuFQl{ z-%DTuPoTz~M3rV1m9Ygk`LCn%nHxd$GRkIbMb-EyHsVRtif^Jmzk|xiG-~1VsGTmM z2F_&`oqjj!Y*nJhi=q}5$4X2j=`gn$!eSgl?cgq|1W%Bc`NTz~`h`_k$O)>&C^q3) zv@?Uvyw6}K{y=3Q%qq9zD5`W*sD&mU&2UYM>>gjK;+_R3aa;ITJ&j<|C*9 z22r&g#x}f-dTtK&+#>Q9V3tu6TcktdW+Np|8V?-@H#A8r(M2%#e~m}%-RP!vp%x}I zkg`@yXfkC;O|^~?%Ai^c5he6Lp=|wY)L-e25lX90t^QPW_>>LpjEvi-UiH%%;H=th zFW0Sv>Zmip8T{MyYw93&5J5ss=S632x8AHa=C_+_MuzOv#sA#0f4l1LB6hCaQ;L;F zwMIgz-ACx~?IF5}20~5eW3}mwaTM&5m7{*PYTBf!Cqk*doVoOs+~b w!c~#}>YA~f;kt%Mu(7SZDV%;*;J4Dfo>41x-+L|HSL}AAoW8E~Ro}Ap8}jCWfdBvi diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index f92e6124c3..e0033858a2 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-09 17:25+0000\n" +"PO-Revision-Date: 2019-06-17 20:40+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -147,9 +146,9 @@ msgstr "est une expression régulière (insensible à la casse)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Entrez un modèle à rendre. Utilisez le langage par défaut de Django pour les modèles (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). La variable de contexte {{document}} est disponible." #: models.py:35 msgid "Dynamic label" @@ -170,8 +169,7 @@ msgstr "Erreur de génération du libellé dynamique ; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Un lien intelligent n'est pas autorisé pour le type de document sélectionné." +msgstr "Un lien intelligent n'est pas autorisé pour le type de document sélectionné." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -233,9 +231,7 @@ msgstr "Afficher les liens intelligents existants" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Liste séparée par des virgules des clés primaires de type de document " -"auxquelles ce lien intelligent sera attaché." +msgstr "Liste séparée par des virgules des clés primaires de type de document auxquelles ce lien intelligent sera attaché." #: serializers.py:141 #, python-format @@ -253,7 +249,7 @@ msgstr "Liens intelligents activés" #: views.py:79 #, python-format msgid "Smart links to enable for document type: %s" -msgstr "" +msgstr "Liens intelligents à activer pour le type de document: %s" #: views.py:123 #, python-format @@ -267,11 +263,8 @@ msgstr "Lien inetlligent du document : %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Documents du lien intelligent \"%(smart_link)s\" en relation avec " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Documents du lien intelligent \"%(smart_link)s\" en relation avec \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -291,7 +284,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" +msgstr "Les index regroupent les documents en unités, généralement avec des propriétés similaires et de types identiques ou similaires. Les liens intelligents permettent de définir des relations entre des documents même s'ils se trouvent dans différents index et sont de types différents." #: views.py:195 msgid "There are no smart links" @@ -301,7 +294,7 @@ msgstr "Il n'y a pas de liens intelligents" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" +msgstr "Les liens intelligents permettent de définir des relations entre des documents même s'ils se trouvent dans différents index et sont de types différents." #: views.py:232 msgid "There are no smart links for this document" @@ -326,7 +319,7 @@ msgstr "Modifier le lien intelligent :%s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" +msgstr "Les conditions sont de petites unités logiques qui, lorsqu'elles sont combinées, définissent le comportement du lien intelligent." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index fd4a0cafb2..534079db22 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -143,8 +142,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -260,8 +259,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index c36c8daa25..69bf7e1711 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -142,8 +141,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -259,8 +258,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index 611c2dc764..f9a9cfe5bc 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011-2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -144,8 +143,8 @@ msgstr "è un'espressione regolare (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -167,8 +166,7 @@ msgstr "Errore generando l'etichetta dinamica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Questo link intelligente non è consentito per questo tipo di documento." +msgstr "Questo link intelligente non è consentito per questo tipo di documento." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -230,9 +228,7 @@ msgstr "Vista intelligente dei link esistenti" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Lista separata da virgole di chiavi primarie di tipi documento da allegare a " -"questo smart link." +msgstr "Lista separata da virgole di chiavi primarie di tipi documento da allegare a questo smart link." #: serializers.py:141 #, python-format @@ -264,11 +260,8 @@ msgstr "Documenti nel link intelligente: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Documenti nel link intelligente: \"%(smart_link)s\" è correlato con " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Documenti nel link intelligente: \"%(smart_link)s\" è correlato con \"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.mo index 67e61e2e812cdee0cae5ebee1d4a45bdecccc4ff..ea01cf1364a6a8e33cb4643148a4c3dec2a5c4c2 100644 GIT binary patch delta 711 zcmXxgJxClu6u|N4cRWS8yIkV8>&nT67~?7$@dE@cEDd6*a()!Yc_+9lf)TDr8L&A_ zA=+7KV^~2^(MAx#)69H zz&WhMLu8L!c>f+MCg&bVO->8j9S;m?a6N|VT zzhV*_aRs&T2}bY&H7|$ud$0{_(Z*~{V;=rRYRD?;i)>>R9-%gJg$?-Mi+=`qe|^F_ z)D1nzrDOn`a13?h67tC!gBIMy9Nb5Jkt5V|PTkYodtYJux0VjWvN|pIpmZTC*9_aH z+wWh`%+k++4a*Ei>_l|d8JmtJ<6msE(TGQF!;Z#m=XleJ8PQpTl*yTixx`e`A;G;1 Q_GS5u_Z7o!4qfKG0nN`}H~;_u delta 749 zcmZ9|%S#(k6u{wQYFdrOkfgD`9gzg3K8T`-;!35u5d?QF4e_xEYNXC6_<%t~LAun9 zZbWdS-4w=+sG!z``VSN;Xj@1ZEmm;l(%&)3rZCKR&z*DbIdhZEpIW}myX+1TdEpZ& z!tS(D93h^;JiNg{{EKDS=NEZ}W2o^0R^lc;#}jP8b1c9I45Bw6Qja0@;y^%bDP}Ru zMlRa;9#^mgeP&5n2!fRTjU>$ z%XGp%&xPv-KxG-gx z%_73aAilvhti@y0#, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-31 12:28+0000\n" +"PO-Revision-Date: 2019-06-28 11:18+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:42 msgid "Linking" @@ -144,12 +142,9 @@ msgstr "ir regulāra izteiksme (gadījuma nejutīgums)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes " -"valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Ir " -"pieejams {{document}} konteksta mainīgais." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Ir pieejams {{ document }} konteksta mainīgais." #: models.py:35 msgid "Dynamic label" @@ -232,9 +227,7 @@ msgstr "Skatiet esošās viedās saites" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Komatu atdalīts dokumentu tipu primāro atslēgu saraksts, kurām tiks " -"pievienota šī viedā saite." +msgstr "Komatu atdalīts dokumentu tipu primāro atslēgu saraksts, kurām tiks pievienota šī viedā saite." #: serializers.py:141 #, python-format @@ -266,11 +259,8 @@ msgstr "Dokumenti viedā saitē: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Dokumenti viedā saite "%(smart_link)s", kas saistīti ar "" -"%(document)s"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Dokumenti viedā saite \"%(smart_link)s\", kas saistīti ar \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -290,10 +280,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" -"Indeksē grupas dokumentus vienībās, parasti ar līdzīgām īpašībām un " -"vienādiem vai līdzīgiem veidiem. Viedās saites ļauj noteikt attiecības starp " -"dokumentiem pat tad, ja tās atrodas dažādos indeksos un ir dažāda veida." +msgstr "Indeksē grupas dokumentus vienībās, parasti ar līdzīgām īpašībām un vienādiem vai līdzīgiem veidiem. Viedās saites ļauj noteikt attiecības starp dokumentiem pat tad, ja tās atrodas dažādos indeksos un ir dažāda veida." #: views.py:195 msgid "There are no smart links" @@ -303,9 +290,7 @@ msgstr "Viedās saites nav" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" -"Viedās saites ļauj noteikt attiecības starp dokumentiem pat tad, ja tās " -"atrodas dažādos indeksos un ir dažāda veida." +msgstr "Viedās saites ļauj noteikt attiecības starp dokumentiem pat tad, ja tās atrodas dažādos indeksos un ir dažāda veida." #: views.py:232 msgid "There are no smart links for this document" @@ -330,9 +315,7 @@ msgstr "Rediģēt viedo saiti: %s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" -"Nosacījumi ir nelielas loģikas vienības, kas, kombinējot, definē, kā viedā " -"saite darbosies." +msgstr "Nosacījumi ir nelielas loģikas vienības, kas, kombinējot, definē, kā viedā saite darbosies." #: views.py:306 msgid "There are no conditions for this smart link" @@ -346,7 +329,7 @@ msgstr "Nosacījumi viedai saitei: %s" #: views.py:338 #, python-format msgid "Add new conditions to smart link: \"%s\"" -msgstr "Pievienot jaunus nosacījumus viedajai saitei: "%s"" +msgstr "Pievienot jaunus nosacījumus viedajai saitei: \"%s\"" #: views.py:379 msgid "Edit smart link condition" @@ -355,4 +338,4 @@ msgstr "Rediģējiet viedās saites stāvokli" #: views.py:409 #, python-format msgid "Delete smart link condition: \"%s\"?" -msgstr "Dzēst smart saite nosacījums: "%s"?" +msgstr "Dzēst smart saite nosacījums: \"%s\"?" diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po index 84e13fa422..49ed2c403c 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2013 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -144,8 +143,8 @@ msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -261,8 +260,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index a906ff6908..eb61b65cd5 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2016 @@ -13,15 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:42 msgid "Linking" @@ -147,8 +144,8 @@ msgstr "jest w wyrażeniu regularnym (wielkość liter ma znaczenie)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -232,9 +229,7 @@ msgstr "Przeglądaj istniejące łącza" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Lista rozdzielonych przecinkami kluczy głównych dotyczących typów " -"dokumentów, do których łącze będzie się odnosić." +msgstr "Lista rozdzielonych przecinkami kluczy głównych dotyczących typów dokumentów, do których łącze będzie się odnosić." #: serializers.py:141 #, python-format @@ -266,8 +261,7 @@ msgstr "Dokumenty w łączu: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "Dokumenty w łączu \"%(smart_link)s\" powiązane z \"%(document)s\"" #: views.py:160 diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index ea5533eb20..fdbb3587b2 100644 --- a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Roberto Rosario, 2012 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -145,8 +144,8 @@ msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -262,8 +261,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po index e16072132d..bb986fb26f 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -147,8 +146,8 @@ msgstr "está em expressão regular (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -170,8 +169,7 @@ msgstr "Erro gerando etiqueta dinâmica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Este link inteligente não é permitido para o tipo de documento selecionado. " +msgstr "Este link inteligente não é permitido para o tipo de documento selecionado. " #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -233,9 +231,7 @@ msgstr "Ver os ligações inteligentes" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Lista separada por vírgulas do tipo de documento chaves primárias às quais " -"este link inteligente será anexado." +msgstr "Lista separada por vírgulas do tipo de documento chaves primárias às quais este link inteligente será anexado." #: serializers.py:141 #, python-format @@ -267,11 +263,8 @@ msgstr "Os documentos em referência inteligente: %s " #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Os documentos em link inteligente \"%(smart_link)s\" em relação com " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Os documentos em link inteligente \"%(smart_link)s\" em relação com \"%(document)s\"" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po index fbf3377809..0478e190d6 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-08 07:58+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:42 msgid "Linking" @@ -145,12 +143,9 @@ msgstr "este în expresie regulată (case insensitive)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating " -"implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/" -"builtins/). Variabila context {{document}} este disponibilă." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Variabila context {{document}} este disponibilă." #: models.py:35 msgid "Dynamic label" @@ -171,9 +166,7 @@ msgstr "Eroare la generarea etichetei dinamice; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Această legătură inteligentă nu este permisă pentru tipul de document " -"selectat." +msgstr "Această legătură inteligentă nu este permisă pentru tipul de document selectat." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -235,9 +228,7 @@ msgstr "Vedeți legăturile inteligente existente" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Listă separată prin virgule de chei primare de documente la care va fi " -"atașată această legătură inteligentă." +msgstr "Listă separată prin virgule de chei primare de documente la care va fi atașată această legătură inteligentă." #: serializers.py:141 #, python-format @@ -269,11 +260,8 @@ msgstr "Documente în legătura inteligentă: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Documentele din legătura inteligentă \"%(smart_link)s\" în legătură cu " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Documentele din legătura inteligentă \"%(smart_link)s\" în legătură cu \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -293,11 +281,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" -"Inexurile grupează documente în unități, de obicei cu proprietăți similare " -"și de tipuri egale sau similare. Legăturile inteligente permit definirea " -"relațiilor dintre documente chiar dacă sunt în indecți diferiți și sunt de " -"diferite tipuri." +msgstr "Inexurile grupează documente în unități, de obicei cu proprietăți similare și de tipuri egale sau similare. Legăturile inteligente permit definirea relațiilor dintre documente chiar dacă sunt în indecți diferiți și sunt de diferite tipuri." #: views.py:195 msgid "There are no smart links" @@ -307,9 +291,7 @@ msgstr "Nu există legături inteligente" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" -"Legăturile inteligente permit definirea relațiilor dintre documente chiar " -"dacă sunt în indecși diferiți și sunt de diferite tipuri." +msgstr "Legăturile inteligente permit definirea relațiilor dintre documente chiar dacă sunt în indecși diferiți și sunt de diferite tipuri." #: views.py:232 msgid "There are no smart links for this document" @@ -334,9 +316,7 @@ msgstr "Editare legătură inteligentă:% s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" -"Condițiile sunt unități logice mici care, atunci când sunt combinate, " -"definesc modul în care se va comporta legătura inteligentă." +msgstr "Condițiile sunt unități logice mici care, atunci când sunt combinate, definesc modul în care se va comporta legătura inteligentă." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index 7672f79ad8..a8c3772ba4 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:42 msgid "Linking" @@ -144,8 +141,8 @@ msgstr "В регулярном выражении (без учета регис #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -261,8 +258,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po index 6b41682109..8e77e167a6 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:42 msgid "Linking" @@ -143,8 +141,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -260,8 +258,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po index 0973284f26..49af46703f 100644 --- a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -144,8 +143,8 @@ msgstr "Düzenli ifadede (harf büyüklüğüne duyarsız)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -229,9 +228,7 @@ msgstr "Mevcut akıllı bağlantıları görüntüle" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" -"Bu akıllı bağlantının ekleneceği belge türü birincil anahtarların virgülle " -"ayrılmış listesi." +msgstr "Bu akıllı bağlantının ekleneceği belge türü birincil anahtarların virgülle ayrılmış listesi." #: serializers.py:141 #, python-format @@ -263,10 +260,8 @@ msgstr "Akıllı dokümanlar: %s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"\"%(document)s\" ile ilişkili \"%(smart_link)s\" akıllı bağlantıdaki belgeler" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "\"%(document)s\" ile ilişkili \"%(smart_link)s\" akıllı bağlantıdaki belgeler" #: views.py:160 msgid "Available document types" diff --git a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po index 4d39a9060c..ca01083299 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -143,8 +142,8 @@ msgstr "" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:35 @@ -260,8 +259,7 @@ msgstr "" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:160 diff --git a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po index 560e10e3a8..1a6e8021ea 100644 --- a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -143,11 +142,9 @@ msgstr "在正则表达式中(不区分大小写)" #: models.py:31 models.py:189 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/" -"en/1.11/ref/templates/builtins/)。 {{document}}情景变量可用。" +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)。 {{document}}情景变量可用。" #: models.py:35 msgid "Dynamic label" @@ -262,8 +259,7 @@ msgstr "智能链接中的文档:%s" #: views.py:135 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "与“%(document)s”相关的智能链接“%(smart_link)s”中的文档" #: views.py:160 @@ -284,9 +280,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" -"索引将文档分组为单元,通常具有相似的属性和相同或相似的类型。智能链接允许定义" -"文档之间的关系,即使它们位于不同的索引中且属于不同类型。" +msgstr "索引将文档分组为单元,通常具有相似的属性和相同或相似的类型。智能链接允许定义文档之间的关系,即使它们位于不同的索引中且属于不同类型。" #: views.py:195 msgid "There are no smart links" @@ -296,8 +290,7 @@ msgstr "没有智能链接" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" -"智能链接允许定义文档之间的关系,即使它们位于不同的索引中且属于不同类型。" +msgstr "智能链接允许定义文档之间的关系,即使它们位于不同的索引中且属于不同类型。" #: views.py:232 msgid "There are no smart links for this document" diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po index e80c7adcd3..6ceb074935 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po index 2b6400510c..801d6b558c 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po index f7acfebd5b..866e7ee90c 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po index 3481f14e9a..49cb29b9a3 100644 --- a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po index 41a09c538c..de7801913a 100644 --- a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po index 6ccd8f2977..938e074dbf 100644 --- a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bjoern Kowarsch , 2018 # Mathias Behrle , 2018 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-11-23 10:12+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 @@ -48,14 +47,10 @@ msgstr "Sperren" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "" -"Der Pfad zu der zu nutzenden Klasse für die Aktivierung und Aufhebung der " -"Ressourcensperre." +msgstr "Der Pfad zu der zu nutzenden Klasse für die Aktivierung und Aufhebung der Ressourcensperre." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "" -"Standardzeit in Sekunden nach der eine Ressourcensperre wieder automatisch " -"freigegeben wird. " +msgstr "Standardzeit in Sekunden nach der eine Ressourcensperre wieder automatisch freigegeben wird. " diff --git a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po index 5e23865701..c78d0763a5 100644 --- a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po index 38fdf1c73b..274ae2914e 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2018-2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 @@ -45,13 +44,10 @@ msgstr "Bloqueos" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "" -"Ruta a la clase para usar cuándo solicitar y liberar bloqueos de recursos." +msgstr "Ruta a la clase para usar cuándo solicitar y liberar bloqueos de recursos." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "" -"Cantidad predeterminada de tiempo en segundos después de la cual se liberará " -"automáticamente un bloqueo de recursos." +msgstr "Cantidad predeterminada de tiempo en segundos después de la cual se liberará automáticamente un bloqueo de recursos." diff --git a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po index 7d44ade55a..f28410d0e6 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po index 142c08de3d..dc329067c2 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 # Frédéric Sheedy , 2019 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-05 03:51+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 @@ -47,14 +46,10 @@ msgstr "Verrous" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "" -"Chemin vers la classe à utiliser lors d'une requête ou d'un retrait de " -"verrou." +msgstr "Chemin vers la classe à utiliser lors d'une requête ou d'un retrait de verrou." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "" -"Temps par défaut en secondes après quoi le verrou sera automatiquement " -"retiré." +msgstr "Temps par défaut en secondes après quoi le verrou sera automatiquement retiré." diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po index 3bf12da3ef..e7bd77c924 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po index 4da52013e0..f00378ca7a 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po index 4eac20d3f3..5ae64d8c81 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po index 8a812608f5..a5d789435e 100644 --- a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:36+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" @@ -46,13 +44,10 @@ msgstr "Slēdzenes" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "" -"Ceļš uz klasi, ko izmantot, kad pieprasīt un atbrīvot resursu slēdzenes." +msgstr "Ceļš uz klasi, ko izmantot, kad pieprasīt un atbrīvot resursu slēdzenes." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "" -"Noklusējuma laiks sekundēs, pēc kura automātiski tiks atbrīvota resursu " -"bloķēšana." +msgstr "Noklusējuma laiks sekundēs, pēc kura automātiski tiks atbrīvota resursu bloķēšana." diff --git a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po index 0a53d5bcba..23c2ccc4f6 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016-2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po index 33cd59dc59..4a77171b08 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po index 9e0073dad6..4edc7769b9 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po index 4b84243c16..88cdf89f9c 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po index 7a7ae1be4b..765be73add 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-03-15 11:16+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:10 settings.py:9 msgid "Lock manager" @@ -46,14 +44,10 @@ msgstr "Blocări" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "" -"Calea spre clasă de folosit când să solicite și să elibereze blocarea " -"resurselor." +msgstr "Calea spre clasă de folosit când să solicite și să elibereze blocarea resurselor." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "" -"Valoarea implicită a timpului în secunde, după care se va elibera automat o " -"blocare a resurselor." +msgstr "Valoarea implicită a timpului în secunde, după care se va elibera automat o blocare a resurselor." diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po index 5642ee31f8..7984c6ddb5 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po index a58ec76808..605f6357db 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:10 settings.py:9 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po index e3b14a5c64..468bef64b2 100644 --- a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po index 26d32698e3..8992ef1f06 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po index b38e2e3342..cfc5fac688 100644 --- a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-01-24 02:59+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 settings.py:9 diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo index 2b43bf386f272b0a171bba42bd6be2e92feeab5c..ff88d7fcabb76e052e73ed9753889fd0898f78d5 100644 GIT binary patch delta 23 ecmdnOx`lOvBqNuZu92mJfti(&;bvvViHrb9-36fl delta 23 ecmdnOx`lOvBqNupu92aFfvJ^&@n&VliHrb9V+EH0 diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index 3e727a2318..eae1156293 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:42 msgid "Mailer" @@ -45,8 +43,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -137,8 +135,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -177,8 +175,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -198,8 +196,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo index 80e06a6c2782bcda907d8eaf07e0d89ccc33501a..2f251f771e65da70c98f186ea7f0498ad6f637e6 100644 GIT binary patch delta 23 ecmZqUYUA1v#>8c&Yh8c+Yh, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -45,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -137,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -177,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -198,8 +197,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo index 5862b5b750e5432c277e6df57a8ffd9aa9fb8b94..09078574623869d1ed906556056edec24898bd5d 100644 GIT binary patch delta 1765 zcmYM#Urfzm9LMpmN`H>@Pl+h~RZ*!>O6ufKQHsT8Ty-I8Xg14|&1o*Eae-nr7nn_B zwl;0la#?1ga^cD{7icYv*_sP0@6YKc&-$L%^Lx(k_x$-j&+l}jtu|@bXxn|VFFQWQu$56bEVR#Rt@QL&N zOH5&W8>hk|Yz9Yg4mE)hdXL9()b&r)N@h@7F;ZoTuRmcH@~vq=kIF!R~OgV%m?h@!RnM=HV3X!uUwD3wR7QvCqg@ z_6_OE{-9PG%q*3$aMT2|kTqFZ6#3W857M9xY8~sH8&9J$)P{^{_mMvB87ARt)JlG! zo)6$c1B9Y7nu;38jXHeQsEIv9cG(6zPGtyn;}|Mc6WD-XP={(iy~g1o)ZsgeT4{@8 zJLm9k&B4u7L2l*H4@KnA9v8+A4s zP|sgQWuz0eHT|f=H;dZy9MYJMt*HJVAq(f&yhJDoeQ^(xvQ4!-x`>3R=Q zMWhhBi4tNxq17i75ri_P!Z|dzDimc&DKF9mg`?yx%7#iN;n5zI5jxc>I|%K&521a{ zBX$x>vC77Iyj!8|+3Q^EET{w#n+R>ezp{-=Ai)lLPrcf=5}X4i<$p<~noqDr3q_~A va^Y(JAC-PoDhOYqx?|XXsP9%lqsx_-nOhK_omZHf(-#uaH?8e delta 1811 zcmYk-OGs2v9LMp0W|LZ(I!;f^nck+BO`2ssvWLCj zIwFNQA7!>j^+9}49(c@V;X@4KPt3p>gUvE=GY-Y$cnq77KTD12YoF?xjnT9h<2WqA zQDza_MP(Qb2QU^JP!DKA#K8x_l!qg*$Zao0jT6E$ zJb>|xZ=F=)X!w8{xEJ}eAAIOR(R{fPV^K-jiUHh-1Mw&h!Q-g=notwJgnHgp9F8rR zfOpY{PxU?HTQ`--*n=#_ygcm@rl2P95&hWXUdNMft;CDkvH*_6Lezkz?)5e-=DHTO zbvLmDKVvQic}PS9R8moDL#PyM>i7&NU`)K(DNIKVblbHZwW7z!9PJ%yLSNl> z56fpvOF=C#4cB0BIQiEe9i%~r;v6<$8}1umwvc>1!L~$JNBa>rej(n+Ip|3?TY?3s z)E>rqJcF8`msv3f8;d;BrlWHOSsp$_45 zWGw5(iTDGxpz(a@{v6bO1*pt!LXA^}I)wWpR5Y`f$oAU@*Irb|->8%g;VBiEj5=KP zI3ACp4&fElO0T)zK=tcDP2`E&{sJ{#7wYYae5az0@l0ohN?Cy3({T!F zLhDf(D8p%3g*qc=QTN|MW#k@ei{7ISVFu~b-fzb=z5gv#G(ab6MQ@NX?HB67zOiQW zun=cr9X8@M)K=xQk;>FEWGz;TnphQT0*5daue$9Ws0_Tqa=rhbs4zKO#|hMcm3Ryr zv4+E!!mPk4bafsUK+dGiCp76fgo+NQiZZF9UrtRrlhAKR5uve^sYS#X#cFGDqmBJ~+a$*6Y*Hu~5?}%2PN2qXooZkS|bw0F(1-hUpTN>Ya zb>s|UHnEi8AUkC-pXo#t5kuq>+E1N&mFzy8_dARFYWG^HSJ9!)A^gO@Qb;A1;M{F+ z_E2Bs6FLX~7j4H}f}Q9u+PhW#SAGAuwEruKfyCOz>z?+ZllS?{!{Jcazc;kIwQg`I lE-oiCILn`vlb1ES^;=?1R6>7`>hO-;q1uYp^5j2pe*qxtoRR, 2018 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:42 msgid "Mailer" @@ -46,11 +44,9 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"E-mail adresa primaoca. Mogu biti višestruke adrese razdvojene zarezom ili " -"tačka-točka." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "E-mail adresa primaoca. Mogu biti višestruke adrese razdvojene zarezom ili tačka-točka." #: forms.py:62 forms.py:124 msgid "Email address" @@ -123,11 +119,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Priloženo ovoj poruci je dokument: {{document}}\n" -"\n" -" --------\n" -" Ovaj email je poslat iz %(project_title)s (%(project_website)s)" +msgstr "Priloženo ovoj poruci je dokument: {{document}}\n\n --------\n Ovaj email je poslat iz %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -136,11 +128,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Da biste pristupili ovom dokumentu, kliknite na sledeći link: {{link}}\n" -"\n" -"--------\n" -" Ovaj email je poslat iz %(project_title)s (%(project_website)s)" +msgstr "Da biste pristupili ovom dokumentu, kliknite na sledeći link: {{link}}\n\n--------\n Ovaj email je poslat iz %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -148,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -176,9 +164,7 @@ msgstr "Koristite TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Da li da koristite TLS (sigurno) vezu prilikom razgovora s SMTP serverom. " -"Ovo se koristi za eksplicitne TLS veze, uglavnom na portu 587." +msgstr "Da li da koristite TLS (sigurno) vezu prilikom razgovora s SMTP serverom. Ovo se koristi za eksplicitne TLS veze, uglavnom na portu 587." #: mailers.py:52 msgid "Use SSL" @@ -190,15 +176,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Da li da koristite implicitnu TLS (sigurnu) vezu prilikom razgovora s SMTP " -"serverom. U većini dokumentacija za e-poštu ova vrsta TLS veze se naziva " -"SSL. Obično se koristi na portu 465. Ako imate problema, pogledajte " -"eksplicitnu postavku TLS \"Use TLS\". Imajte na umu da se \"Use TLS\" i " -"\"Use SSL\" međusobno isključuju, tako da samo jedan od tih postavki " -"podesite na True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Da li da koristite implicitnu TLS (sigurnu) vezu prilikom razgovora s SMTP serverom. U većini dokumentacija za e-poštu ova vrsta TLS veze se naziva SSL. Obično se koristi na portu 465. Ako imate problema, pogledajte eksplicitnu postavku TLS \"Use TLS\". Imajte na umu da se \"Use TLS\" i \"Use SSL\" međusobno isključuju, tako da samo jedan od tih postavki podesite na True." #: mailers.py:64 msgid "Username" @@ -208,9 +188,7 @@ msgstr "Korisničko ime" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Korisničko ime koje treba koristiti za SMTP server. Ako je prazna, " -"autentikacija se neće pokušati." +msgstr "Korisničko ime koje treba koristiti za SMTP server. Ako je prazna, autentikacija se neće pokušati." #: mailers.py:73 msgid "Password" @@ -219,12 +197,9 @@ msgstr "Lozinka" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Lozinka za korištenje za SMTP server. Ovo podešavanje se koristi zajedno sa " -"korisničkim imenom prilikom autentikacije na SMTP serveru. Ako je bilo koja " -"od ovih podešavanja prazna, autentikacija neće biti pokušana." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Lozinka za korištenje za SMTP server. Ovo podešavanje se koristi zajedno sa korisničkim imenom prilikom autentikacije na SMTP serveru. Ako je bilo koja od ovih podešavanja prazna, autentikacija neće biti pokušana." #: mailers.py:85 msgid "Django SMTP backend" @@ -258,9 +233,7 @@ msgstr "Labela" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Ako je podrazumevano, ovaj mailing profil će biti unapred izabran na obrazcu " -"za dostavljanje dokumenata." +msgstr "Ako je podrazumevano, ovaj mailing profil će biti unapred izabran na obrazcu za dostavljanje dokumenata." #: models.py:54 msgid "Default" @@ -352,8 +325,7 @@ msgstr "Šablon za liniju naslova linka e-poruke." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "" -"Šablon za link dokumenta e-pošte oblikuje tekst tela. Može uključiti HTML." +msgstr "Šablon za link dokumenta e-pošte oblikuje tekst tela. Može uključiti HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -438,6 +410,3 @@ msgstr "" #, python-format msgid "Test mailing profile: %s" msgstr "Test mailing profila: %s" - -#~ msgid "%s error log" -#~ msgstr "%s error tragovi" diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.mo index 49e3069306fb3782d26761381765e2e4ce16c4e7..9196cdec33974c6106f20bc2ce24d4bc9ff62163 100644 GIT binary patch delta 21 ccmcb@a)o8WMJ_X4BTEGXGb!2><{9 diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po index 2118f32f73..6bb927eb2a 100644 --- a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:42 msgid "Mailer" @@ -45,8 +43,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -137,8 +135,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -177,8 +175,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -198,8 +196,8 @@ msgstr "" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.mo index b4172c9495a9ea9a2cd80b0ab4d005cb8bb8be02..4cd8dce5dd3de1a512794d995b532a97dabe06be 100644 GIT binary patch delta 23 ecmX@jdYW}Z1|yf5u92mJfti(&;pQU7NJaotD+V59LMpqxr{yGVwk5NHV@k_cXwROJj}y9Y?#L(%vJK3)$URx7pVy$BFhrW z{_w|&+wg}!BsDdmm|DbG(PA}G#`5s~+?)SdV@7#OO@0{=X{_drMrum^aZr6E3 zTT2WjUdI{}!s_n4(JsarlZ{pA!v@U4-{`^2p2m#Db$AR9BOjUgUdAM%8s%bBTg{>~h=Gkb5ci^fa0+>uYTh(q4feoV)c5N!6`x=~Y{kL&%Z?9>kABaGx?v%v zV6h$FhDqA$Av){%;1nifEAlcO)@}*W1tcSLn-tW9jx`-ua-D%n+CdzNN3k2$ATM)+ zH~s!LY9seCPN}Y^(;J^+AAF1ZupI~BPV%S>9Kv)whNRBaA}{lpH?nS;umRtr7FbIf z9SozcU!XGE#G8)#BZic67u(hihN7<1Fdy?!XMPY1@Fq^d4%CERR;?qLj5?BH%)%Y0 z?_I!A_ykp7U+@erW|z9(t3KpkofZbP(@)5zO-$eDLXuG9>By$cbkt54;!<3WI@2qt zjNHK!*oeUxV*>7|jTFcX#uqVJ9#*0s9}Xb@T4^T(nV7?DyRa0sum;qPpCfabX4C?| zBAYRPP&e*P+WMo%ItP`Z66*%k!UNWwsGS9YK`khO0?|f7sCiDK2di+1p8t9}N^uJ+MeXJ8W#{+m3zoQmj#fP#6_4_a?6OWK2nCGbZ+fbS5?nF1*7dM3%NTs9H?n6D_ zC-E%a!gDb!VkA!l*IjMA?P#)TM4`Pdv5H(mS(`y9YpOA|S;S;QM=*&9DV0-+d_t?{ z?>}}L&8DLruOi6ye@!V@%Z_5E<2aqas*_BcCH8~0 zR-p>b`R7{Q1@^kwN?}Kuo(eS`nc7T3=e~kaov7(p$3%M3$Iq?v&$I&*P?fE=h$tX9 zvPcom#npt)S4G8%sCpxfGB6Vf74I@4kI*r8wJCIT{ws+LJ2=PcRVr0H$#y`MyT-YGkIbMIRFFVsqi!TZUD?F>p1ABtI0~KZExz38REnCYg$}kux R-%%Dm(mydad^Kf%;$LcewYmTR delta 2076 zcmY+_e`r-@9LMpmHs^k4*WI}+^=!3f`{8uD&AB`CF1;&tn$GeXOLTB`V|U%S*FYC| zgzN_dVGjS0;b4eh>3>5Zq9FW3WFeJ8$WRLWqtJgcQ;SI7pK~6A9`-%2=Q%s)JkRre zo^$TCbz=$tMkMc;QFai|5;td>`FM5~2g>Q$X3Ow%Y{qG9z_J3fM(n^^9K;g*3_r$k zez6%%$1sc@zR$mDGyYG8Hld>1k) zOQL3)!cF)#YE8dJW#lS;f_E@C!|Y(h>;t^R2I=Jde$pAk^HK8OO63nuXry&Kr5^i{ zd+bvj!U@y>OBsy@5JmmJ8a2=sWO5cq4PXnFW5#(Hm8s*-anuA(`mS;owR_JYec2_~ z{u%YayQmH#F&em4Q4KUYm6u>a|?#Y(m}Fipo$NHJ~2UM7~9yeiot44L$iF)8#)C{+whx<`Wb{uPQ0$;&PxE>>ucBlrzYU^^!@@M-6-sQdp!WunLnKTJ{7 z^P8~Pr_xPDGwsEl*oR8(SE%>=G9JadI68yxK$RK%SL$3%ov$J`x^~hjItUVIs|jUI z15okTaA+m8rY(flvYqH6v~K(y1ZmaG+lX02523P^(7-iF6~+~OIfDj=IH9F_ogkV2 zE1ScXAADF;j}b2tnmHK_mIQ(yCaIzgx`Jp@!xgQm%9fDe+pntLB9%mly@VTxUgCLo zu2Ji+&7q>T(ks}Y24xAMS4Bk|rkn5x?UA*_8-!lHR|<?5m)#+_sd^=6j9kBwipM zmz7j_8*Lj=ui2=)91{H0>iyM@R#{AJ4{H42IEzM)&Aweylk-y9Y$ofaGkYfw6`U+C zY-wz6^O~2fT0YuPURl+%d*8s|?wr?^8px(oUTipQ_pcdl&n@X699cctTV66V!ebJt WfpjYSPBybIGn7fECwEr7SMmr!1h?V< diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po index 7e63657cf3..c18290801b 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-27 21:31+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -46,11 +45,9 @@ msgstr "E-Mail verschickt" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"E-Mailadresse des Empfängers. Es können mehrere Adressen eingetragen werden, " -"getrennt durch Komma oder Semikolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "E-Mailadresse des Empfängers. Es können mehrere Adressen eingetragen werden, getrennt durch Komma oder Semikolon." #: forms.py:62 forms.py:124 msgid "Email address" @@ -123,11 +120,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Anlagen: {{ document }}\n" -"\n" -" --------\n" -" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "Anlagen: {{ document }}\n\n --------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -136,12 +129,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: " -"{{ link }}\n" -"\n" -"--------\n" -" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: {{ link }}\n\n--------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -149,11 +137,9 @@ msgstr "Von" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." -msgstr "" -"Die Adresse des Absenders. Einige Systeme verweigern die Verarbeitung von " -"Nachrichten, wenn dieser Wert nicht gesetzt ist." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." +msgstr "Die Adresse des Absenders. Einige Systeme verweigern die Verarbeitung von Nachrichten, wenn dieser Wert nicht gesetzt ist." #: mailers.py:32 msgid "Host" @@ -179,9 +165,7 @@ msgstr "TLS benutzen" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Ob eine TLS-gesicherte Verbindung zum SMTP-Server benutzt werden soll. Es " -"werden explizite TLS-Verbindungen aufgebaut, üblicherweise an Port 587." +msgstr "Ob eine TLS-gesicherte Verbindung zum SMTP-Server benutzt werden soll. Es werden explizite TLS-Verbindungen aufgebaut, üblicherweise an Port 587." #: mailers.py:52 msgid "Use SSL" @@ -193,15 +177,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Ob eine implizite gesicherte TLS-Verbindung zum SMTP-Server benutzt werden " -"soll. In den meisten Dokumentationen wird dieser Typ der TLS-Verbindung als " -"SSL referenziert. Er wird üblicherweise an Port 465 bereitgestellt. Wenn Sie " -"Probleme feststellen, sehen Sie auch die explizite Einstellung \"TLS benutzen" -"\". TLS und SSL schließen sich gegenseitig aus, also setzen Sie nur eine der " -"beiden Einstellungen." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Ob eine implizite gesicherte TLS-Verbindung zum SMTP-Server benutzt werden soll. In den meisten Dokumentationen wird dieser Typ der TLS-Verbindung als SSL referenziert. Er wird üblicherweise an Port 465 bereitgestellt. Wenn Sie Probleme feststellen, sehen Sie auch die explizite Einstellung \"TLS benutzen\". TLS und SSL schließen sich gegenseitig aus, also setzen Sie nur eine der beiden Einstellungen." #: mailers.py:64 msgid "Username" @@ -211,9 +189,7 @@ msgstr "Benutzer" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Benutzername für den SMTP-Server. Bei leerem Feld wird keine " -"Authentifizierung durchgeführt." +msgstr "Benutzername für den SMTP-Server. Bei leerem Feld wird keine Authentifizierung durchgeführt." #: mailers.py:73 msgid "Password" @@ -222,12 +198,9 @@ msgstr "Passwort" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Passwort für den SMTP-Server. Diese Einstellung wird in Verbindung mit dem " -"Benutzernamen für die Authentifizierung am SMTP-Server verwendet. Wenn eine " -"dr beiden Einstellungen leer ist, wird keine Authentifizierung versucht." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Passwort für den SMTP-Server. Diese Einstellung wird in Verbindung mit dem Benutzernamen für die Authentifizierung am SMTP-Server verwendet. Wenn eine dr beiden Einstellungen leer ist, wird keine Authentifizierung versucht." #: mailers.py:85 msgid "Django SMTP backend" @@ -261,9 +234,7 @@ msgstr "Bezeichner" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Wenn als Standard gesetzt, wird dieses Mailprofil auf dem " -"Dokumentenmailformular voreingestellt." +msgstr "Wenn als Standard gesetzt, wird dieses Mailprofil auf dem Dokumentenmailformular voreingestellt." #: models.py:54 msgid "Default" @@ -351,13 +322,11 @@ msgstr "Link für Dokument: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung." +msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "" -"Vorlage für den Textkörper einer Dokumentenlink-Mail. Kann HTML enthalten." +msgstr "Vorlage für den Textkörper einer Dokumentenlink-Mail. Kann HTML enthalten." #: settings.py:24 msgid "Document: {{ document }}" @@ -365,8 +334,7 @@ msgstr "Dokument: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" -"Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung." +msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." @@ -433,9 +401,7 @@ msgstr "" msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "" -"Mailprofile sind E-Mailkonfigurationen. Mailprofile erlauben das Senden von " -"Dokumenten als Anhänge oder als Links." +msgstr "Mailprofile sind E-Mailkonfigurationen. Mailprofile erlauben das Senden von Dokumenten als Anhänge oder als Links." #: views.py:237 msgid "No mailing profiles available" @@ -445,6 +411,3 @@ msgstr "Keine Mailprofile vorhanden" #, python-format msgid "Test mailing profile: %s" msgstr "Mailprofil %s testen" - -#~ msgid "%s error log" -#~ msgstr "%s Fehlerprotokoll" diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.mo index a8483cc3a6aa00aed44a08743dafca02cac11fe7..819781918a27e499cb997fbcada8f27eaf2865f6 100644 GIT binary patch delta 1467 zcmX}sTS!zv9LMp0=Dp0+)HJg--Aq$kH{DH3OYAPGDU=)KLl6;xVFm>eOHt89$S~<4 zDhhfDq02smkBbF@6&VrXLj_6HLljifOVRgt_SoR;XXfmlng9G}#%pcQTf^@%S#BAyS*K!RB{UO_*OVg*iPB^D=|oyQ%hS0-^WzQ=|52h%Vo$t(p+kUy*9 zgRjCCprIc&U_S12?RB5`qXxch#QRa>9L7#O ziV4hbV>F6*@B(M!cbtPiQ7`I)NG%o9F$3pg5oV(wHPII26>GDQ7MmL5I>;?C?q;%su-2IM%4Gaa4BBK0eplSuX%3F7F58U zs6Y>5xRu5c8cJ;xwRdmv5>8{^EVI*uyAP+y?`EEdSiZcCoA8UPFT?B^{bQ&JHe~W1 zZpS_N02N?bmRTP9vdF&<-8LRDh8@5zJdT|>fj#J55IdY#QGq_hZX81$)>4*Li>L4v zK1OZnMSfh2!>D;);u8FdrI?mW{zqukl7AhZZ>WL(Vj0$uU;VHfy?72QaTptM(lw9e zY^C3YB+c%i0=SQ(WNreLk)cIq8}TM;!Bb%xO8GDMi!8$Q(+{Cu=*M0h!jqW9k8j~w z)I{DwfWTRpJLrc$(qOR`Alz|m#V*Weqt0L-HnM`> zn9cPFmYC6X$~spCqS8cNOI6B~sJbmG#O^FcE7naSM&|&t3t{K3uI7Q#-9W9Nsw}56 zr>&$aKozoRRn#?9&XRFFtei?RtcI$htHm0e?NMJv|G?s?#O{<8u0bbPbT~)0jH=Xg zZJoWYLlw5zITHa~PgNTAe`2QakI*>qPSM%$#G1Csm0S3~u**(~pLwFeeQt*>a_(n6 jmJZ%XcoOMJ{E?g*sPxx)e1Up@b>vWbSzIKV@h1Bp+yZ{y delta 1506 zcmXxkOHhqr9LMp0S4l}HiEa)`MJHV(U38lv#wfHXxlAsN7IIXkMJ@+pj2VO}Q@dO? z%vdljuwX{aScDoGb|)J%W>`|=vhe-Ay*<?^Lo?-+)$v|fPms29`t&_uH^4)bskR$?MHpayC~y08u$!yeRtwamtgb*S&{ z7|Zz9K}D%Qg-JMs>gbXC{V6K-6Ig;_%t{@UqcT;E%G_Sm|4-sde26!29MxYd`y|^@ z6Fz|f&GZtLdc2NGZ4kA0zwinskl*eQvtc}h2`s;k=RGW6zQ8RQ89(a|%;oz4zQvcQ zar!*GkAt`m|9Hs1X4;fswhVhwnHWH&_Axf&C^llsVh$MkQSE}L3ID|d=wVqpyq#E# zWB36>Xr!(Eh^ufK^?q^^`Cm?@guG{A6F$QL>JXKZS9P=%bMP#x-F?i&3H0GKR$>OL zkcV*_-bIpVKTs3+jjzaH3j3yvOa)TRHdFbAT5%rJQtGQv&-bJD{vPUuPuPi5cm{XT zco@e~1Nqb0PCShb7{=;Yqcx&#$0UBiJn!rR1941CD^17U=tCB7=Wq;%uo;iAPZ#ky zR)%nz$zvkdvs6J>-7TWA}I5~7CSGC02%;1vCqc-*>vFG!$M*1Kw(=1OX|Tho1>D+O-F ziyTxdC$jsmMZAv5?Dn>Gb@{uz$NWb}c1He;iZ1pQ7I^cE%kqmx>f>@kBWUsdN&jGK K)<{qM=fwXFN{0;q diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po index 317875e73d..8cdcaf8be7 100644 --- a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -44,11 +43,9 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"Διεύθυνση του παραλήπτη. Μπορεί να περιέχει πολλαπλές διευθύνσεις χωρισμένες " -"με κόμμα (,) ή ελληνικό ερωτηματικό (;)" +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "Διεύθυνση του παραλήπτη. Μπορεί να περιέχει πολλαπλές διευθύνσεις χωρισμένες με κόμμα (,) ή ελληνικό ερωτηματικό (;)" #: forms.py:62 forms.py:124 msgid "Email address" @@ -121,11 +118,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Το μήνυμα αυτό περιέχει συνημμένο το έγγραφο: {{document}}\\n\n" -"\n" -"--------\n" -"Αυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" +msgstr "Το μήνυμα αυτό περιέχει συνημμένο το έγγραφο: {{document}}\\n\n\n--------\nΑυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -134,11 +127,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Για να δείτε αυτό το έγγραφο πιέστε τον παρακάτω σύνδεσμο: {{ link }}\n" -"\n" -"--------\n" -" Αυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" +msgstr "Για να δείτε αυτό το έγγραφο πιέστε τον παρακάτω σύνδεσμο: {{ link }}\n\n--------\n Αυτό το μήνυμα έχει σταλεί από %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -146,8 +135,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -174,10 +163,7 @@ msgstr "Χρήση TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Αν θα γίνει χρήση του TLS (ασφαλής σύνδεση) κατά την σύνδεση με τον " -"διακομιστή αλληλογραφίας SMTP. Χρησιμοποιείται όταν έχει ζητηθεί ρητά η " -"χρήση σύνδεσης TLS, συνήθως στην θύρα 587." +msgstr "Αν θα γίνει χρήση του TLS (ασφαλής σύνδεση) κατά την σύνδεση με τον διακομιστή αλληλογραφίας SMTP. Χρησιμοποιείται όταν έχει ζητηθεί ρητά η χρήση σύνδεσης TLS, συνήθως στην θύρα 587." #: mailers.py:52 msgid "Use SSL" @@ -189,15 +175,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Αν θα γίνει χρήση ασφαλούς σύνδεσης TLS κατά την σύνδεση με τον διακομιστή " -"αλληλογραφίας SMTP. Στα περισσότερα εγχειρίδια χρήσης αυτός ο τύπος σύνδεσης " -"TLS αναφέρεται ως SSL. Ως επι το πλείστον κάνει χρήση της θύρας 465. Αν " -"συναντήσετε προβλήματα κατά την σύνδεση,δοκιμάστε να ρυθμίσετε ρητή χρήση " -"του πρωτοκόλου TLS. Σημειωτέον ότι οι επιλογές \"Χρήση TLS\" και \"Χρήση SSL" -"\" δεν μπορεύν να χρησιμοποιηθούν ταυτόχρονα, οπότε ενεργοποιήστε μόνο μια." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Αν θα γίνει χρήση ασφαλούς σύνδεσης TLS κατά την σύνδεση με τον διακομιστή αλληλογραφίας SMTP. Στα περισσότερα εγχειρίδια χρήσης αυτός ο τύπος σύνδεσης TLS αναφέρεται ως SSL. Ως επι το πλείστον κάνει χρήση της θύρας 465. Αν συναντήσετε προβλήματα κατά την σύνδεση,δοκιμάστε να ρυθμίσετε ρητή χρήση του πρωτοκόλου TLS. Σημειωτέον ότι οι επιλογές \"Χρήση TLS\" και \"Χρήση SSL\" δεν μπορεύν να χρησιμοποιηθούν ταυτόχρονα, οπότε ενεργοποιήστε μόνο μια." #: mailers.py:64 msgid "Username" @@ -207,9 +187,7 @@ msgstr "Όνομα χρήστη" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Όνομα χρήστη που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αν μείνει κενό, " -"δεν θα γίνει προσπάθεια ταυτοποίησης." +msgstr "Όνομα χρήστη που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αν μείνει κενό, δεν θα γίνει προσπάθεια ταυτοποίησης." #: mailers.py:73 msgid "Password" @@ -218,13 +196,9 @@ msgstr "Κωδικός πρόσβασης" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Κωδικός πρόσβασης που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αυτή η " -"επιλογή χρησιμοποιείται σε συνδιασμό με το όνομα χρήστη για την ταυτοποίηση " -"στον διακομιστή SMTP. Αν οποιοδήποτε από τα δύο πεδία είναι κενό, δεν θα " -"πραγματοποιηθεί ταυτοποίηση. " +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Κωδικός πρόσβασης που θα χρησιμοποιηθεί για τον διακομιστή SMTP. Αυτή η επιλογή χρησιμοποιείται σε συνδιασμό με το όνομα χρήστη για την ταυτοποίηση στον διακομιστή SMTP. Αν οποιοδήποτε από τα δύο πεδία είναι κενό, δεν θα πραγματοποιηθεί ταυτοποίηση. " #: mailers.py:85 msgid "Django SMTP backend" @@ -258,9 +232,7 @@ msgstr "Ετικέτα" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Αν οριστεί σαν προκαθορισμένο, αυτό το προφίλ θα είναι προ-επιλεγμένο στην " -"φόρμα αποστολής εγγράφου. " +msgstr "Αν οριστεί σαν προκαθορισμένο, αυτό το προφίλ θα είναι προ-επιλεγμένο στην φόρμα αποστολής εγγράφου. " #: models.py:54 msgid "Default" @@ -296,8 +268,7 @@ msgstr "" #: models.py:216 msgid "Test email from Mayan EDMS" -msgstr "" -"Δοκιμαστικό μήνυμα από το Σύστημα Διαχείρισης Ηλεκτρονικών Εγγράφων Mayan" +msgstr "Δοκιμαστικό μήνυμα από το Σύστημα Διαχείρισης Ηλεκτρονικών Εγγράφων Mayan" #: models.py:234 msgid "User mailer log entry" @@ -349,9 +320,7 @@ msgstr "Δεσμός για το έγγραφο: {{document}}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Πρότυπο για την γραμμή θέματος φόρμας μηνύματος για την αποστολή συνδέσμου " -"σε έγγραφο." +msgstr "Πρότυπο για την γραμμή θέματος φόρμας μηνύματος για την αποστολή συνδέσμου σε έγγραφο." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." @@ -440,6 +409,3 @@ msgstr "" #, python-format msgid "Test mailing profile: %s" msgstr "Δοκιμή προφίλ ηλεκτρονικού ταχυδρομείου: %s" - -#~ msgid "%s error log" -#~ msgstr "%s ημερολόγιο καταγραφής" diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo index e77d23f5045779bb5940925e1b0931a148875698..2d329abec2bfb4a72ea033193d228fe7f5ff4d40 100644 GIT binary patch delta 1991 zcmYk+d2CEk6vy$?g>G6@)y|Zb(w25mOzpLHET#6?LyAy@Nc_P=kV+G=#4aKPK{RP5 z_{SEp{6UZ))~Fz8NGyLoEg2V+@`|K6ZwSet!XVkZTyH zP~T?I81G{fti`qX6`SJ{;;0C0z$~mpLTA;;$L?|=>h=up;2YEis|lkIL#X*9RAirV zQK~v06uU>~eUEtt=)m4e==l$2sFE=GNCFLuOxsQUVb zJFtXP>Ul4k5PuEcaziKmgdEzUnnpH~jJltN9LkDNCmn_3Z~`i)M^O>Eh*kI)S4El4 zOEp`7k13EK_X8|82DjoceAt}$7c*$dDg$vQp29<@jTI9P*0La~$YvpXw3VnFZo*Eu z4OM*SP#e09+VCsqC)B~}QNN2NTuMQb$H2!R8}-A{n2B>yC)$Eq_&Dl^mr)_Vff-oq zjN(hHnRh~Ma6c;7r=1s3MST;=f;~VLtM{6LLi!#n@Qa(z<|$p7m!qn7Cn^<(Fb!)^ zk-3Fh@G0uSACair4-8?WHfDV68W%H>o^BHt@fJ=Pbx}v7qQX53?P1kdJ(LLp^FMSAI z1rkl?`Qg{25LG04Wz-Z#?OX+_=A$QT;M!oMd~6b3k@&yqbyX{fU`0sUyl@ebDjVzm zppgGs-QkBAoz+TQ1kmZmd+KD*wunnsTnfQX5Sl zL8k=5MOBQG>8kuu^bERcMU8q2SF~zjJiR}i%Kq2-Fj9KU=&A#?p%E-!p;YmtxEoz? oiW~c#3A<0keGVOoKbDkOnCI{3%P$Q03qmDn715zb=}%Jr0HV>Wg8%>k delta 2048 zcmY+_TWn2P9LMp$s;bf|b*TF;s--VYG8u7s7?VhxL=1hHWQK@{WDu7=6fuMEZ|_ZF<^1<&t=)ar-s`{q`?RN~ ztJZxqH1&wl))QlhrzvJGUhc<%cA>x7OuUE@{2PlgE8Q%N^RWQ8;2=DNzu+n4QY#qX zpP!DIj28ss8cfx#8t9DW4;wKTci;#-jQTsBE*w9PmiTfOrvbuS&==p=5yF3iHTfo60q6zHHHpa{8_%|cCB9$1NM7%xL5 zuM_j|4EDua$j5GT(Dxr;no|9cjwXJJgYhM1 z>(+}&{ET|QB&&1q9%}p+wcuV3uJ$~Ycs*+GJ8>!A#W@(_X*FRT zD%JIr0dns+X^AdC<|Gs!`8g^Iki8OM~$u ztR>bEdZX0B+W!K-?^Uth>Ed9lJy%7m)ey@Fhfq;f6YB`Q0V@c0%-d@)%Ee|7+R`71 za$+*^waul&+iGixBCSTP%E$Xxn@L}`p&BFrzdand?MmltoGs;bCnlqwAwBTjCwDcBeV&UmA@&+nQocPJTRbV)$QKUjRiX Bw+R3M diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 49440e11f0..c42f1c632c 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-28 20:24+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -47,11 +46,9 @@ msgstr "Email enviado" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"Dirección de correo electrónico del destinatario. Pueden ser varias " -"direcciones separadas por coma o punto y coma." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "Dirección de correo electrónico del destinatario. Pueden ser varias direcciones separadas por coma o punto y coma." #: forms.py:62 forms.py:124 msgid "Email address" @@ -67,9 +64,7 @@ msgstr "Cuerpo" #: forms.py:70 msgid "The email profile that will be used to send this email." -msgstr "" -"El perfil de correo electrónico que se utilizará para enviar este correo " -"electrónico." +msgstr "El perfil de correo electrónico que se utilizará para enviar este correo electrónico." #: forms.py:71 views.py:238 msgid "Mailing profile" @@ -126,13 +121,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Se adjunta a este correo electrónico es el documento: {{ document }}\n" -"\n" -"\n" -"--------\n" -"Este correo electrónico ha sido enviado desde %(project_title)s " -"(%(project_website)s)" +msgstr "Se adjunta a este correo electrónico es el documento: {{ document }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -141,13 +130,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n" -"\n" -"\n" -"--------\n" -"Este correo electrónico ha sido enviado desde %(project_title)s " -"(%(project_website)s)" +msgstr "Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -155,11 +138,9 @@ msgstr "Desde" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." -msgstr "" -"La dirección del remitente. Algunos sistemas rechazarán enviar mensajes si " -"este valor no está establecido." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." +msgstr "La dirección del remitente. Algunos sistemas rechazarán enviar mensajes si este valor no está establecido." #: mailers.py:32 msgid "Host" @@ -185,9 +166,7 @@ msgstr "Utilizar TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Si desea utilizar una conexión TLS (segura) al hablar con el servidor SMTP. " -"Se utiliza para conexiones TLS explícitas, generalmente en el puerto 587." +msgstr "Si desea utilizar una conexión TLS (segura) al hablar con el servidor SMTP. Se utiliza para conexiones TLS explícitas, generalmente en el puerto 587." #: mailers.py:52 msgid "Use SSL" @@ -199,15 +178,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Si desea utilizar una conexión implícita TLS (segura) al hablar con el " -"servidor SMTP. En la mayoría de la documentación de correo electrónico, este " -"tipo de conexión TLS se denomina SSL. Generalmente se utiliza en el puerto " -"465. Si experimenta problemas, consulte la configuración TLS explícita " -"\"Usar TLS\". Tenga en cuenta que \"Usar TLS\" y \"Usar SSL\" son mutuamente " -"excluyentes, por lo que solo debe activar una de esas configuraciones." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Si desea utilizar una conexión implícita TLS (segura) al hablar con el servidor SMTP. En la mayoría de la documentación de correo electrónico, este tipo de conexión TLS se denomina SSL. Generalmente se utiliza en el puerto 465. Si experimenta problemas, consulte la configuración TLS explícita \"Usar TLS\". Tenga en cuenta que \"Usar TLS\" y \"Usar SSL\" son mutuamente excluyentes, por lo que solo debe activar una de esas configuraciones." #: mailers.py:64 msgid "Username" @@ -217,9 +190,7 @@ msgstr "Usuario" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Nombre de usuario para usar para el servidor SMTP. Si está vacío, no se " -"intentará la autenticación." +msgstr "Nombre de usuario para usar para el servidor SMTP. Si está vacío, no se intentará la autenticación." #: mailers.py:73 msgid "Password" @@ -228,12 +199,9 @@ msgstr "Contraseña" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Contraseña para usar para el servidor SMTP. Esta configuración se utiliza " -"junto con el nombre de usuario al autenticarse en el servidor SMTP. Si " -"cualquiera de estos ajustes está vacío, no se intentará la autenticación." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Contraseña para usar para el servidor SMTP. Esta configuración se utiliza junto con el nombre de usuario al autenticarse en el servidor SMTP. Si cualquiera de estos ajustes está vacío, no se intentará la autenticación." #: mailers.py:85 msgid "Django SMTP backend" @@ -267,9 +235,7 @@ msgstr "Etiqueta" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Si está predeterminado, este perfil de correo será preseleccionado en el " -"formulario de envío del documento." +msgstr "Si está predeterminado, este perfil de correo será preseleccionado en el formulario de envío del documento." #: models.py:54 msgid "Default" @@ -357,15 +323,11 @@ msgstr "Enlace para el documento: {{ documento }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Plantilla para la línea de asunto del correo electrónico para envío de " -"enlace del documento." +msgstr "Plantilla para la línea de asunto del correo electrónico para envío de enlace del documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "" -"Plantilla para el texto del cuerpo del correo electrónico del enlace del " -"documento. Puede incluir HTML." +msgstr "Plantilla para el texto del cuerpo del correo electrónico del enlace del documento. Puede incluir HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -373,15 +335,11 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" -"Plantilla para la línea de sujeto del correo electrónico de envio de " -"documento." +msgstr "Plantilla para la línea de sujeto del correo electrónico de envio de documento." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." -msgstr "" -"Plantilla para el texto del cuerpo del correo electrónico con documento " -"anejado. Puede incluir HTML." +msgstr "Plantilla para el texto del cuerpo del correo electrónico con documento anejado. Puede incluir HTML." #: validators.py:14 #, python-format @@ -409,14 +367,12 @@ msgstr "Enviar" #: views.py:108 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "" -"%(count)d enlace de documento sometido para entrega por correo electrónico" +msgstr "%(count)d enlace de documento sometido para entrega por correo electrónico" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "" -"%(count)d enlaces de documento sometido para entrega por correo electrónico" +msgstr "%(count)d enlaces de documento sometido para entrega por correo electrónico" #: views.py:119 msgid "New mailing profile backend selection" @@ -446,10 +402,7 @@ msgstr "" msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "" -"Los perfiles de correo son configuraciones de correo electrónico. Los " -"perfiles de correo permiten enviar documentos como archivos adjuntos o como " -"enlaces por correo electrónico." +msgstr "Los perfiles de correo son configuraciones de correo electrónico. Los perfiles de correo permiten enviar documentos como archivos adjuntos o como enlaces por correo electrónico." #: views.py:237 msgid "No mailing profiles available" @@ -459,6 +412,3 @@ msgstr "No hay perfiles de correo disponibles" #, python-format msgid "Test mailing profile: %s" msgstr "Probar perfil de correo: %s" - -#~ msgid "%s error log" -#~ msgstr "Registro de errores para %s" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo index 32b275d7a19b69594bfc9a01b12ce19b25451faf..161d434d902cd500975be2650d93718697a822b9 100644 GIT binary patch delta 23 ecmeAa=oHuxz`|vwYh, 2014 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -45,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -137,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -177,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -198,8 +197,8 @@ msgstr "کلمه عبور" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo index e75e3cd1f2b3e93e57d55acd2ff4c628a7194a78..14c60e2e682571035df87215df9f9a1bf4edd612 100644 GIT binary patch delta 1959 zcmY+_OKeP09LMp0RlP>1k5M``+F>vrEp0JOJ*ujuREz4QAtDtPx@e>oA+)n-NXr7L zS4db$Ls%efQg$|0sy5QZrnQiG1dAp%RjKdq&Ly18xu0`x@0`c~{O`1{s-r4CoH_ZL zQDW2pbzqWN9M7h3p`4m(R)nXq7$0Fi4r2j&rkRB?ik;Yq{K>xHOdQ2joN)W8)6FK+ z&%t?`Dvw4sH#VXkj3FO8!bJl$;}krJdaey~@H+bNDf;oHdw&G=+!$&i-wd z5;f0u+^?<1Xn48t6#3W-*H@?o3?XCLFlxY0uHUeZ{wOL~l^(PCSdGcpjC`zxi@x8E z+DIpA+)J3IP~V`Dj`uMOpSceV;v)J(NT_Ta71A6oMAO3f3JXyS8^<6fu|4${pmrMO zqN81db8s(e0Zka!jTRbZcmZ|B16YX@xE3o3j|OZq71HI@aJ_)LDK>`G+HOcHT z9>x%fp$(j$#W~|^)COlW>lSRlLcEWq6(JA8zT zaS#cT{cufY7aAu6b>@Cth9L}L4Ql)rw|`#oU&xJzs4RYi+VN*xile9y2Z*=6ScPZs zAO`Ur5)2!2^)QGQ5I`+_A@W9B1hs)E9>-GDJn<(qlw{9QUmQVA^bs@hClWpLa`5Vh zFb^ZB=VF+PO{nj8;YPfITKF4OB*#%lnmL!_!#pIX;^rkawE!P#fGBF);TYQb%|0q@~@e2>bB0JA8m%kc=-;&SZ6b@(3p&`%=u#gj-P8t}Jh*D4xB zp{!DeQlG%NY9LO=nRp5+#46jUtEdXSUgfpa2(^^T@061Z%~=a_Hc_*wd#N1Xf2G>(t#plIn5yLDgls2OC6>Us@+%p4{<-{f&nn!G-ggyV z0H-JkRmu}Mq2Eq>HNfeRpRM~BS_ aW<&~#qrt*RNpVr{P2ZkLy}z>hy}tq81)ZA! delta 2008 zcmY+_OKc5M9LMp0OI>d1Llvc%DvGwWs_Ic%b(NM|uPPCVXVYjJJZOES;;i3n1-~c?2x~~gIVH`8?31;E@VEiZQz7b(>A}hk-^h;6W z%W;Ud+DKyq18tasPmn)*6ZjFefbYmN?FX`QOG@?);~M&@sGx1b9NdBZumkzCPA>X= zH)rYsX*@UGGx1k=`jSBr`R4DIZ0rsKpOJFzSaSpD> zjd&Jsq2{Y*m$EL6_-m&P46r$CL9J{*YWys+DZ7T+X&meDKI$x!)BT8y#}4|H*p^`S z7`I|2iJ=W#8D_Q=KchBS!o#buJ(Kts(YV8alIRm&z+b2po?{k`cOgU8gFM?FqR#pS zYNxMp68=VlW|P>3oQZl)73%D3aVpkhF1juaO>iX`xQ!F&zd~iR;;WsH!YP=G3Uw6q zy90O-&!B^0enfCAKd>CNfGBF=YmqnHnot{Xn`!K#u?scPJ5;iLM*T32gVsbNaVQob zQM8JnUytMHH=*u3fn%{7_4~UxA0MC=ZlnE379vOM+9Dd?7+;BAwvwV+Km_%GX4HdY zI2n(lgEvt-c!oN{7q}Bcydu+ZFK)uC7{Me~rRUe8BD?}~^#1Rmp=7v(tMDc2jPlvm zer&)le2PlOX2*9Q>PU{E7Tkm7*oX5lJ;%?9C@Q)4;C4KW`S<~6Gry&iLA_Wj6G$S2 ze?^n1Xz~TrT6HK5KHhZ>S0d~!Kpz+K&@0ONnN%fT33WELj9N+6qTEC-%x8sW{XWHG)!sq>1_d4h%Kj5T<<>~zwLi6_2JR^ z{VjTbRaW?T9~?FHI;uo`ydbt;)&?|YGU~SMT4h)}f z4}BdxvCV0W#ad%dOKVen^T71vaB1O;VyCEdZc$16V8*J%4DM)dZIA8T(&B8-WRY^V$X diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 0e3f941288..860d55693b 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -48,11 +47,9 @@ msgstr "Courriel envoyé" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"Adresse électronique du destinataire. Il peut s'agir de plusieurs adresses " -"séparées par une virgule ou un point-virgule." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "Adresse électronique du destinataire. Il peut s'agir de plusieurs adresses séparées par une virgule ou un point-virgule." #: forms.py:62 forms.py:124 msgid "Email address" @@ -68,9 +65,7 @@ msgstr "Corps" #: forms.py:70 msgid "The email profile that will be used to send this email." -msgstr "" -"Le profil de messagerie qui sera utilisé pour envoyer ce courrier " -"électronique." +msgstr "Le profil de messagerie qui sera utilisé pour envoyer ce courrier électronique." #: forms.py:71 views.py:238 msgid "Mailing profile" @@ -127,11 +122,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Attaché à ce courriel , voici le - document: {{ document }}\n" -"\n" -" --------\n" -" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "Attaché à ce courriel , voici le - document: {{ document }}\n\n --------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -140,11 +131,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Pour accéder à ce document cliquer sur le lien suivant: {{ link }}\n" -"\n" -"--------\n" -" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "Pour accéder à ce document cliquer sur le lien suivant: {{ link }}\n\n--------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -152,11 +139,9 @@ msgstr "De" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." -msgstr "" -"L'adresse de l'expéditeur. Certains systèmes refuseront d’envoyer des " -"messages si cette valeur n’est pas définie." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." +msgstr "L'adresse de l'expéditeur. Certains systèmes refuseront d’envoyer des messages si cette valeur n’est pas définie." #: mailers.py:32 msgid "Host" @@ -182,10 +167,7 @@ msgstr "Utiliser TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Faut-li utiliser une connexion TLS (sécurisée) pour dialoguer avec le " -"serveur SMTP. Ce paramètre est utilisé pour les connexions TLS explicites, " -"généralement sur le port 587." +msgstr "Faut-li utiliser une connexion TLS (sécurisée) pour dialoguer avec le serveur SMTP. Ce paramètre est utilisé pour les connexions TLS explicites, généralement sur le port 587." #: mailers.py:52 msgid "Use SSL" @@ -197,15 +179,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Faut-il utiliser une connexion implicite TLS (sécurisée) pour dialoguer avec " -"le serveur SMTP. Dans la plupart des documents électroniques, ce type de " -"connexion TLS est appelé SSL. Il est généralement utilisé sur le port 465. " -"Si vous rencontrez des problèmes, consultez le paramètre TLS explicite " -"\"Utiliser TLS\". Notez que \"Utiliser TLS\" et \"Utiliser SSL\" sont " -"mutuellement exclusifs, donc ne cochez que l'un de ces paramètres." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Faut-il utiliser une connexion implicite TLS (sécurisée) pour dialoguer avec le serveur SMTP. Dans la plupart des documents électroniques, ce type de connexion TLS est appelé SSL. Il est généralement utilisé sur le port 465. Si vous rencontrez des problèmes, consultez le paramètre TLS explicite \"Utiliser TLS\". Notez que \"Utiliser TLS\" et \"Utiliser SSL\" sont mutuellement exclusifs, donc ne cochez que l'un de ces paramètres." #: mailers.py:64 msgid "Username" @@ -215,9 +191,7 @@ msgstr "Identifiant" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Nom d'utilisateur à utiliser pour le serveur SMTP. Si vide, " -"l'authentification ne sera pas tentée." +msgstr "Nom d'utilisateur à utiliser pour le serveur SMTP. Si vide, l'authentification ne sera pas tentée." #: mailers.py:73 msgid "Password" @@ -226,13 +200,9 @@ msgstr "Mot de passe" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Mot de passe à utiliser pour le serveur SMTP. Ce paramètre est utilisé " -"conjointement avec le nom d'utilisateur lors de l'authentification sur le " -"serveur SMTP. Si l'un de ces paramètres est vide, l'authentification ne sera " -"pas tentée." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Mot de passe à utiliser pour le serveur SMTP. Ce paramètre est utilisé conjointement avec le nom d'utilisateur lors de l'authentification sur le serveur SMTP. Si l'un de ces paramètres est vide, l'authentification ne sera pas tentée." #: mailers.py:85 msgid "Django SMTP backend" @@ -266,9 +236,7 @@ msgstr "Libellé" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Si \"Défaut\", ce profil de liste de diffusion sera présélectionné sur le " -"formulaire de diffusion du document." +msgstr "Si \"Défaut\", ce profil de liste de diffusion sera présélectionné sur le formulaire de diffusion du document." #: models.py:54 msgid "Default" @@ -360,9 +328,7 @@ msgstr "Modèle pour le lien du document du courriel dans la ligne du sujet." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "" -"Modèle pour le texte du corps du courriel contenant le lien de document. " -"Peut inclure du HTML." +msgstr "Modèle pour le texte du corps du courriel contenant le lien de document. Peut inclure du HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -374,9 +340,7 @@ msgstr "Modèle pour le sujet du courriel du document." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." -msgstr "" -"Modèle pour le texte du corps du courriel à envoyer avec le document en " -"pièce jointe. Peut inclure du HTML." +msgstr "Modèle pour le texte du corps du courriel à envoyer avec le document en pièce jointe. Peut inclure du HTML." #: validators.py:14 #, python-format @@ -409,8 +373,7 @@ msgstr "%(count)d document lié dans la file d'attente pour envoi par courriel" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "" -"%(count)d documents liés dans la file d'attente pour envoi par courriel" +msgstr "%(count)d documents liés dans la file d'attente pour envoi par courriel" #: views.py:119 msgid "New mailing profile backend selection" @@ -450,6 +413,3 @@ msgstr "Aucun profil d'envoi de courriels disponible" #, python-format msgid "Test mailing profile: %s" msgstr "Tester le profil de diffusion: %s" - -#~ msgid "%s error log" -#~ msgstr "%s journal d'erreur" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo index 71e7946e0a39112f07591c3954b5d4a569adfc23..3b8effdf1fbe63ce694504bbd25f332a9a4b1195 100644 GIT binary patch delta 23 ecmeC;=;GMm!o+2!Yh_s4, 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -45,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -137,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -177,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -198,8 +197,8 @@ msgstr "Jelszó" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo index a3797ed680268ace8c3dc5abfc539a0713c88f10..22c60f2d6b3148f3783d07631a24afb2ba9db037 100644 GIT binary patch delta 23 ecmZ3, 2016-2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -45,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -120,11 +119,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Allegato a questa mail è il documento: {{ document }}\n" -"\n" -" --------\n" -"Questa mail è stata inviata da %(project_title)s (%(project_website)s)" +msgstr "Allegato a questa mail è il documento: {{ document }}\n\n --------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -133,11 +128,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Per accedere al documento fai click sul seguente link: {{ link }}\n" -"\n" -"--------\n" -"Questa mail è stata inviata da %(project_title)s (%(project_website)s)" +msgstr "Per accedere al documento fai click sul seguente link: {{ link }}\n\n--------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -145,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -185,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -206,8 +197,8 @@ msgstr "Password" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -330,9 +321,7 @@ msgstr "Link per il documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Template per l'oggetto del modulo e-mail per l'invio del collegamento al " -"documento." +msgstr "Template per l'oggetto del modulo e-mail per l'invio del collegamento al documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." diff --git a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.mo index f2f042cedac7dfd51ac29f92eb2f3926c0967e19..868ce75e733a09165a8b48d09a15d6e81ea31949 100644 GIT binary patch delta 2092 zcmY+^Z)j6j7{~FawOU(Sr`5L8*7Y_T>)J-ssC7-9t*+KTO|>=EwHtLrDX#NRAc-5> zz$ge42c;Sm9WrE~427Z=^^M^6MnRq1V1?O^$-2Ri?S*?W=ms16{*qg9hdlRl&P{U9 zInQ&FUs|88PySexbINGlL^<(8wpkL-P31y6lWSIoXEA{Hu@?VDAJ$AatHK^UhDVUM zEI-ez0E@5?E8MXUa~KD4fu?Gr^CCBTu@v7$ePIB3**PwH;6TC#k z*#jiZX5uc2yx8fUUqx>r8E$2?)Y_A5hTd8y-Fx6npmxg zSV{PZ6+}`ie}z~}Xw^CtN^1*IPfR63gjy$|5-iey<`Am+WNW6Q40I7>{eMkAS2b-= zt&!k>C)2eg)7GxLwC)V)tNuQhKQ~r)gFEhU<-n(#GN`5+tF0k66Wa)tL9LchY1Q;= zD^mSy(!)%R^&3~)M6?o=EPV)H!|lXeVk1FC(q{&YV_?e&{c5%ns|hbL*;difxe60H zh-&LHm|v;X>DQl%nojPHbT9MQt8QNELhkRwpHBa5hQHnyXmI@X!9ZP&pOznr#1p=* zSmZ!_UnCKY1)XitU45}c6yuRte{}fx+@;y6uS&*pJl?n`^-XEn@VBL-`30U(e_tY+ eaJoWaPwGogaryH%oP!6P$#FOw@}#CM-1#2`Wy1*o delta 2171 zcmZwIe@vBC9LMo5h?g5G*^LWkqz@F50#^_T1XMu5Qhpd0^V*sV+#RubxswaETeJJmgQT7p~#9Xdf8qY80LU||OtPbDB4R{T!u`p;>gDqHzBe)b# z;BkBd`KeXj=G|Y9%V@Xy?VXsXuJ%&7hc6z(6?hm+FoSwv8u{1j4B#y4_g~>k zoX0ycP+)c!u0-A6i27Y0(xE+p#h7sKGu2~M)X^Dy6sNHe153=PTG-b?4WJ6?%j!`t z-0a(dQQA9D$vcf@corAo4Dzv0xaj$>F`!g`M@285!`tx&F2_IdX7WvrET*$gD;4J=)8sIFmbMOmP`&ZP27r3Og=6Ot4DKA5Hu*q+?V>|7AsI@HJb@)3sq}}1oG>A;zR-p#A z&cEM*Ov+-YnZ~gfM^S5f8I_T5@MXM-sT{LsLo5T{WP@~Y|8>&YjNgXI|5hp?o|gTn z)Skp5yo6e!tEd6?Fd7YD4{C{qkYrd2wWddL9lnCvgzx))iA>(+QP2P38%&cg?dC8l zb)~)ysNLL)t8obL$D_!zHjV0V29^4&csE{0t!*B?@5d051UrPf|D4}Gf!f^Zb5t~< z3&_#84^c1v2;=xED%BBsaj+5feGJK}4f#%>CUP9r;j5?)&-z}(!?Z7>HgglB3~E4cqF#6&Kf^3)vmIf_mf`cLC3zdw;YHN*A0r=||*A}iM z(9M9dqKT=b+qgVHXyy%scJ(HrgU}JoB{b?zqLElkXpk!Xg!YC`j0)p&PlMaw(oV44 zwud0Ox0F7wm3IHIsNPDfCA6u?sC%x#{l_F#77-hX^=kO#LEndcm2wqMtXsN#x8g2B zf1>a6@6~AiwK-ID-gV@v)u3pNwXsxo5<3Wo&?ekYJVI!h9wM~ywCPk<6SYJ>v76XT zX#f0Mny7F}ZGfoKY*e;+xa+NBqy3Hk=q7IT$&R zOl-+Uiz2x>6`A%GMVZOsYlUkLO(e%#DpH==$4h=IDE8{zBk}R%xHHfl_1c-i@^J0{ Uf8|V!I=6fijduGFoh;w~4-rb=E&u=k diff --git a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po index 8b5e970c4a..af36585bbe 100644 --- a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-31 12:38+0000\n" -"Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:42 msgid "Mailer" @@ -46,11 +44,9 @@ msgstr "Epasts nosūtīts" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"Saņēmēja e-pasta adrese. Var būt vairākas adreses, kas atdalītas ar komatu " -"vai semikolu." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "Saņēmēja e-pasta adrese. Var būt vairākas adreses, kas atdalītas ar komatu vai semikolu." #: forms.py:62 forms.py:124 msgid "Email address" @@ -123,9 +119,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Šim e-pastam pievienots dokuments: {{document}} -------- Šis e-pasts ir " -"nosūtīts no %(project_title)s (%(project_website)s)" +msgstr "Šim e-pastam pievienots dokuments: {{document}} -------- Šis e-pasts ir nosūtīts no %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -134,9 +128,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Lai piekļūtu šim dokumentam, noklikšķiniet uz šādas saites: {{link}} " -"-------- Šis e-pasts ir nosūtīts no %(project_title)s (%(project_website)s)" +msgstr "Lai piekļūtu šim dokumentam, noklikšķiniet uz šādas saites: {{link}} -------- Šis e-pasts ir nosūtīts no %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -144,11 +136,9 @@ msgstr "No" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." -msgstr "" -"Sūtītāja adrese. Dažas sistēmas atsakās sūtīt ziņojumus, ja šī vērtība nav " -"iestatīta." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." +msgstr "Sūtītāja adrese. Dažas sistēmas atsakās sūtīt ziņojumus, ja šī vērtība nav iestatīta." #: mailers.py:32 msgid "Host" @@ -174,9 +164,7 @@ msgstr "Izmantojiet TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek " -"izmantots skaidriem TLS savienojumiem, parasti portā 587." +msgstr "Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti portā 587." #: mailers.py:52 msgid "Use SSL" @@ -188,15 +176,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. " -"Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par " -"SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS " -"iestatījumu "Lietot TLS". Ņemiet vērā, ka "Lietot TLS" " -"un "Lietot SSL" ir savstarpēji izslēdzoši, tāpēc tikai vienu no " -"šiem iestatījumiem iestatiet uz True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu \"Lietot TLS\". Ņemiet vērā, ka \"Lietot TLS\" un \"Lietot SSL\" ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." #: mailers.py:64 msgid "Username" @@ -215,12 +197,9 @@ msgstr "Parole" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"SMTP servera lietojama parole. Šis iestatījums tiek izmantots kopā ar " -"lietotājvārdu, autentificējot to SMTP serverī. Ja kāds no šiem iestatījumiem " -"ir tukšs, autentifikācija netiks mēģināta." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "SMTP servera lietojama parole. Šis iestatījums tiek izmantots kopā ar lietotājvārdu, autentificējot to SMTP serverī. Ja kāds no šiem iestatījumiem ir tukšs, autentifikācija netiks mēģināta." #: mailers.py:85 msgid "Django SMTP backend" @@ -254,9 +233,7 @@ msgstr "Etiķete" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Noklusējuma gadījumā šis pasta profils tiks iepriekš atlasīts dokumentu " -"sūtīšanas veidlapā." +msgstr "Noklusējuma gadījumā šis pasta profils tiks iepriekš atlasīts dokumentu sūtīšanas veidlapā." #: models.py:54 msgid "Default" @@ -402,7 +379,7 @@ msgstr "Jauna pasta profila backend izvēle" #: views.py:151 #, python-format msgid "Create a \"%s\" mailing profile" -msgstr "Izveidojiet adreses profilu "%s"" +msgstr "Izveidojiet adreses profilu \"%s\"" #: views.py:177 #, python-format @@ -423,9 +400,7 @@ msgstr "" msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "" -"Pasta profili ir e-pasta konfigurācijas. Pasta profili ļauj sūtīt dokumentus " -"kā pielikumus vai kā saites pa e-pastu." +msgstr "Pasta profili ir e-pasta konfigurācijas. Pasta profili ļauj sūtīt dokumentus kā pielikumus vai kā saites pa e-pastu." #: views.py:237 msgid "No mailing profiles available" @@ -435,6 +410,3 @@ msgstr "Nav pieejams neviens pasta profils" #, python-format msgid "Test mailing profile: %s" msgstr "Testa pasta profils: %s" - -#~ msgid "%s error log" -#~ msgstr "%s kļūdu žurnāls" diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo index 260abb2e29f5156fb228812c25339639740f38bb..4b22e89124ca1eaad96cd1e643408ed40bb1b5bc 100644 GIT binary patch delta 23 ecmX@feUf`aCNr0ru92mJfti(&;pSrIFeU(02nIm_ delta 23 ecmX@feUf`aCNr0*u92aFfvJ^&@#bRYFeU&~js`aX diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po index e38622f7fa..7eb6e8f472 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 @@ -45,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -137,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -177,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -198,8 +197,8 @@ msgstr "Wachtwoord" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo index 00897fab0223b5054c418c7f6f68693a446e0ec6..998213c9036906677e4bd7824b11c14249bc0a94 100644 GIT binary patch delta 23 ecmbO&Ia_jr8atPnu92mJfti(&;bsH&Y*qkCCk2}T delta 23 ecmbO&Ia_jr8atP%u92aFfvJ^&@n!?|Y*qkBtp$+) diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index fff900e350..e8b6319157 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2016 @@ -11,17 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:42 msgid "Mailer" @@ -49,8 +46,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -141,8 +138,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -181,8 +178,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -193,9 +190,7 @@ msgstr "Nazwa użytkownika" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Nazwa użytkownika dla serwera SMTP. Jeśli nie podano, próba uwierzytelnienia " -"nie zostanie podjęta." +msgstr "Nazwa użytkownika dla serwera SMTP. Jeśli nie podano, próba uwierzytelnienia nie zostanie podjęta." #: mailers.py:73 msgid "Password" @@ -204,12 +199,9 @@ msgstr "Hasło" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Hasło dla serwera SMTP. W połączeniu z nazwą użytkownika używane jest " -"podczas uwierzytelnienia do serwera SMTP. Jeśli nie podano hasła lub nazwy " -"użytkownika, próba uwierzytelnienia nie zostanie podjęta." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Hasło dla serwera SMTP. W połączeniu z nazwą użytkownika używane jest podczas uwierzytelnienia do serwera SMTP. Jeśli nie podano hasła lub nazwy użytkownika, próba uwierzytelnienia nie zostanie podjęta." #: mailers.py:85 msgid "Django SMTP backend" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index 166d988f3c8d67671c0cc42b4f6bd33f323fda45..b25870d8aa002fe01e53ba79526bc1f5d4bb61a5 100644 GIT binary patch delta 23 fcmbQiJ%fA09VRX_T_Z~c12Zcl!_Ci_HZcJJRw4%< delta 23 fcmbQiJ%fA09VRYQT_ZyU15+ylhaYAAP4?CBcu92mJfti(&;bt**BUS)T3k8M% delta 23 ecmX>haYAAP4?CBsu92aFfvJ^&@n$i0BUS)Skp+AJ diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po index 58c53d78df..78176f246e 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -47,8 +46,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -122,10 +121,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Se anexa a este documento de e-mail: {{ document }}\n" -"--------\n" -"Este e-mail foi enviado por %(project_title)s (%(project_website)s)" +msgstr "Se anexa a este documento de e-mail: {{ document }}\n--------\nEste e-mail foi enviado por %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -134,10 +130,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Para acessar este documento clique na ligação a seguir: {{ link }}\n" -"--------\n" -"Este email foi enviado por %(project_title)s (%(project_website)s)" +msgstr "Para acessar este documento clique na ligação a seguir: {{ link }}\n--------\nEste email foi enviado por %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -145,8 +138,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -185,8 +178,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -206,8 +199,8 @@ msgstr "Senha" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 @@ -330,8 +323,7 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Modelo para a linha de assunto do e-mail para envio do link do documento." +msgstr "Modelo para a linha de assunto do e-mail para envio do link do documento." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo index 525f8008d48aaf12f210d3b402d288fc084e9dc8..3056d398220a3ba5a8318aa0cdc792060e47dc5d 100644 GIT binary patch delta 2029 zcmY+_S!_&E9LMp~MXRkARc)zdN^5I}nL%lbqSj8)R#97;ksuW`nKncuhVVc%NW{{R zS`v+TXu^a(@PJ4vA>~06TSyRMN$@5T%lCKhA)MTEKj+*#bMHC-^FK3pgQtR#7wPfG z45f}bg!(+zmTVjVxN!*6@I7*vZ`QaJcK~U~vrQ)IfgWoU*7-hi|PZghSu+S*N20UV(b_>uQic!fL3DQtDR^xW8L%rxBYDQ1( z{a>gEB;>HCF$dKjj~u4lT8~Puo!EjWaTMlrQ7^2-VywZ*+W##ywC1-_1L?-M*nJJgzg#sW+j=5DtD>V7RMa%*rp9>7xU!qpfz+#NtY#%uq#($EXqa2(#j zG58thV7ABo1zd}p=pV*5{ElhZn(KNIwWgh@5WhqXfWGOE|M)P6QNHMNFlPO4yy;nS>D~&s6Fx zsuCua$~c^vYcS55p^CPQLae+{@lf@H@~6zCLH;>Aiq-qCEVezrRZBvYBTlGTO0&q` zsI!VV>coHgYRVa$H7L#xJ1eQgf&(TiMPrEqLur>a!9RF#D>c1y zHRk$*L2K1!=^rgNHa7cBrZp8ME3yWi(^&cl74bI$ji zbD3!Vx!Jv*8n|GT14K5l6l><<siwS0B_$`*>A{JvxqFE5PV*&PIGJb|aV z6+9KaUy5sJ@9^8ZF`%yYQ`x{D-obTv0<&-&^}r?MW3ycJ!a0n`2tMMz&(fqG$$ZyoNV zy$hAR3CzVWaTU%XAG^jy&;O3`O7)*q^x`Fa8gJuT{0B#H4SCJL)2Q!FVjg~j%3K8b z*fJNgZYvnUN2mctn4N>aqS|*+6JFusYRv;oS1Hd$bx`fMYq6I00o2-0U?a}sR?J|u zdSNRn)$OQMAH`xkh5Ft!zJRx|6H}Por+8#7>#q(Ua6{TN(U~S9leZkyzzY5Qb;zWw z6E)Kw+=ItZYx*N9BY)sIyoW1|NY(e9Y7e>!BtcT5iG>J_!4G2X7$*BWq20*@d{310ljiC?5ghqYDt$+8BXR1XdpSh z&6wtLW0;Ck7{(s_0$;{B7QPZo@jE<>GcmkuqZ#~HG)NV#>o%fA4N7Me@2VM-d3%LW zR@t9kabE>>qBU0fwVSmZb%d57me2-lAhr^5L@S}9BcxrdY^g9&F9TkKOD(~+u{Vhg z#Q#fMwBdR`EUNDyG;3vorSZ-+c>kEB$|_H9LDUfW z#FJ7*MMt=UDAH_HUW?*wEd4g?46A74?e}WzY~Q5u3kkQA^M;(BP-rmZ3=AHb9!vac zb<&n#d9_nkwynH!JeZ!9+|(WF9ysJQgofVlo!*!Jd2A|=^nVyS);-`H>fzzRP~Y@& I<_{^40saiP&;S4c diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po index 4f5a1b2231..c0afdbdda6 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-29 11:26+0000\n" -"Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:42 msgid "Mailer" @@ -46,11 +44,9 @@ msgstr "Email trimis" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"Adresa de e-mail a destinatarului. Pot fi mai multe adrese separate prin " -"virgulă sau punct și virgulă." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "Adresa de e-mail a destinatarului. Pot fi mai multe adrese separate prin virgulă sau punct și virgulă." #: forms.py:62 forms.py:124 msgid "Email address" @@ -123,11 +119,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Atașat la acest e-mail este documentul: {{document}}\n" -"\n" -" --------\n" -" Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" +msgstr "Atașat la acest e-mail este documentul: {{document}}\n\n --------\n Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -136,11 +128,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Pentru a accesa acest document, faceți clic pe următorul link: {{link}}\n" -"\n" -"--------\n" -" Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" +msgstr "Pentru a accesa acest document, faceți clic pe următorul link: {{link}}\n\n--------\n Acest e-mail a fost trimis de la %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -148,11 +136,9 @@ msgstr "De la" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." -msgstr "" -"Adresa expeditorului. Unele sisteme vor refuza să trimită mesaje dacă " -"această valoare nu este setată." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." +msgstr "Adresa expeditorului. Unele sisteme vor refuza să trimită mesaje dacă această valoare nu este setată." #: mailers.py:32 msgid "Host" @@ -178,10 +164,7 @@ msgstr "Utilizați TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu " -"serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în " -"general pe portul 587." +msgstr "Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în general pe portul 587." #: mailers.py:52 msgid "Use SSL" @@ -193,15 +176,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți " -"cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de " -"conexiune TLS este denumit SSL. Este utilizat în general la portul 465. Dacă " -"întâmpinați probleme, consultați setarea explicită TLS \"Utilizați TLS\". " -"Rețineți că \"Utilizați TLS\" și \"Utilizați SSL\" se exclud reciproc, deci " -"setați numai una dintre aceste setări la True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de conexiune TLS este denumit SSL. Este utilizat în general la portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS \"Utilizați TLS\". Rețineți că \"Utilizați TLS\" și \"Utilizați SSL\" se exclud reciproc, deci setați numai una dintre aceste setări la True." #: mailers.py:64 msgid "Username" @@ -211,9 +188,7 @@ msgstr "Nume de utilizator" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"Nume de utilizator de folosit pentru serverul SMTP. Dacă este gol, nu se va " -"încerca autentificarea." +msgstr "Nume de utilizator de folosit pentru serverul SMTP. Dacă este gol, nu se va încerca autentificarea." #: mailers.py:73 msgid "Password" @@ -222,12 +197,9 @@ msgstr "Parola" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"Parolă de utilizat pentru serverul SMTP. Această setare este utilizată " -"împreună cu numele de utilizator când se autentifică pe serverul SMTP. Dacă " -"una dintre aceste setări este goală, autentificarea nu va fi încercată." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "Parolă de utilizat pentru serverul SMTP. Această setare este utilizată împreună cu numele de utilizator când se autentifică pe serverul SMTP. Dacă una dintre aceste setări este goală, autentificarea nu va fi încercată." #: mailers.py:85 msgid "Django SMTP backend" @@ -261,9 +233,7 @@ msgstr "Etichetă" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Dacă este implicit, acest profil de poștă electronică va fi pre-selectat pe " -"formularul de trimitere a documentelor." +msgstr "Dacă este implicit, acest profil de poștă electronică va fi pre-selectat pe formularul de trimitere a documentelor." #: models.py:54 msgid "Default" @@ -355,9 +325,7 @@ msgstr "Șablon pentru subiectul liniei de e-mail a documentului." #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "" -"Șablon pentru corpul formularul de e-mail pentru link-ul documentului. Poate " -"include HTML." +msgstr "Șablon pentru corpul formularul de e-mail pentru link-ul documentului. Poate include HTML." #: settings.py:24 msgid "Document: {{ document }}" @@ -383,16 +351,12 @@ msgstr "Jurnal de eroare de trimitere a documentelor" #: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" -msgstr "" -"%(count)d document a fost pus în coada de așteptare pentru livrarea prin e-" -"mail" +msgstr "%(count)d document a fost pus în coada de așteptare pentru livrarea prin e-mail" #: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" -msgstr "" -"%(count)d documente au fost puse în coada de așteptare pentru livrarea prin " -"e-mail" +msgstr "%(count)d documente au fost puse în coada de așteptare pentru livrarea prin e-mail" #: views.py:62 msgid "Send" @@ -401,15 +365,12 @@ msgstr "Trimite" #: views.py:108 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "" -"%(count)d link de document a fost pus în coadă pentru livrarea prin e-mail" +msgstr "%(count)d link de document a fost pus în coadă pentru livrarea prin e-mail" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "" -"%(count)d linkuri de documente au fost puse în coadă pentru livrarea prin e-" -"mail" +msgstr "%(count)d linkuri de documente au fost puse în coadă pentru livrarea prin e-mail" #: views.py:119 msgid "New mailing profile backend selection" @@ -439,9 +400,7 @@ msgstr "" msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "" -"Profilurile de corespondență sunt configurații de e-mail. Ele permit " -"trimiterea documentelor ca atașamente sau ca legături prin e-mail." +msgstr "Profilurile de corespondență sunt configurații de e-mail. Ele permit trimiterea documentelor ca atașamente sau ca legături prin e-mail." #: views.py:237 msgid "No mailing profiles available" @@ -451,6 +410,3 @@ msgstr "Nu sunt disponibile profiluri de poștă electronică" #, python-format msgid "Test mailing profile: %s" msgstr "Testare profil de poștă electronică: %s" - -#~ msgid "%s error log" -#~ msgstr "%s jurnal de erori" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo index 7eaa465dbb32827f57a6b5a71ae00d2a8496771b..6ceb1a358736406829246b50eb0df731b35c4aad 100644 GIT binary patch delta 23 ecmdlguvK8gR%R|UT_Z~c12Zcl!_E7d%UA$dGzQ%O delta 23 ecmdlguvK8gR%R|!T_ZyU15+yl=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:42 msgid "Mailer" @@ -47,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "" #: forms.py:62 forms.py:124 @@ -139,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -179,8 +176,8 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." msgstr "" #: mailers.py:64 @@ -200,8 +197,8 @@ msgstr "Пароль" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." msgstr "" #: mailers.py:85 diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo index 72106f6bc64a03e8cffbd248bb9fb63f7b8ce56f..85cf352a2db8f3c10b5d63b9b60ea7ee00969a1e 100644 GIT binary patch delta 21 ccmZ3*vWjKG9xgLoBTEGXGb>8@H?xuvVFx@p?QZVy2TAyH_MP(esaWEf1ol%!Z8 zQbI45gkblDUP6cnDx$)IAcIgUx;!L7j}d);;}~?<|9sBO&Ym;p|39-2V&`Jkhk$#) z(6$lT#6FiX2k?rU11;z^rUXM6!3HeCGZ@A=cHvM*yd=VhU&$ocoFB~ZA>=C zGGlc3m?s<(B_zfA#{6Z!+ zztPS7#>-g)7gEuKO&G!!Ou)04iap53T;iYy9YPH_g7feW`tc!V;<)qu7hJ~qG%}~j zQ6=fX3LHiK{v#@bUs0J#pdKn& zHtN3Zn1@|xU7#~eM+28LtE@qOYwA%G??SEUFmkK0P%G)hoj8E1?I-L(7kO`=V@w~m zp^LO^<@)h-CdV<I)jz|0R%p$1N(@JeMms)l)}l$W3;szl~8dyu4=gQy2? zMU|`*wP!4xkAs+lw=jq=Z~^|vApe@s!(F<;hng^qEm)1J?Nw9;?xFU`Q`E#SQ4jVG zcjKgUUdqh{oX1e(H=!1E2sQpm=e*mZ!@e+ss1;pvzPO93-6Pb5?=c^zP!oE1{5P0} zs`(^F@iVG~+0;!BUVy8x43}UN>i$j)qIH^1F`Xe?hp(L*e9X>bOa?NhDa0_=VhtX} zH8_fwaRRk~cJeN}P`^Kq%EU10EqI0+ZyL$S4&!C3Hgh2hH9-g7$Ln~5&9k4!27C1? z(QMPI)Yvk1X~O;E?kr2YNliSB2!01i7kW*!VWYm2(|hd{v9{dD<@)va;A4h zkFLCLAXG2@CGDoyftA}Wmvq`|(-u`*O@xT`gmSx<(0iZ)DTk!M&Q&39B-Az$+F9By zMFd&+uW5Vh|9G}l&?zOB6Fz%%=Ns)B6(C4d5_&&Y5~{um$17m}>4UvfB3MS$5(WKX f@8kF%Z)fR+FD$6 zA!3x-Of#))7H-6B&A;K&Y}SQw5%15_!+LhU&+GR*&pE&E@Av)vo^#Rr$m{zM9oTC) zDu|Utoxd?PI2_1{BP-aLY|KUv9>H|Hf*Cl0F8qNPa1KMTgOl!eIrgKv9Kr;=gNu#v znHMxdxiN!$%vVnIVZPyVoW&T7SY%8*CZX;L7zUF} zdE6LEeiKha9VBBFreP4C!PR&U18@+-@dolS_c>{xk5L^y#YlXKQTQI0;&GM;7nk4^uELKo)Zd~p$BkG_KJb1{TJ{N_3;H>o5gRp!)AdO{mXDLkVs=Hy$GU#Y~}Q^xC=q8MTJ9sDv&?n~c$@ z1bH}(MX0rRvtD@^i(1OvsDbar^;nN9(AP~vKNv;}?_n0c!a@untDYAllQU&V4znLK zumy{705kC&Ud3?gtqBY|j-Y=31XYPQ$lFkDe$!Bg7F$&%$;ZQ3j!H0u5AZDxvxzzx zHrSmc;=f~q(_kg-{xW;U1LJ%e+D<}$VO~PJg%O%PQ zDu>=f)qM@2x|R}Jc>Xo*LsMo#_F?JojWXIhNq5o-y>G>Yw!7+FPH0DLC77YT8P?%; zLPr^)t;{Q9mqUxT@Ce|-v*5;N+M9^AM5H}E=b?5Do5%i3D?q)#+6h`*?I0~q1))Rh zkVE7WB}8gZLhz(3wauz;ZEbF~8k-wNKLxjhhUI2>vaPIKZ&uD|bySjn4Bt3bbE?K_ Um>6qnoEV$DHZeAOI=U, 2017 # serhatcan77 , 2017 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:42 @@ -46,11 +45,9 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." -msgstr "" -"Alıcının e-posta adresi. Virgülle veya noktalı virgülle ayrılmış birden çok " -"adres olabilir." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." +msgstr "Alıcının e-posta adresi. Virgülle veya noktalı virgülle ayrılmış birden çok adres olabilir." #: forms.py:62 forms.py:124 msgid "Email address" @@ -123,11 +120,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Bu e-postaya şu belge eklenmiştir: {{document}}\n" -"\n" -" --------\n" -" Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." +msgstr "Bu e-postaya şu belge eklenmiştir: {{document}}\n\n --------\n Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." #: literals.py:13 #, python-format @@ -136,11 +129,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Bu belgeye erişmek için şu bağlantıyı tıklayın: {{link}}\n" -"\n" -"--------\n" -" Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." +msgstr "Bu belgeye erişmek için şu bağlantıyı tıklayın: {{link}}\n\n--------\n Bu e-posta, %(project_title)s (%(project_website)s) adresinden gönderildi." #: mailers.py:23 mailers.py:112 msgid "From" @@ -148,8 +137,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -176,10 +165,7 @@ msgstr "TLS kullanın" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"SMTP sunucusuyla konuşurken bir TLS (güvenli) bağlantı kullanıp kullanmamak. " -"Bu, genellikle 587 numaralı bağlantı noktasındaki açık TLS bağlantıları için " -"kullanılır." +msgstr "SMTP sunucusuyla konuşurken bir TLS (güvenli) bağlantı kullanıp kullanmamak. Bu, genellikle 587 numaralı bağlantı noktasındaki açık TLS bağlantıları için kullanılır." #: mailers.py:52 msgid "Use SSL" @@ -191,15 +177,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"SMTP sunucusuyla konuşurken kapalı bir TLS (güvenli) bağlantı kullanıp " -"kullanmamak. Çoğu e-posta belgelerinde bu TLS bağlantı tipine SSL adı " -"verilir. Genellikle port 465'te kullanılır. Sorun yaşıyorsanız açık TLS " -"ayarı \"TLS Kullan\" konusuna bakın. \"Use TLS\" (TLS Kullan) ve \"Use SSL" -"\" (SSL Kullan) seçenekleri karşılıklı olarak hariçtir, bu nedenle bu " -"ayarlardan birini yalnızca True olarak ayarlayın." +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "SMTP sunucusuyla konuşurken kapalı bir TLS (güvenli) bağlantı kullanıp kullanmamak. Çoğu e-posta belgelerinde bu TLS bağlantı tipine SSL adı verilir. Genellikle port 465'te kullanılır. Sorun yaşıyorsanız açık TLS ayarı \"TLS Kullan\" konusuna bakın. \"Use TLS\" (TLS Kullan) ve \"Use SSL\" (SSL Kullan) seçenekleri karşılıklı olarak hariçtir, bu nedenle bu ayarlardan birini yalnızca True olarak ayarlayın." #: mailers.py:64 msgid "Username" @@ -209,9 +189,7 @@ msgstr "Kullanıcı adı" msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" -"SMTP sunucusu için kullanılacak kullanıcı adı. Boş ise, kimlik doğrulama " -"denenmeyecektir." +msgstr "SMTP sunucusu için kullanılacak kullanıcı adı. Boş ise, kimlik doğrulama denenmeyecektir." #: mailers.py:73 msgid "Password" @@ -220,12 +198,9 @@ msgstr "Parola" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"SMTP sunucusu için kullanılacak şifre. Bu ayar, SMTP sunucusuna kimlik " -"doğrulaması yaparken kullanıcı adı ile birlikte kullanılır. Bu ayarlardan " -"herhangi biri boşsa, kimlik doğrulama denenmeyecektir." +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "SMTP sunucusu için kullanılacak şifre. Bu ayar, SMTP sunucusuna kimlik doğrulaması yaparken kullanıcı adı ile birlikte kullanılır. Bu ayarlardan herhangi biri boşsa, kimlik doğrulama denenmeyecektir." #: mailers.py:85 msgid "Django SMTP backend" @@ -259,9 +234,7 @@ msgstr "Etiket" msgid "" "If default, this mailing profile will be pre-selected on the document " "mailing form." -msgstr "" -"Varsayılan olarak, bu posta profili, belge posta formunda önceden " -"seçilecektir." +msgstr "Varsayılan olarak, bu posta profili, belge posta formunda önceden seçilecektir." #: models.py:54 msgid "Default" @@ -438,6 +411,3 @@ msgstr "" #, python-format msgid "Test mailing profile: %s" msgstr "Test posta profili: %s" - -#~ msgid "%s error log" -#~ msgstr "%s hata günlüğü" diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo index 638c114666781142af5df68fb1876f48ca009a72..dcba06a8c2e64dd50ce55f43876207f73be3bf71 100644 GIT binary patch delta 21 ccmeyu{DpbK9xgLoBTEGXGbmmdvuIHflEW537-x@sF9!GMfJJ{@hOHtnYo@^L_5Q=bm%!x&8Ky`urbULG6Z8 zNvtM11C6QI`9cnqv0!5|a2zvn7B^#Bh%u>HiyN>RoA4p>XS|`tEWsjc1qM++ifiyV zt}w=L{G5c7=)gsIA9aI1q%ZRrxzG$_98O>qPUA`pp^@?))O9{oM~84Z*4TUls-G6D z!48a|e>2TV7>Pg*>Np%pnHbcK67V1j-Kchbs0V+7y5BR5#Bp4T zlNf_v^*jALt=B^+chS_OA%ipJ_!1AH9>l|Zx-kh=FGY>09JO>c7>nmo9bdQg+qjeZ z1Jn}!z!FTPu|JoSdQNo1d#I`GMNQ=>>i74!7NaAKxq-Q;4#upnQ6ri_p4EIuJ;)!M zcQJhWG|8xeW#a)Xh-Ch?M%PGa4Z3g|t1;Nm@Rg{wo<=onL_K+vt+(T0>YcX!6V>sot;aIox<1~T zV$DO{uNc)&xwQ^8Apco=K`SPbxQQMdwE0OKrvA~^yJ(d_y$5yU7pRV3q1wO0c+}q1 z?+K`S67Irc)Y3I$nfCu6Cs`x{c=OaC8?_sJs3|*vKD>7v= z)M+M>PH4pXcI+S+ud|yp8*%jSjA{?6XeLSsFR_tO(N@!lcwndO<*4nGM3gz1xlghN zp_yY7m~A%C>*4HuRoRVZ6H%ZFg%#EK=e|lZjo3<*61<>J+08M9;NOC?ck{5AV52xC z+p2d!|0nhnTZnap3LiO>L%50gQpkyxfQhYgJ{Vf}?L-jqe@Uj2Pv||EFWRQ%^A)Tl q!ijx^KF1Zerh>oqzYVDi3(HB(%y*~fcr!El3tck-{Uy;EVSfP=Vvs8U delta 1854 zcmZYASx8ku9LMp|Y|%1v%~o%Vsimn`&Ai#3*UYrVB9OvDMFMy2!Cr1bL{N}m8PP^% zy@iqX5}FTDC=vy2kgd>SL{Se>6h`0Qal)X3|NA*JXXea)yp{bu+xH?Y;JD%1L`)~z z{Eex?#L@h4y&7XoD!xWHhL7bLdNBzbFb>b-1nk2@_!#*!CF6$kE3AzeK>mK5VT{il z^1Y~XyHE}7#VGXI{8m&u?O06v zrkk6IWJCuU!=H)cM-97?N5+GC(HbnmJk;cz!C80_N8xQ8kA0|mk5ChQ5|XteK;9Uqu$$T(_Ofd z^h4BAMp4P<LB3|AeA zLFH#6ZJPqrz=}hd|3Yp`$-3wmt&sPzJ>;&oINHSL=wZnTEon1>%xYn#CiRE6EBQ&EeWvR2H-PE-S5@c>3Kd>y+} z)=NlVOgn0%y{L{1SbsYCtp60wj4CGL23&-yco0?L9M!i3B=!v6Y6|~d^(3~hyeR!l~w0g{}VjKA|iv(iO?=zOlZxM z3ATmt61ueRsm|TVk89-CISE=)E#o|beWmdae|Gax)6S-Fu0*T9Rcs`d5L)-8#C(F~ zcfKL;-?h%>Xn(P-n9lgpnmyHx31zObn$kU0<<%`u$2^%3+u$m%udk_hRn}B=TphbJ qC@3Szo$5--@T8=5Obz?tH!-&1!?BZt?d|VQTzcDcq9ZiI9rOofY^hZM diff --git a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po index 05b0f21580..cc0ba96db4 100644 --- a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 @@ -45,8 +44,8 @@ msgstr "" #: forms.py:60 forms.py:122 msgid "" -"Email address of the recipient. Can be multiple addresses separated by comma " -"or semicolon." +"Email address of the recipient. Can be multiple addresses separated by comma" +" or semicolon." msgstr "收件人的电子邮件地址。可以是以逗号或分号分隔的多个地址。" #: forms.py:62 forms.py:124 @@ -120,11 +119,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"该电子邮件附有以下文件:{{document}}\n" -"\n" -" --------\n" -" 此电子邮件地址是%(project_title)s(%(project_website)s)" +msgstr "该电子邮件附有以下文件:{{document}}\n\n --------\n 此电子邮件地址是%(project_title)s(%(project_website)s)" #: literals.py:13 #, python-format @@ -133,11 +128,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"要访问此文档,请单击以下链接:{{link}}\n" -"\n" -"--------\n" -" 此电子邮件地址是%(project_title)s(%(project_website)s)" +msgstr "要访问此文档,请单击以下链接:{{link}}\n\n--------\n 此电子邮件地址是%(project_title)s(%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" @@ -145,8 +136,8 @@ msgstr "" #: mailers.py:26 mailers.py:115 msgid "" -"The sender's address. Some system will refuse to send messages if this value " -"is not set." +"The sender's address. Some system will refuse to send messages if this value" +" is not set." msgstr "" #: mailers.py:32 @@ -173,9 +164,7 @@ msgstr "使用TLS" msgid "" "Whether to use a TLS (secure) connection when talking to the SMTP server. " "This is used for explicit TLS connections, generally on port 587." -msgstr "" -"与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587" -"上。" +msgstr "与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587上。" #: mailers.py:52 msgid "Use SSL" @@ -187,12 +176,9 @@ msgid "" "server. In most email documentation this type of TLS connection is referred " "to as SSL. It is generally used on port 465. If you are experiencing " "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " -"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " -"True." -msgstr "" -"与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型" -"的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置中“使用" -"TLS”。请注意,“使用TLS”和“使用SSL”是互斥的,因此只将其中一个设置为True。" +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to" +" True." +msgstr "与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置中“使用TLS”。请注意,“使用TLS”和“使用SSL”是互斥的,因此只将其中一个设置为True。" #: mailers.py:64 msgid "Username" @@ -211,11 +197,9 @@ msgstr "密码" #: mailers.py:76 msgid "" "Password to use for the SMTP server. This setting is used in conjunction " -"with the username when authenticating to the SMTP server. If either of these " -"settings is empty, authentication won't be attempted." -msgstr "" -"用于SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与用户名一起使用。" -"如果这些设置中的任何一个为空,则不会尝试进行身份验证。" +"with the username when authenticating to the SMTP server. If either of these" +" settings is empty, authentication won't be attempted." +msgstr "用于SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与用户名一起使用。如果这些设置中的任何一个为空,则不会尝试进行身份验证。" #: mailers.py:85 msgid "Django SMTP backend" @@ -426,6 +410,3 @@ msgstr "没有可用的邮件配置文件" #, python-format msgid "Test mailing profile: %s" msgstr "测试邮件配置文件:%s" - -#~ msgid "%s error log" -#~ msgstr "%s错误日志" diff --git a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po index e6ca94d174..04766b97d4 100644 --- a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po index bbff963c9e..3b14f7e24e 100644 --- a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po index e9cc85cf46..30a2d9e096 100644 --- a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po index be1122fec6..a68f3357f3 100644 --- a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po index 75e394dadd..aeac579d49 100644 --- a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po index bc30b10225..1d8ce2bef5 100644 --- a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Bjoern Kowarsch , 2018 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 @@ -123,6 +122,4 @@ msgstr "Statistik \"%s\" für die Aktualisierung vorsehen?" #: views.py:94 #, python-format msgid "Statistic \"%s\" queued successfully for update." -msgstr "" -"Die Statistik \"%s\" wurde erfolgreich in die Aktualisierungswarteschlange " -"eingereiht." +msgstr "Die Statistik \"%s\" wurde erfolgreich in die Aktualisierungswarteschlange eingereiht." diff --git a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po index 0c2ad3edd8..fa7e9ff066 100644 --- a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po index 71b989d83d..c6eb964520 100644 --- a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2014 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 06:32+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po index 35513b2f5e..a2b262cce9 100644 --- a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Mohammad Dashtizadeh , 2013 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po index e12027d561..2bbcef2af3 100644 --- a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Frédéric Sheedy , 2019 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 13:30+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po index 80307eccaa..e41a334756 100644 --- a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 # molnars , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po index af47e238cb..56f187e460 100644 --- a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po index aeb032e091..e2b1c49726 100644 --- a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po index 1412a74981..0ac60b840d 100644 --- a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:50+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po index ee2c5dc745..cd69e4e40f 100644 --- a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po index b6a32799be..800a3e2339 100644 --- a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2017 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po index f78827bf9c..8bc3d5cfcd 100644 --- a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po index cf6b23c643..a683eb26d0 100644 --- a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Rogerio Falcone , 2015 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po index 2900861654..2b54cefe47 100644 --- a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -13,14 +13,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" @@ -122,5 +120,4 @@ msgstr "Trimite în coada de statistici \"%s\" pentru a fi actualizată?" #: views.py:94 #, python-format msgid "Statistic \"%s\" queued successfully for update." -msgstr "" -"Statistica \"%s\" a fost așezată cu succes la coada pentru actualizare." +msgstr "Statistica \"%s\" a fost așezată cu succes la coada pentru actualizare." diff --git a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po index 59ee6fc2da..362d66ff26 100644 --- a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 # Sergey Glita , 2013 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po index 34c52911e7..517624aa87 100644 --- a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" diff --git a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po index 193e30a118..e8b01130b3 100644 --- a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po index 59435370d3..b448772642 100644 --- a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po index 5dd96d84c7..900fa87220 100644 --- a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:33 permissions.py:7 queues.py:9 diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 181cc5a2aa..7346f5b667 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -183,8 +181,8 @@ msgstr "Default" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -203,7 +201,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -345,16 +344,15 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." +msgstr "نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." #: views.py:218 #, python-format @@ -403,8 +401,9 @@ msgstr "تم تعديل البيانات الوصفية للوثيقة %s بنج #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index efc7037ba4..ae214302d8 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +181,8 @@ msgstr "По подразбиране" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -202,7 +201,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -340,7 +340,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -392,8 +393,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po index 79256bc6d0..e31cfa8d4b 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -184,8 +182,8 @@ msgstr "default" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -196,9 +194,7 @@ msgstr "Pogledaj gore" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Validator će odbiti unos podataka ako uneta vrednost ne odgovara očekivanom " -"formatu." +msgstr "Validator će odbiti unos podataka ako uneta vrednost ne odgovara očekivanom formatu." #: models.py:80 search.py:28 msgid "Validator" @@ -206,10 +202,9 @@ msgstr "Validator" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Analizator će reformatirati vrijednost koja se unese u skladu sa očekivanim " -"formatom." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Analizator će reformatirati vrijednost koja se unese u skladu sa očekivanim formatom." #: models.py:86 search.py:31 msgid "Parser" @@ -342,16 +337,14 @@ msgstr "Dodajte metatatske tipove za dokument: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Greška pri dodavanju metapodataka tipa \"%(metadata_type)s\" u dokument: " -"%(document)s; %(exception)s" +msgstr "Greška pri dodavanju metapodataka tipa \"%(metadata_type)s\" u dokument: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." #: views.py:204 #, python-format @@ -394,8 +387,7 @@ msgstr "Izmjeni metadata za dokument: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Greška u editovanju metapodataka za dokument: %(document)s; %(exception)s." +msgstr "Greška u editovanju metapodataka za dokument: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -404,8 +396,9 @@ msgstr "Metadata za dokument %s uspješno izmjenjen." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -444,18 +437,14 @@ msgstr "Udaljite tipove metapodataka iz dokumenta: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Uspješno uklonite metapodatke tipa \"%(metadata_type)s\" iz dokumenta: " -"%(document)s." +msgstr "Uspješno uklonite metapodatke tipa \"%(metadata_type)s\" iz dokumenta: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Greška u uklanjanju metapodataka tipa \"%(metadata_type)s\" iz dokumenta: " -"%(document)s; %(exception)s" +msgstr "Greška u uklanjanju metapodataka tipa \"%(metadata_type)s\" iz dokumenta: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po index 00ba62170f..1f6611af80 100644 --- a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -182,8 +180,8 @@ msgstr "" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -202,7 +200,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -342,7 +341,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -396,8 +396,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po index 908aa1e630..1151484aca 100644 --- a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -181,8 +180,8 @@ msgstr "Standard" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,7 +200,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -339,7 +339,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -391,8 +392,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po index fbd5d07115..6ad0af9ac2 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -172,18 +171,13 @@ msgstr "Bearbeiten" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "" -"Name, der von anderen Programmteilen zur Referenzierung auf diesen " -"Metadatentyp verwendet wird. Verwenden Sie keine in Python reservierte " -"Wörter oder Leerzeichen." +msgstr "Name, der von anderen Programmteilen zur Referenzierung auf diesen Metadatentyp verwendet wird. Verwenden Sie keine in Python reservierte Wörter oder Leerzeichen." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Vorlage zur Generierung eingeben. Django's Standard-Vorlagen-Sprache " -"benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "Vorlage zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -192,12 +186,9 @@ msgstr "Standard" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." -msgstr "" -"Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte " -"Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/" -"builtins/)" +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:73 search.py:25 msgid "Lookup" @@ -207,9 +198,7 @@ msgstr "Suche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem " -"geforderten Format nicht entspricht." +msgstr "Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem geforderten Format nicht entspricht." #: models.py:80 search.py:28 msgid "Validator" @@ -217,10 +206,9 @@ msgstr "Validierer" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Der Parser wird den eingegebenen Wert so reformatieren, dass er dem " -"geforderten Format entspricht." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Der Parser wird den eingegebenen Wert so reformatieren, dass er dem geforderten Format entspricht." #: models.py:86 search.py:31 msgid "Parser" @@ -240,9 +228,7 @@ msgstr "Typ" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "" -"Der aktuelle Wert, der in dem Metadatentypfeld für das Dokument gespeichert " -"wird." +msgstr "Der aktuelle Wert, der in dem Metadatentypfeld für das Dokument gespeichert wird." #: models.py:217 models.py:218 msgid "Document metadata" @@ -354,24 +340,20 @@ msgstr "Metadatentypen hinzufügen zu Dokument: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument " -"%(document)s: %(exception)s" +msgstr "Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument %(document)s: %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s." +msgstr "Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s." #: views.py:218 #, python-format @@ -387,9 +369,7 @@ msgstr "Metadaten für %(count)d Dokumente bearbeitet" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "" -"Fügen Sie Metadatentype für diesen Dokumententyp hinzu und weisen Sie ihnen " -"entsprechende Werte zu." +msgstr "Fügen Sie Metadatentype für diesen Dokumententyp hinzu und weisen Sie ihnen entsprechende Werte zu." #: views.py:309 msgid "There is no metadata to edit" @@ -409,9 +389,7 @@ msgstr "Metadaten des Dokuments %s bearbeiten" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: " -"%(exception)s." +msgstr "Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: %(exception)s." #: views.py:392 #, python-format @@ -420,12 +398,10 @@ msgstr "Metadaten des Dokuments %s erfolgreich bearbeitet." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." -msgstr "" -"Fügen Sie Metadatentype für diesen Dokumententyp hinzu, um sie zu " -"individuellen Dokumenten dieses Typs hinzufügen zu können. Sobald sie " -"individuellen Dokumenten zugeordnet sind, lassen sich ihre Werte eintragen." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." +msgstr "Fügen Sie Metadatentype für diesen Dokumententyp hinzu, um sie zu individuellen Dokumenten dieses Typs hinzufügen zu können. Sobald sie individuellen Dokumenten zugeordnet sind, lassen sich ihre Werte eintragen." #: views.py:430 msgid "This document doesn't have any metadata" @@ -462,18 +438,14 @@ msgstr "Metadatentypen von Dokument %s entfernen" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument " -"%(document)s." +msgstr "Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von " -"Dokument %(document)s: %(exception)s" +msgstr "Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von Dokument %(document)s: %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -496,12 +468,7 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "" -"Metadatentypen sind benutzerdefinierte Eigenschaften, die mit Werten " -"versehen werden können. Nach der Erstellung müssen sie Dokumententypen als " -"optional oder erforderlich zugewiesen werden. Ein erforderlicher " -"Metadatentyp wird das Hochladen von Dokumenten sperren, bis ein Wert dafür " -"eingetragen wurde." +msgstr "Metadatentypen sind benutzerdefinierte Eigenschaften, die mit Werten versehen werden können. Nach der Erstellung müssen sie Dokumententypen als optional oder erforderlich zugewiesen werden. Ein erforderlicher Metadatentyp wird das Hochladen von Dokumenten sperren, bis ein Wert dafür eingetragen wurde." #: views.py:655 msgid "There are no metadata types" @@ -519,8 +486,7 @@ msgstr "Beziehungen erfolgreich aktualisiert" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "" -"Erstellen Sie Metadatentype um sie diesem Dokumententyp zuordnen zu können." +msgstr "Erstellen Sie Metadatentype um sie diesem Dokumententyp zuordnen zu können." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po index 6b0ff20d86..bce91f11ef 100644 --- a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -181,8 +180,8 @@ msgstr "Προκαθορισμένο" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,7 +200,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -339,7 +339,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -391,8 +392,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index c130ce2d9f..dbeff68294 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:27+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -170,18 +169,13 @@ msgstr "Editar" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "" -"Nombre utilizado por otras aplicaciones para hacer referencia a este tipo de " -"metadatos. No utilice palabras reservadas de python, o espacios." +msgstr "Nombre utilizado por otras aplicaciones para hacer referencia a este tipo de metadatos. No utilice palabras reservadas de python, o espacios." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas " -"predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/" -"templates/builtins/)" +msgstr "Ingrese una plantilla para renderizar. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -190,12 +184,9 @@ msgstr "Por defecto" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." -msgstr "" -"Ingrese una plantilla para renderizar. Debe dar como resultado una cadena " -"delimitada por comas. Utilice el lenguaje de plantillas predeterminado de " -"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Ingrese una plantilla para renderizar. Debe dar como resultado una cadena delimitada por comas. Utilice el lenguaje de plantillas predeterminado de Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -205,9 +196,7 @@ msgstr "Lista de opciones" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"El validador rechazará la entrada de datos si el valor introducido no se " -"ajusta al formato esperado." +msgstr "El validador rechazará la entrada de datos si el valor introducido no se ajusta al formato esperado." #: models.py:80 search.py:28 msgid "Validator" @@ -215,10 +204,9 @@ msgstr "Validador" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"El analizador volverá a formatear el valor introducido para ajustarse al " -"formato esperado." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "El analizador volverá a formatear el valor introducido para ajustarse al formato esperado." #: models.py:86 search.py:31 msgid "Parser" @@ -238,8 +226,7 @@ msgstr "Tipo" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "" -"El valor real almacenado en el campo de tipo de metadatos para el documento." +msgstr "El valor real almacenado en el campo de tipo de metadatos para el documento." #: models.py:217 models.py:218 msgid "Document metadata" @@ -351,25 +338,20 @@ msgstr "Añadir tipos de metadatos al documento: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: " -"%(document)s; %(exception)s" +msgstr "Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipo de metadatos: %(metadata_type)s añadido con éxito al documento " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipo de metadatos: %(metadata_type)s añadido con éxito al documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipo de metadatos: %(metadata_type)s ya presente en el documento " -"%(document)s." +msgstr "Tipo de metadatos: %(metadata_type)s ya presente en el documento %(document)s." #: views.py:218 #, python-format @@ -385,9 +367,7 @@ msgstr "Solicitud de edición de metadatos realizada en %(count)d documentos" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "" -"Agregue los tipos de metadatos disponibles para el tipo de este documento y " -"asígneles los valores correspondientes." +msgstr "Agregue los tipos de metadatos disponibles para el tipo de este documento y asígneles los valores correspondientes." #: views.py:309 msgid "There is no metadata to edit" @@ -416,12 +396,10 @@ msgstr "Metadatos del documento %s editados con éxito." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." -msgstr "" -"Agregue tipos de metadatos del tipo de este documento para poder agregarlos " -"a documentos individuales. Una vez agregado al documento individual, puede " -"editar sus valores." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." +msgstr "Agregue tipos de metadatos del tipo de este documento para poder agregarlos a documentos individuales. Una vez agregado al documento individual, puede editar sus valores." #: views.py:430 msgid "This document doesn't have any metadata" @@ -435,14 +413,12 @@ msgstr "Meta datos para el documento: %s" #: views.py:443 #, python-format msgid "Metadata remove request performed on %(count)d document" -msgstr "" -"Solicitud de eliminación de metadatos realizada en %(count)d documento " +msgstr "Solicitud de eliminación de metadatos realizada en %(count)d documento " #: views.py:446 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "" -"Solicitud de eliminación de metadatos realizada en %(count)d documentos" +msgstr "Solicitud de eliminación de metadatos realizada en %(count)d documentos" #: views.py:508 msgid "Remove metadata types from the document" @@ -460,18 +436,14 @@ msgstr "Eliminar los tipos de metadatos del documento: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del " -"documento: %(document)s." +msgstr "Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del documento: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: " -"%(document)s; %(exception)s" +msgstr "Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -494,13 +466,7 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "" -"Los tipos de metadatos son propiedades definidas por los usuarios a los que " -"se les pueden asignar valores. Una vez creados, deben estar asociados a los " -"tipos de documento, ya sea como opcional o requerido, para cada uno. " -"Establecer un tipo de metadato como requerido para un tipo de documento " -"bloqueará la carga de documentos de ese tipo hasta que se proporcione un " -"valor de metadato." +msgstr "Los tipos de metadatos son propiedades definidas por los usuarios a los que se les pueden asignar valores. Una vez creados, deben estar asociados a los tipos de documento, ya sea como opcional o requerido, para cada uno. Establecer un tipo de metadato como requerido para un tipo de documento bloqueará la carga de documentos de ese tipo hasta que se proporcione un valor de metadato." #: views.py:655 msgid "There are no metadata types" @@ -518,8 +484,7 @@ msgstr "Relaciones actualizadas con éxito" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "" -"Cree tipos de metadatos para poder asociarlos a este tipo de documento." +msgstr "Cree tipos de metadatos para poder asociarlos a este tipo de documento." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 6e2ac656c0..88bee600dd 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -183,8 +182,8 @@ msgstr "پیش فرض" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -195,9 +194,7 @@ msgstr "بررسی و یا پیدا کردن" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"اعتبار سنج ورودی داده را رد خواهد کرد اگر مقدار وارد شده با فرمت مورد نظر " -"مطابقت نداشته باشد." +msgstr "اعتبار سنج ورودی داده را رد خواهد کرد اگر مقدار وارد شده با فرمت مورد نظر مطابقت نداشته باشد." #: models.py:80 search.py:28 msgid "Validator" @@ -205,10 +202,9 @@ msgstr "تأیید اعتبار" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"تجزیه کننده مقدار ورودی را برای مطابقت با فرمت مورد انتظار بازنویسی خواهد " -"کرد." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "تجزیه کننده مقدار ورودی را برای مطابقت با فرمت مورد انتظار بازنویسی خواهد کرد." #: models.py:86 search.py:31 msgid "Parser" @@ -340,14 +336,13 @@ msgstr "اضافه کردن انواع فراداده به سند: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; " -"%(exception)s" +msgstr "نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "جذف موفق متادیتای ندع : %(metadata_type)s برای سند : %(document)s." #: views.py:204 @@ -399,8 +394,9 @@ msgstr "متادیتای سند %s با موفقیت ویرایش شد." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -445,9 +441,7 @@ msgstr "حذف موفق متادیتای نوع \"%(metadata_type)s\" از سن msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; " -"%(exception)s" +msgstr "خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index b4d61fc4e4..560a06208d 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2016-2017 # Frédéric Sheedy , 2019 @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -173,17 +172,13 @@ msgstr "Modifier" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "" -"Nom utilisé par d'autres applications pour faire référence à ce type de " -"métadonnées. N'utilisez pas de mots réservés Python, ni d'espace." +msgstr "Nom utilisé par d'autres applications pour faire référence à ce type de métadonnées. N'utilisez pas de mots réservés Python, ni d'espace." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de " -"Django (https://docs.djangoproject.com/fr/1.11.11/ref/templates/builtins/)" +msgstr "Entrez un modèle à utiliser. Utilisez le langage de gabarit par défaut de Django (https://docs.djangoproject.com/fr/1.11.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -192,12 +187,9 @@ msgstr "Par défaut" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." -msgstr "" -"Entrez un modèle à afficher. Doit avoir pour résultat une chaîne délimitée " -"par des virgules. Utilisez le langage par défaut de Django pour les modèles " +"Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Entrez un modèle à afficher. Doit avoir pour résultat une chaîne délimitée par des virgules. Utilisez le langage par défaut de Django pour les modèles (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -207,9 +199,7 @@ msgstr "Rechercher" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Le système de validation rejettera les données saisies si elles ne sont pas " -"conformes au format attendu." +msgstr "Le système de validation rejettera les données saisies si elles ne sont pas conformes au format attendu." #: models.py:80 search.py:28 msgid "Validator" @@ -217,10 +207,9 @@ msgstr "Validateur" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme " -"au format attendu." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme au format attendu." #: models.py:86 search.py:31 msgid "Parser" @@ -240,9 +229,7 @@ msgstr "Type" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "" -"La valeur actuellement enregistrée dans le champ de type de métadonnées du " -"document." +msgstr "La valeur actuellement enregistrée dans le champ de type de métadonnées du document." #: models.py:217 models.py:218 msgid "Document metadata" @@ -354,45 +341,36 @@ msgstr "Ajouter des types de métadonnées au document : %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au " -"document: %(document)s; %(exception)s" +msgstr "Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au document: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Le type de métadonnées : %(metadata_type)s a été ajouté avec succès au " -"document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Le type de métadonnées : %(metadata_type)s a été ajouté avec succès au document %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Le type de métadonnées : %(metadata_type)s est déjà présent dans le document " -"%(document)s." +msgstr "Le type de métadonnées : %(metadata_type)s est déjà présent dans le document %(document)s." #: views.py:218 #, python-format msgid "Metadata edit request performed on %(count)d document" -msgstr "" -"La demande d'édition de métadonnées a été effectuée sur %(count)d document" +msgstr "La demande d'édition de métadonnées a été effectuée sur %(count)d document" #: views.py:221 #, python-format msgid "Metadata edit request performed on %(count)d documents" -msgstr "" -"La demande d'édition de métadonnées a été effectuée sur %(count)d documents" +msgstr "La demande d'édition de métadonnées a été effectuée sur %(count)d documents" #: views.py:306 msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "" -"Ajoutez les types de métadonnées disponibles pour le type de ce document et " -"attribuez-leur les valeurs correspondantes." +msgstr "Ajoutez les types de métadonnées disponibles pour le type de ce document et attribuez-leur les valeurs correspondantes." #: views.py:309 msgid "There is no metadata to edit" @@ -412,9 +390,7 @@ msgstr "Modifier les métadonnées pour le document: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Erreur lors de la modification des métadonnées du document %(document)s; " -"%(exception)s." +msgstr "Erreur lors de la modification des métadonnées du document %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -423,8 +399,9 @@ msgstr "Métadonnées pour le document %s modifiées avec succès." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -444,8 +421,7 @@ msgstr "Demande de suppression de métadonnées effectuée sur %(count)d documen #: views.py:446 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "" -"Demande de suppression de métadonnées effectuée sur %(count)d documents" +msgstr "Demande de suppression de métadonnées effectuée sur %(count)d documents" #: views.py:508 msgid "Remove metadata types from the document" @@ -463,18 +439,14 @@ msgstr "Retirer les types de métadonnées du document : %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Type de métadonnées retiré avec succès \"%(metadata_type)s\" pour le " -"document : %(document)s." +msgstr "Type de métadonnées retiré avec succès \"%(metadata_type)s\" pour le document : %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Erreur lors du retrait du type de métadonnées \"%(metadata_type)s\" pour le " -"document : %(document)s; %(exception)s" +msgstr "Erreur lors du retrait du type de métadonnées \"%(metadata_type)s\" pour le document : %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index ce5f09f84e..44ad09d6ad 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +181,8 @@ msgstr "Alapéretelmezett" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -202,7 +201,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -340,7 +340,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -392,8 +393,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 7b8e4d8993..cd36918184 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-14 11:19+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -181,8 +180,8 @@ msgstr "Bawaan" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -201,7 +200,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -338,7 +338,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -389,8 +390,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 730f77ce31..4f5283e42e 100644 --- a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011-2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -183,8 +182,8 @@ msgstr "Default" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -195,9 +194,7 @@ msgstr "Ricerca" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Il validatore rifiuterà l'inserimento se il valore immesso non è conforme al " -"formato richiesto." +msgstr "Il validatore rifiuterà l'inserimento se il valore immesso non è conforme al formato richiesto." #: models.py:80 search.py:28 msgid "Validator" @@ -205,10 +202,9 @@ msgstr "Validatore" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Il parser riformatta il valore immesso per renderlo conforme al formato " -"voluto." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Il parser riformatta il valore immesso per renderlo conforme al formato voluto." #: models.py:86 search.py:31 msgid "Parser" @@ -340,24 +336,20 @@ msgstr "" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Errore aggiungendo il tipo metadato \"%(metadata_type)s\" al documento: " -"%(document)s; %(exception)s" +msgstr "Errore aggiungendo il tipo metadato \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipo metadata: %(metadata_type)s aggiunto con successo al documento " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipo metadata: %(metadata_type)s aggiunto con successo al documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." +msgstr "Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." #: views.py:218 #, python-format @@ -393,8 +385,7 @@ msgstr "Modifica metadata per il documento: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Errore modifica metadato per il documento: %(document)s; %(exception)s." +msgstr "Errore modifica metadato per il documento: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -403,8 +394,9 @@ msgstr "Metadata per il documento %s modificato con successo." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -442,18 +434,14 @@ msgstr "" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Rimosso con successo il tipo metadato \"%(metadata_type)s\" dal documento: " -"%(document)s." +msgstr "Rimosso con successo il tipo metadato \"%(metadata_type)s\" dal documento: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Errore rimuovendo il tipo metadato \"%(metadata_type)s\" dal documento: " -"%(document)s; %(exception)s" +msgstr "Errore rimuovendo il tipo metadato \"%(metadata_type)s\" dal documento: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo index b8e56ccf24c6e79d5b6cc9d0cb7b5c8d2a1e2d50..29c724c8c98a77d0962e605c22f2977440837abd 100644 GIT binary patch delta 900 zcmXZaKS*0~5Ww-%N@9#nQCt61P10v$|7b7D#@z1;iV-8+o0#kXf3m~|r3S}Eef zF)YCee1^051yh*D;wq7!c!Dpnt6HQMzhN0JV=w+i58k5IaeGAyF^Dx7MF$Rf#gr!m zA4xpLY1D%(V==BHHN>+0hkWFUuSe+di9AQIZ3k-pGwOpAsP$ISkDD0B1Jp(hznLu% z;VMnZAeLhSckmZ3Vh`2y`Z*5aEo!HOhR7)X!Pn@ayiy;? zg7+F=KOUnNta`y-b42QpX5}~kYQdBjVV;|xNY{aj&>!=N!Vh7eRz5yJ=Vcf+c^aryO z3S&U;>?6x3|F=tE>W`qPK3=v#p!8A})4M<%IETZyj1_1#y6043Ir|x4^GK zM|S}=-+szsh{bCh!2;@mkzvQ{C#ewhgD*cVQWB7{3~~Fhab5 z9oS5pH18}DvgHyBZP6s^OlDA9wSZdr20p+%>di-wQw=`GFg`P`VT}DY_Tv!k8^tNS zjK6U|4z{};ilJXK@3YW9e1*Gl16H=oz@ KpA;)tTl^1?k&Nd6 diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po index c9cc4f3d58..ce243217d9 100644 --- a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:18-0400\n" -"PO-Revision-Date: 2019-05-31 12:40+0000\n" +"PO-Revision-Date: 2019-06-28 07:05+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -102,7 +100,7 @@ msgstr "Noklusējuma vērtības kļūda: %s" #: forms.py:104 models.py:172 #, python-format msgid "\"%s\" is required for this document type." -msgstr ""%s" ir nepieciešams šim dokumenta tipam." +msgstr "\"%s\" ir nepieciešams šim dokumenta tipam." #: forms.py:122 msgid "Metadata types to be added to the selected documents." @@ -168,17 +166,13 @@ msgstr "Rediģēt" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "" -"Nosaukums, ko citas lietotnes izmanto, lai norādītu uz šo metadatu tipu. " -"Neizmantojiet rezervētos vārdus, kas ir rezervēti, vai atstarpes." +msgstr "Nosaukums, ko citas lietotnes izmanto, lai norādītu uz šo metadatu tipu. Neizmantojiet rezervētos vārdus, kas ir rezervēti, vai atstarpes." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes " -"valodu (https://docs.djangoproject.com/lv/1.11/ref/templates/builtins/)" +msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/lv/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -187,12 +181,9 @@ msgstr "Noklusējums" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." -msgstr "" -"Ievadiet veidni, kas jāpiešķir. Jāizveido ar komatu atdalīta virkne. " -"Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject." -"com/en/1.11/ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Ievadiet veidni, kas jāpiešķir. Jāizveido ar komatu atdalīta virkne. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -202,9 +193,7 @@ msgstr "Meklēt" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Validators noraidīs datu ievadīšanu, ja ievadītā vērtība neatbilst " -"paredzētajam formātam." +msgstr "Validators noraidīs datu ievadīšanu, ja ievadītā vērtība neatbilst paredzētajam formātam." #: models.py:80 search.py:28 msgid "Validator" @@ -212,9 +201,9 @@ msgstr "Validators" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Parsētājs pārveidos ievadīto vērtību, lai tas atbilstu paredzētajam formātam." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Parsētājs pārveidos ievadīto vērtību, lai tas atbilstu paredzētajam formātam." #: models.py:86 search.py:31 msgid "Parser" @@ -347,24 +336,20 @@ msgstr "Pievienot metadatu veidus dokumentam: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Kļūda, pievienojot dokumentam "%(metadata_type)s" metadatu tipu: " -"%(document)s; %(exception)s" +msgstr "Kļūda, pievienojot dokumentam \"%(metadata_type)s\" metadatu tipu: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Metadatu veids: %(metadata_type)s veiksmīgi pievienots dokumentam " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Metadatu veids: %(metadata_type)s veiksmīgi pievienots dokumentam %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Metadatu veids: %(metadata_type)s jau ir iekļauts dokumentā %(document)s." +msgstr "Metadatu veids: %(metadata_type)s jau ir iekļauts dokumentā %(document)s." #: views.py:218 #, python-format @@ -380,9 +365,7 @@ msgstr "Metadatu rediģēšanas pieprasījums, kas veikts dokumentos %(count)d" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "" -"Pievienojiet šī dokumenta tipam pieejamos metadatu veidus un piešķiriet tiem " -"atbilstošās vērtības." +msgstr "Pievienojiet šī dokumenta tipam pieejamos metadatu veidus un piešķiriet tiem atbilstošās vērtības." #: views.py:309 msgid "There is no metadata to edit" @@ -403,8 +386,7 @@ msgstr "Dokumenta metadatu rediģēšana: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Rediģējot dokumenta metadatus, radās kļūda: %(document)s; %(exception)s." +msgstr "Rediģējot dokumenta metadatus, radās kļūda: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -413,12 +395,10 @@ msgstr "Dokumenta %s veiksmīgi rediģēti metadati." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." -msgstr "" -"Pievienot metadatus, kas ieraksta šī dokumenta tipu, lai tos varētu " -"pievienot atsevišķiem dokumentiem. Pēc pievienošanas atsevišķam dokumentam " -"varat rediģēt savas vērtības." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." +msgstr "Pievienot metadatus, kas ieraksta šī dokumenta tipu, lai tos varētu pievienot atsevišķiem dokumentiem. Pēc pievienošanas atsevišķam dokumentam varat rediģēt savas vērtības." #: views.py:430 msgid "This document doesn't have any metadata" @@ -456,18 +436,14 @@ msgstr "Noņemt metadatu veidus no dokumenta: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Veiksmīgi noņemt metadatu tipu "%(metadata_type)s" no dokumenta: " -"%(document)s." +msgstr "Veiksmīgi noņemt metadatu tipu \"%(metadata_type)s\" no dokumenta: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Atceļot metadatu tipu "%(metadata_type)s" no dokumenta, radās " -"kļūda: %(document)s; %(exception)s" +msgstr "Atceļot metadatu tipu \"%(metadata_type)s\" no dokumenta, radās kļūda: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -490,12 +466,7 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "" -"Metadatu veidi ir lietotāju definētas īpašības, kurām var piešķirt vērtības. " -"Kad tas ir izveidots, katram no tiem ir jābūt saistītam ar dokumenta tipiem, " -"vai nu kā izvēles, vai nepieciešamajiem. Metadatu tipa iestatīšana, kas " -"nepieciešama dokumenta tipam, bloķēs šāda veida dokumentu augšupielādi, līdz " -"tiks nodrošināta metadatu vērtība." +msgstr "Metadatu veidi ir lietotāju definētas īpašības, kurām var piešķirt vērtības. Kad tas ir izveidots, katram no tiem ir jābūt saistītam ar dokumenta tipiem, vai nu kā izvēles, vai nepieciešamajiem. Metadatu tipa iestatīšana, kas nepieciešama dokumenta tipam, bloķēs šāda veida dokumentu augšupielādi, līdz tiks nodrošināta metadatu vērtība." #: views.py:655 msgid "There are no metadata types" @@ -513,8 +484,7 @@ msgstr "Attiecības tika veiksmīgi atjauninātas" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "" -"Izveidojiet metadatu veidus, lai tos varētu saistīt ar šo dokumenta veidu." +msgstr "Izveidojiet metadatu veidus, lai tos varētu saistīt ar šo dokumenta veidu." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po index e327eabf49..a4d8284da0 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -183,8 +182,8 @@ msgstr "Verstekwaarde" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -203,7 +202,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -341,7 +341,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -393,8 +394,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index c2746b7a8a..cf5f80868b 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012 @@ -14,15 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -187,8 +184,8 @@ msgstr "Domyślny" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -199,9 +196,7 @@ msgstr "Wyszukanie" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym " -"formatem." +msgstr "Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym formatem." #: models.py:80 search.py:28 msgid "Validator" @@ -209,7 +204,8 @@ msgstr "Walidator" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "Parser zmieni format podanej wartości na format oczekiwany." #: models.py:86 search.py:31 @@ -344,23 +340,20 @@ msgstr "Dodaj typy metadanych do dokumentu: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Błąd dodawania typu metadanych \"%(metadata_type)s\" do dokumentu: " -"%(document)s; %(exception)s" +msgstr "Błąd dodawania typu metadanych \"%(metadata_type)s\" do dokumentu: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Typ metadanych: %(metadata_type)s dodano pomyślnie do dokumentu %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Typ metadanych: %(metadata_type)s dodano pomyślnie do dokumentu %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Typ metadanych: %(metadata_type)s już istnieje w dokumencie %(document)s." +msgstr "Typ metadanych: %(metadata_type)s już istnieje w dokumencie %(document)s." #: views.py:218 #, python-format @@ -398,8 +391,7 @@ msgstr "Edytuj metadane dokumentu: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." +msgstr "Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -408,8 +400,9 @@ msgstr "Metadane dla dokumentu %s zostały pomyślnie zmodyfikowane." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index 97cf1165ab..86f606ab29 100644 --- a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Renata Oliveira , 2011 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -184,8 +183,8 @@ msgstr "Padrão" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -204,7 +203,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -342,17 +342,15 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipo de metadados: %(metadata_type)s já existe no documento %(document)s ." +msgstr "Tipo de metadados: %(metadata_type)s já existe no documento %(document)s ." #: views.py:218 #, python-format @@ -397,8 +395,9 @@ msgstr "Metadados do documento %s alterados com sucesso." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po index 00c7ed64ea..e927b6de57 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2013 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -177,9 +176,7 @@ msgstr "" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Insira um modelo para renderizar. Use a linguagem padrão de modelos do " -"Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Insira um modelo para renderizar. Use a linguagem padrão de modelos do Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:63 search.py:22 msgid "Default" @@ -188,8 +185,8 @@ msgstr "Padrão" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -200,9 +197,7 @@ msgstr "Tipo de metadados não é válido, para o tipo de documento" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"O validador rejeitará a entrada de dados se o valor inserido não estiver de " -"acordo com o formato esperado." +msgstr "O validador rejeitará a entrada de dados se o valor inserido não estiver de acordo com o formato esperado." #: models.py:80 search.py:28 msgid "Validator" @@ -210,10 +205,9 @@ msgstr "Validador" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"O analisador irá reformatar o valor inserido para estar em conformidade com " -"o formato esperado." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "O analisador irá reformatar o valor inserido para estar em conformidade com o formato esperado." #: models.py:86 search.py:31 msgid "Parser" @@ -345,24 +339,20 @@ msgstr "Adicionar tipos de metadados ao documento: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: " -"%(document)s; %(exception)s" +msgstr "Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." +msgstr "Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." #: views.py:218 #, python-format @@ -407,8 +397,9 @@ msgstr "Metadados para o documento %s alterados com sucesso." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -446,18 +437,14 @@ msgstr "Remover tipos de metadados do documento: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do " -"documento: %(document)s." +msgstr "Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do documento: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: " -"%(document)s; %(exception)s" +msgstr "Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po index d0cfa685b0..793ee075ff 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -107,8 +105,7 @@ msgstr "\"%s\" este necesar pentru acest tip de document." #: forms.py:122 msgid "Metadata types to be added to the selected documents." -msgstr "" -"Tipurile de metadate care urmează să fie adăugate la documentele selectate." +msgstr "Tipurile de metadate care urmează să fie adăugate la documentele selectate." #: forms.py:148 views.py:506 msgid "Remove" @@ -170,18 +167,13 @@ msgstr "Editează" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "" -"Numele utilizat de alte aplicații pentru a face referire la acest tip de " -"metadate. Nu utilizați cuvinte sau spații rezervate Python." +msgstr "Numele utilizat de alte aplicații pentru a face referire la acest tip de metadate. Nu utilizați cuvinte sau spații rezervate Python." #: models.py:59 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating " -"implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/" -"builtins/)" +msgstr "Introduceți un șablon pentru a fi afișat. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -190,12 +182,9 @@ msgstr "Iniţial" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." -msgstr "" -"Introduceți un șablon pentru a fi afișat. Trebuie să rezulte un șir " -"delimitat cu virgulă. Utilizați limbajul templating implicit al lui Django " +"Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "Introduceți un șablon pentru a fi afișat. Trebuie să rezulte un șir delimitat cu virgulă. Utilizați limbajul templating implicit al lui Django (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" @@ -205,9 +194,7 @@ msgstr "Căutare" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Validatorul va respinge introducerea datelor dacă valoarea introdusă nu este " -"conformă cu formatul așteptat." +msgstr "Validatorul va respinge introducerea datelor dacă valoarea introdusă nu este conformă cu formatul așteptat." #: models.py:80 search.py:28 msgid "Validator" @@ -215,10 +202,9 @@ msgstr "Validator" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Parserul va reformata valoarea introdusă pentru a se conforma formatului " -"așteptat." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Parserul va reformata valoarea introdusă pentru a se conforma formatului așteptat." #: models.py:86 search.py:31 msgid "Parser" @@ -314,8 +300,7 @@ msgstr "Cheia primară a tipului de metadate care urmează să fie adăugată." #: serializers.py:132 msgid "Primary key of the metadata type to be added to the document." -msgstr "" -"Cheia primară a tipului de metadate care urmează să fie adăugată în document." +msgstr "Cheia primară a tipului de metadate care urmează să fie adăugată în document." #: views.py:51 #, python-format @@ -352,25 +337,20 @@ msgstr "Adăugați tipuri de metadate în documentul: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Eroare la adăugarea tipului de metadate \"%(metadata_type)s\" în documentul: " -"%(document)s; %(exception)s" +msgstr "Eroare la adăugarea tipului de metadate \"%(metadata_type)s\" în documentul: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipul de metadate:%(metadata_type)s a fost adăugat cu succes la documentul " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipul de metadate:%(metadata_type)s a fost adăugat cu succes la documentul %(document)s." #: views.py:204 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipul de metadate:%(metadata_type)s e deja prezent în documentul " -"%(document)s." +msgstr "Tipul de metadate:%(metadata_type)s e deja prezent în documentul %(document)s." #: views.py:218 #, python-format @@ -386,9 +366,7 @@ msgstr "Cererea de editare de metadate efectuată pe %(count)ddocumente" msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "" -"Adăugați tipuri de metadate disponibile pentru tipul acestui document și " -"atribuiți-le valorile corespunzătoare." +msgstr "Adăugați tipuri de metadate disponibile pentru tipul acestui document și atribuiți-le valorile corespunzătoare." #: views.py:309 msgid "There is no metadata to edit" @@ -409,8 +387,7 @@ msgstr "Editați metadate pentru document:% s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Eroare la editarea metadatelor pentru document: %(document)s; %(exception)s." +msgstr "Eroare la editarea metadatelor pentru document: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -419,12 +396,10 @@ msgstr "Metadatele pentru documentul %s au fost editate cu succes." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." -msgstr "" -"Adăugați tipuri de metadate pentru acest tip de document pentru a le putea " -"adăuga la documente individuale. După ce ați adăugat la un document " -"individual, puteți să le modificați valorile." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." +msgstr "Adăugați tipuri de metadate pentru acest tip de document pentru a le putea adăuga la documente individuale. După ce ați adăugat la un document individual, puteți să le modificați valorile." #: views.py:430 msgid "This document doesn't have any metadata" @@ -462,18 +437,14 @@ msgstr "Eliminați tipurile de metadate din documentul: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Ttipul de metadate \"%(metadata_type)s\" a fost șters cu succes din " -"documentul: %(document)s." +msgstr "Ttipul de metadate \"%(metadata_type)s\" a fost șters cu succes din documentul: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Eroare la eliminarea tipului de metadate \"%(metadata_type)s\" din " -"documentul: %(document)s; %(exception)s" +msgstr "Eroare la eliminarea tipului de metadate \"%(metadata_type)s\" din documentul: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -496,12 +467,7 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "" -"Tipurile de metadate sunt proprietăți definite de utilizator cărora le pot " -"fi atribuite valori. Odată create, ele trebuie să fie asociate tipurilor de " -"documente, fie ele opționale sau necesare, pentru fiecare. Setarea unui tip " -"de metadate conform cerințelor pentru un tip de document va bloca încărcarea " -"documentelor de acest tip până la furnizarea unei valori de metadate." +msgstr "Tipurile de metadate sunt proprietăți definite de utilizator cărora le pot fi atribuite valori. Odată create, ele trebuie să fie asociate tipurilor de documente, fie ele opționale sau necesare, pentru fiecare. Setarea unui tip de metadate conform cerințelor pentru un tip de document va bloca încărcarea documentelor de acest tip până la furnizarea unei valori de metadate." #: views.py:655 msgid "There are no metadata types" @@ -519,8 +485,7 @@ msgstr "Relațiile au fost actualizate cu succes" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "" -"Creați tipuri de metadate pentru a le putea asocia cu acest tip de document." +msgstr "Creați tipuri de metadate pentru a le putea asocia cu acest tip de document." #: views.py:700 msgid "There are no metadata types available" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index 7c4858968f..f00e41bb3c 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -184,8 +181,8 @@ msgstr "Умолчание" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -204,10 +201,9 @@ msgstr "Валидатор" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Введённое значение будет переформатировано парсером так, чтобы удовлетворять " -"требованиям формата." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Введённое значение будет переформатировано парсером так, чтобы удовлетворять требованиям формата." #: models.py:86 search.py:31 msgid "Parser" @@ -341,16 +337,14 @@ msgstr "" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Ошибка добавления метаданных типа %(metadata_type)s к документу: " -"%(document)s; %(exception)s" +msgstr "Ошибка добавления метаданных типа %(metadata_type)s к документу: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." #: views.py:204 #, python-format @@ -394,8 +388,7 @@ msgstr "Редактировать метаданные документа:%s." #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Ошибка при редактировании метаданных документа: %(document)s; %(exception)s." +msgstr "Ошибка при редактировании метаданных документа: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -404,8 +397,9 @@ msgstr "Метаданные для документов %s изменены." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -445,18 +439,14 @@ msgstr "" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Успешно удалён тип метаданных \"%(metadata_type)s\" из документа " -"%(document)s." +msgstr "Успешно удалён тип метаданных \"%(metadata_type)s\" из документа %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Ошибка удаления метаданных типа \"%(metadata_type)s\" от документа: " -"%(document)s; %(exception)s" +msgstr "Ошибка удаления метаданных типа \"%(metadata_type)s\" от документа: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po index c7b1ff2afc..638e7949f5 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 @@ -182,8 +180,8 @@ msgstr "" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -202,7 +200,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -342,7 +341,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -396,8 +396,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po index effcbb471b..66aafacb51 100644 --- a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -183,8 +182,8 @@ msgstr "Varsayılan" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -195,9 +194,7 @@ msgstr "Yukarı Bak" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Girilen değer beklenen biçime uymuyorsa, doğrulayıcı veri girişi " -"reddedecektir." +msgstr "Girilen değer beklenen biçime uymuyorsa, doğrulayıcı veri girişi reddedecektir." #: models.py:80 search.py:28 msgid "Validator" @@ -205,10 +202,9 @@ msgstr "Doğrulayıcı" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Ayrıştırıcı, girilen değeri beklenen biçimde uyacak şekilde yeniden " -"biçimlendirir." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Ayrıştırıcı, girilen değeri beklenen biçimde uyacak şekilde yeniden biçimlendirir." #: models.py:86 search.py:31 msgid "Parser" @@ -340,16 +336,14 @@ msgstr "Belgeye meta veri türleri ekleyin: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Belgeye \"%(metadata_type)s\" meta veri türü eklenirken hata oluştu: " -"%(document)s; %(exception)s" +msgstr "Belgeye \"%(metadata_type)s\" meta veri türü eklenirken hata oluştu: %(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Meta veri türü: %(metadata_type)s belgeye başarıyla eklendi %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Meta veri türü: %(metadata_type)s belgeye başarıyla eklendi %(document)s." #: views.py:204 #, python-format @@ -391,8 +385,7 @@ msgstr "Dokümanın meta verilerini düzenleme: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Dokümanın meta verilerini düzenleme hatası: %(document)s; %(exception)s." +msgstr "Dokümanın meta verilerini düzenleme hatası: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -401,8 +394,9 @@ msgstr "%s dokümanı için meta veri başarıyla düzenlendi." #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 @@ -440,18 +434,14 @@ msgstr "Metadaki veri türlerini belgeden kaldırın: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"\"%(metadata_type)s\" meta veri türünü belgeden başarıyla kaldırın: " -"%(document)s." +msgstr "\"%(metadata_type)s\" meta veri türünü belgeden başarıyla kaldırın: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"\"%(metadata_type)s\" meta veri türünü belgeden kaldırma hatası: " -"%(document)s; %(exception)s" +msgstr "\"%(metadata_type)s\" meta veri türünü belgeden kaldırma hatası: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po index 368c9d0fc0..452eb13fb1 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -182,8 +181,8 @@ msgstr "Mặc định" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" #: models.py:73 search.py:25 @@ -202,7 +201,8 @@ msgstr "" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:86 search.py:31 @@ -339,7 +339,8 @@ msgstr "" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:204 @@ -390,8 +391,9 @@ msgstr "" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." msgstr "" #: views.py:430 diff --git a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po index 11ec0d5885..8fefe97a49 100644 --- a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 @@ -173,9 +172,7 @@ msgstr "其他应用程序用于引用此元数据类型的名称。不要使用 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" -"输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/" -"en/1.11/ref/templates/builtins/)" +msgstr "输入要渲染的模板。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -184,11 +181,9 @@ msgstr "默认" #: models.py:68 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.11/" -"ref/templates/builtins/)." -msgstr "" -"输入要渲染的模板。必须是以逗号分隔的字符串。使用Django的默认模板语言(https://" -"docs.djangoproject.com/en/1.11/ref/templates/builtins/)。" +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." +msgstr "输入要渲染的模板。必须是以逗号分隔的字符串。使用Django的默认模板语言(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)。" #: models.py:73 search.py:25 msgid "Lookup" @@ -206,7 +201,8 @@ msgstr "验证器" #: models.py:84 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "解析器将重新格式化输入的值以符合预期的格式。" #: models.py:86 search.py:31 @@ -338,13 +334,13 @@ msgstr "将元数据类型添加到文档:%s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"将元数据类型“%(metadata_type)s”添加到文档时出错:%(document)s; %(exception)s" +msgstr "将元数据类型“%(metadata_type)s”添加到文档时出错:%(document)s; %(exception)s" #: views.py:194 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "元数据类型:%(metadata_type)s已成功添加到文档%(document)s。" #: views.py:204 @@ -395,11 +391,10 @@ msgstr "文档%s的元数据已成功编辑。" #: views.py:425 msgid "" -"Add metadata types this document's type to be able to add them to individual " -"documents. Once added to individual document, you can then edit their values." -msgstr "" -"添加元数据类型至此文档的类型,以便能够将它们添加到单个文档中。一旦添加到单个" -"文档,您就可以编辑它们的值。" +"Add metadata types this document's type to be able to add them to individual" +" documents. Once added to individual document, you can then edit their " +"values." +msgstr "添加元数据类型至此文档的类型,以便能够将它们添加到单个文档中。一旦添加到单个文档,您就可以编辑它们的值。" #: views.py:430 msgid "This document doesn't have any metadata" @@ -442,8 +437,7 @@ msgstr "从文档:%(document)s中成功删除元数据类型“%(metadata_type)s msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"从文档中删除元数据类型“%(metadata_type)s”时出错:%(document)s; %(exception)s" +msgstr "从文档中删除元数据类型“%(metadata_type)s”时出错:%(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" @@ -466,10 +460,7 @@ msgid "" "or required, for each. Setting a metadata type as required for a document " "type will block the upload of documents of that type until a metadata value " "is provided." -msgstr "" -"元数据类型是可以为其分配值的用户定义属性。创建后,它们必须与文档类型相关联," -"可以是每个文档类型的可选项或必需项。设置元数据类型作为文档类型的必需项将阻止" -"上传该类型的文档,直到提供元数据值。" +msgstr "元数据类型是可以为其分配值的用户定义属性。创建后,它们必须与文档类型相关联,可以是每个文档类型的可选项或必需项。设置元数据类型作为文档类型的必需项将阻止上传该类型的文档,直到提供元数据值。" #: views.py:655 msgid "There are no metadata types" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index e91c9758a8..c46672ba0b 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index 84dac05ad7..01e053cdae 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po index aa870e35c1..752e3a6169 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-08-09 10:54+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po index e84b76bf9a..adac8bd3e7 100644 --- a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po index 56c628309e..cad610128a 100644 --- a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po index 8b61b0f6a1..d6399bf45b 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -25,12 +24,8 @@ msgstr "Spiegelung" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden " -"soll." +msgstr "Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden soll." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt " -"zwischengespeichert werden soll." +msgstr "Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt zwischengespeichert werden soll." diff --git a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po index 77607cda8a..ae2b896014 100644 --- a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-01-07 14:00+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -24,12 +23,8 @@ msgstr "" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός " -"εγγράφου." +msgstr "Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός εγγράφου." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός " -"κόμβου ευρετηρίου." +msgstr "Χρόνος σε δευτερόλεπτα που θα κρατηθεί στην μνήμη η διαδρομή εντοπισμού ενός κόμβου ευρετηρίου." diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index ecdb2efac3..b1f6e9a84f 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -25,12 +24,8 @@ msgstr "Reflejado" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " -"búsqueda de acceso a un documento." +msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " -"búsqueda de acceso a un nodo de índice." +msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un nodo de índice." diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index e263faed5d..dd8dcc9cc2 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-03-12 14:24+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index ea4a519f29..325cbebf07 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Thierry Schott , 2016 # Yves Dubois , 2018 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-04-11 12:04+0000\n" "Last-Translator: Yves Dubois \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 @@ -26,10 +25,8 @@ msgstr "Duplication" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Temps en secondes de rétention en cache du chemin d'accès à un document." +msgstr "Temps en secondes de rétention en cache du chemin d'accès à un document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Temps en seconde de rétention en cache du chemin d'accès à un nœud d'index." +msgstr "Temps en seconde de rétention en cache du chemin d'accès à un nœud d'index." diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index bf620ba7c8..01ef4af066 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index ab17598056..d6fde6e3bf 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index 22d6df4f21..bd3348bf89 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 @@ -26,11 +25,8 @@ msgstr "Mirroring " #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Tempo in secondi per mettere in cache il percorso di ricerca del documento." +msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Tempo in secondi per mettere in cache il percorso di ricerca del nodo " -"indice.." +msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del nodo indice.." diff --git a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po index 8ada388143..82d96cf800 100644 --- a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:41+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po index dc6c557f4c..05499296f0 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index 1caaf9109d..3a7d58ad54 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po @@ -1,24 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index a01ab03a1c..387ec5b6c8 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po index 879375db89..a3a2315280 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 @@ -25,12 +24,8 @@ msgstr "Espelhamento" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Tempo em segundos durante o qual se armazenará no cache a rota de busca de " -"acesso a um documento." +msgstr "Tempo em segundos durante o qual se armazenará no cache a rota de busca de acesso a um documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Tempo em segundos durante o qual se armazenará em cache a rota de busca de " -"acesso a um nó de índice." +msgstr "Tempo em segundos durante o qual se armazenará em cache a rota de busca de acesso a um nó de índice." diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po index f364638547..cfe0b5ad12 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-03-15 11:18+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:16 settings.py:7 msgid "Mirroring" @@ -26,11 +24,8 @@ msgstr "Oglindire" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Timp în secunde pentru păstrarea în cache a unei căutări de traseu la un " -"document." +msgstr "Timp în secunde pentru păstrarea în cache a unei căutări de traseu la un document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Timp în secunde pentru păstrarea în cache a unei căutări de index la un nod." +msgstr "Timp în secunde pentru păstrarea în cache a unei căutări de index la un nod." diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index a553728c32..e16eb2a376 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po index 5a57d0749a..622d073131 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:16 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po index d7dc3109a3..e0e6b533a3 100644 --- a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 21:28+0000\n" "Last-Translator: serhatcan77 \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 settings.py:7 @@ -29,5 +28,4 @@ msgstr "Bir belgenin yolunu önbelleklemek için gereken saniye cinsinden süre. #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Bir dizin düğümünün yolunu önbelleklemek için gereken saniye cinsinden süre." +msgstr "Bir dizin düğümünün yolunu önbelleklemek için gereken saniye cinsinden süre." diff --git a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po index 7d3fe82ee1..14270e36c8 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po index 481c81dd8e..2aa319ebc5 100644 --- a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-01-24 02:58+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 settings.py:7 diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index 5f858e6d8e..e70f1aa017 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-16 22:54+0000\n" "Last-Translator: Yaman Sanobar \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index ca5d0c3638..d77e20dbdd 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po index 73c8db5d6a..b223eeda37 100644 --- a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po index 9b588ed306..ab46b4737f 100644 --- a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-17 19:32+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po index 245c24ec06..f81127bceb 100644 --- a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-12 14:13+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po index 7e582fa82e..ae8af90d17 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2016 # Mathias Behrle , 2018 @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-16 15:26+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -118,10 +117,7 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "" -"Nachrichten werden bei der Anmeldung angezeigt. Sie können dies nutzen, um " -"Informationen zu Ihrem Unternehmen, Ankündigungen oder Nutzungsrichtlinien " -"anzuzeigen. " +msgstr "Nachrichten werden bei der Anmeldung angezeigt. Sie können dies nutzen, um Informationen zu Ihrem Unternehmen, Ankündigungen oder Nutzungsrichtlinien anzuzeigen. " #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po index 524d1c49a0..8a5d6a28d2 100644 --- a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index 584470af70..0425d9510c 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016,2018-2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-14 03:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -61,8 +60,7 @@ msgstr "Habilitado" #: models.py:27 msgid "Date and time after which this message will be displayed." -msgstr "" -"Fecha y hora después de la cual este mensaje comenzara a ser desplegado." +msgstr "Fecha y hora después de la cual este mensaje comenzara a ser desplegado." #: models.py:28 msgid "Start date time" @@ -115,10 +113,7 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "" -"Los mensajes se muestran en la vista de inicio de sesión. Puede usar " -"mensajes para recopilar información acerca de su organzación, anuncios o " -"pautas de uso para sus usuarios." +msgstr "Los mensajes se muestran en la vista de inicio de sesión. Puede usar mensajes para recopilar información acerca de su organzación, anuncios o pautas de uso para sus usuarios." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index 38b1256167..74486cd1dd 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index 12f3861f08..aa483437ac 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Frédéric Sheedy , 2019 # Frédéric Sheedy , 2019 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-05 03:48+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -115,10 +114,7 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "" -"Les messages sont affichés dans la page de connexion. Vous pouvez utiliser " -"les messages pour transmettre des informations à propos de votre " -"organisation, des annonces ou des lignes directrices pour vos utilisateurs." +msgstr "Les messages sont affichés dans la page de connexion. Vous pouvez utiliser les messages pour transmettre des informations à propos de votre organisation, des annonces ou des lignes directrices pour vos utilisateurs." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index c22a5eae0e..3ee2e3c582 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index 8fb560c1c6..82cbf56157 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-12 17:43+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index e7cfa23c2c..4c6566d0b7 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po index 479501b358..8fb35e6868 100644 --- a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:38+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" @@ -115,10 +113,7 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "" -"Ziņojumi tiek parādīti pieteikšanās skatā. Jūs varat izmantot ziņojumus, lai " -"pārliecinātu informāciju par jūsu organizāciju, paziņojumiem vai lietošanas " -"vadlīnijām lietotājiem." +msgstr "Ziņojumi tiek parādīti pieteikšanās skatā. Jūs varat izmantot ziņojumus, lai pārliecinātu informāciju par jūsu organizāciju, paziņojumiem vai lietošanas vadlīnijām lietotājiem." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po index b6e4c6a44a..11f0d9a82e 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index dfe8a16258..292ffcb3bc 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2017 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index c68f22282b..836103b7df 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po index c53d297cfe..63b5ff0575 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-12-28 00:06+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po index 07c7280460..1b87e7885d 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-15 11:59+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" @@ -115,10 +113,7 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "" -"Mesajele sunt afișate în vizualizarea de autentificare. Puteți utiliza " -"mesajele pentru a afișa informații despre organizație, anunțuri sau ghiduri " -"de utilizare pentru utilizatorii dvs." +msgstr "Mesajele sunt afișate în vizualizarea de autentificare. Puteți utiliza mesajele pentru a afișa informații despre organizație, anunțuri sau ghiduri de utilizare pentru utilizatorii dvs." #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po index fd4be10abe..11dc850503 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po index 81e4a2b561..dfed5002c3 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po index e87ecc6f91..f78211a96d 100644 --- a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po index aba3cbe90a..87d13968ec 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 links.py:36 permissions.py:7 diff --git a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po index 95983f9772..449ff48072 100644 --- a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-24 07:16+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 links.py:36 permissions.py:7 @@ -114,9 +113,7 @@ msgid "" "Messages are displayed in the login view. You can use messages to convery " "information about your organzation, announcements or usage guidelines for " "your users." -msgstr "" -"消息显示在登录视图中。您可以使用消息向您的用户传达有关您组织,公告或使用指南" -"的信息。" +msgstr "消息显示在登录视图中。您可以使用消息向您的用户传达有关您组织,公告或使用指南的信息。" #: views.py:79 msgid "No messages available" diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index f1e158f3cc..f262555d6f 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -43,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index 5fc861af48..96ba7c0af1 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po index 1e3dfd62ed..e1bc945b17 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -44,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po index 0eff409fe8..45eae0c2f6 100644 --- a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -42,8 +40,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po index d720e77cba..ca2876af50 100644 --- a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +40,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po index 652af4215f..84dd31ec6b 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Bjoern Kowarsch , 2018 @@ -18,12 +18,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -49,11 +48,9 @@ msgstr "Freies OpenSource OCR-Programm" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." -msgstr "" -"PyOCR ist eine Python-Bibliothek, die die Nutzung von OCR Programmen wie " -"Tesseract oder Cuneiform vereinfacht." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." +msgstr "PyOCR ist eine Python-Bibliothek, die die Nutzung von OCR Programmen wie Tesseract oder Cuneiform vereinfacht." #: events.py:10 msgid "Document version submitted for OCR" @@ -162,15 +159,11 @@ msgstr "OCR-Schrifterkennung für Dokumentenversion" #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "" -"Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet " -"werden soll." +msgstr "Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet werden soll." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch " -"durchgeführt werden soll." +msgstr "Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch durchgeführt werden soll." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po index 6ebdc21ff5..06972b6777 100644 --- a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +40,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 @@ -88,8 +87,7 @@ msgstr "Τύπος εγγράφου" #: models.py:24 msgid "Automatically queue newly created documents for OCR." -msgstr "" -"Αυτόματη προσθήκη προσφάτως δημιουργημένων εγγράφων προς οπτική αναγνώριση." +msgstr "Αυτόματη προσθήκη προσφάτως δημιουργημένων εγγράφων προς οπτική αναγνώριση." #: models.py:30 msgid "Document type settings" @@ -153,14 +151,11 @@ msgstr "Οπτική αναγνώριση έκδοσης εγγράφου" #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "" -"Πλήρης διαδρομή του προγράμματος που θα χρησιμοποιηθεί για οπτική αναγνώριση." +msgstr "Πλήρης διαδρομή του προγράμματος που θα χρησιμοποιηθεί για οπτική αναγνώριση." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Ορισμός νέων τύπων εγγράφου στους οποίους θα πραγματοποιείται αυτόματα " -"οπτική αναγνώριση." +msgstr "Ορισμός νέων τύπων εγγράφου στους οποίους θα πραγματοποιείται αυτόματα οπτική αναγνώριση." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index 9ed12ff795..34c92e2f19 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 06:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -44,11 +43,9 @@ msgstr "Motor gratuito de código abierto OCR" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." -msgstr "" -"PyOCR es una librería de Python que simplifica el uso de herramientas OCR " -"como Tesseract o Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." +msgstr "PyOCR es una librería de Python que simplifica el uso de herramientas OCR como Tesseract o Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 15eb6a2f0a..6b745d8f5c 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 @@ -157,8 +156,7 @@ msgstr "محل اجرای نرم افزار OCR" #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"انواع سند جدید را برای انجام OCR به طور پیش فرض به صورت خودکار تنظیم کنید." +msgstr "انواع سند جدید را برای انجام OCR به طور پیش فرض به صورت خودکار تنظیم کنید." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 98cb8282af..541719ec87 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2015,2017-2018 @@ -17,12 +17,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 13:20+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -48,11 +47,9 @@ msgstr "Moteur OCR libre et gratuit" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." -msgstr "" -"PyOCR est une bibliothèque Python simplifiant l'utilisation d'outils de " -"reconnaissance optique de caractères tels que Tesseract ou Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." +msgstr "PyOCR est une bibliothèque Python simplifiant l'utilisation d'outils de reconnaissance optique de caractères tels que Tesseract ou Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" @@ -97,8 +94,7 @@ msgstr "Type de document" #: models.py:24 msgid "Automatically queue newly created documents for OCR." -msgstr "" -"Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." +msgstr "Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." #: models.py:30 msgid "Document type settings" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index 96625aa86c..f6946578cc 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index be6f2aef7c..f0a0f38911 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -41,8 +40,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index a3c5c25f60..258262fd85 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -43,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 @@ -158,9 +157,7 @@ msgstr "Percorso completo al backend utilizzato per eseguire l'OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per " -"default." +msgstr "Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per default." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po index af56f426f0..261b87cb0e 100644 --- a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:42+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -43,11 +41,9 @@ msgstr "Bezmaksas atvērtā koda OCR dzinējs" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." -msgstr "" -"PyOCR ir Python bibliotēka, kas vienkāršo OCR rīku, piemēram, Tesseract vai " -"Cuneiform, izmantošanu." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." +msgstr "PyOCR ir Python bibliotēka, kas vienkāršo OCR rīku, piemēram, Tesseract vai Cuneiform, izmantošanu." #: events.py:10 msgid "Document version submitted for OCR" @@ -160,9 +156,7 @@ msgstr "Pilns ceļš uz backend, kas jāizmanto OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Iestatiet jaunus dokumentu tipus, lai pēc noklusējuma automātiski izpildītu " -"OCR." +msgstr "Iestatiet jaunus dokumentu tipus, lai pēc noklusējuma automātiski izpildītu OCR." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po index b482811365..bf91a3fb11 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Johan Braeken, 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -44,8 +43,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index 7f413379f6..fe34e9e896 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2016 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -45,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index d03bcaf2d8..a62e7a708b 100644 --- a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Renata Oliveira , 2011 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -44,8 +43,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po index 804409f377..42fc7c7ea9 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Renata Oliveira , 2011 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -44,8 +43,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po index ccd3d2821c..a6cb46734d 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -44,11 +42,9 @@ msgstr "Motor OCR Open Source" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." -msgstr "" -"PyOCR este o bibliotecă Python care simplifică utilizarea instrumentelor OCR " -"cum ar fi Tesseract sau Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." +msgstr "PyOCR este o bibliotecă Python care simplifică utilizarea instrumentelor OCR cum ar fi Tesseract sau Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" @@ -157,14 +153,11 @@ msgstr "OCR pe versiunea documentului " #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "" -"Calea completă spre backend-ul care trebuie utilizat pentru a face OCR." +msgstr "Calea completă spre backend-ul care trebuie utilizat pentru a face OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Setați tipuri noi de documente pentru a efectua automat funcția OCR în mod " -"implicit." +msgstr "Setați tipuri noi de documente pentru a efectua automat funcția OCR în mod implicit." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index 33e6317868..1bbc8597f2 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mizhgan , 2018 # lilo.panic, 2016 @@ -12,15 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -45,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 @@ -160,9 +157,7 @@ msgstr "Полный путь до бекенда, выполняющего OCR. #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Задать новые типы документов для которых распознавание будет запускаться по " -"умолчанию. " +msgstr "Задать новые типы документов для которых распознавание будет запускаться по умолчанию. " #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po index bb83217135..5304df831e 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 @@ -42,8 +40,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po index 166dafa0f0..4e565e02ff 100644 --- a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -43,8 +42,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 @@ -158,9 +157,7 @@ msgstr "OCR yapmak için kullanılacak arka uç için tam yol." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Varsayılan olarak otomatik olarak OCR gerçekleştirmek için yeni belge " -"türlerini ayarlayın." +msgstr "Varsayılan olarak otomatik olarak OCR gerçekleştirmek için yeni belge türlerini ayarlayın." #: views.py:43 #, python-format diff --git a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po index 1caf3ebd16..ae13cb7b31 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po index 0e3a9cfa1a..c0d735de42 100644 --- a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:50 apps.py:117 apps.py:121 events.py:7 links.py:15 links.py:21 @@ -42,8 +41,8 @@ msgstr "" #: dependencies.py:36 msgid "" -"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or " -"Cuneiform." +"PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" +" Cuneiform." msgstr "" #: events.py:10 diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo index 96c0ae30084d43aa3d1b459d1018daa331118ff0..73662587885b9b735f1bd6cdfa56c8955f9a1f9c 100644 GIT binary patch delta 23 ecmdnMv4La5Pev{?T_Z~c12Zclqs`1rx=a99Ed~An delta 23 ecmdnMv4La5Pev{iT_bY^BO@zQlg-Rbx=a992nGEB diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index c76b499be6..b4c4083869 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" @@ -29,10 +27,8 @@ msgid "Insufficient permissions." msgstr "صلاحيات غير كافية." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "تحرير الأدوار" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo index 53b7fdb71608a1f73a19e745ba72cff86b62d0ca..65487be5e05a2ade4783ca7f21e04635ec12d8d9 100644 GIT binary patch delta 23 ecmeC@=;zq*oRP~+*T_=Az|6|XX!A!#IVJ#8)CPzE delta 23 ecmeC@=;zq*oRP~!*T`JK$jHjnWb;QxIVJ#8uLg$z diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index c06458ff17..c88a67e90b 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -28,10 +27,8 @@ msgid "Insufficient permissions." msgstr "Недостатъчни разрешения." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Редактиране на роли" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo index c7ee9d520724765b5721bd6c180122307649868e..ef511038ae8e3e2cdb9480e5d5eb0ab3056e2816 100644 GIT binary patch delta 23 ecmX>qcvNr$KP#7+u92mJfti(&(Pl~3HOv4_a|P`H delta 23 ecmX>qcvNr$KP#7su93Ndk&%_D$!1B`HOv4_P6g}$ diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po index 306e1c308d..0b1220b65d 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" @@ -30,10 +28,8 @@ msgid "Insufficient permissions." msgstr "Nedovoljne dozvole." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Izmjeni role" +msgstr "" #: events.py:12 msgid "Role created" @@ -111,15 +107,11 @@ msgstr "Ime grupe" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Lista odvojenih odvojenih grupa primarnih ključeva grupa za dodavanje ili " -"zamjenu u ovoj ulozi." +msgstr "Lista odvojenih odvojenih grupa primarnih ključeva grupa za dodavanje ili zamjenu u ovoj ulozi." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Lista odvojenih odvojenih primarnih ključeva za odvajanje odvojenih dijelova " -"za dodelu ove uloge." +msgstr "Lista odvojenih odvojenih primarnih ključeva za odvajanje odvojenih dijelova za dodelu ove uloge." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.mo index 9070e76cd3afa2c04ebebe9635a52d785ac357e7..3ffb66c43f08159ce87719a64307a6de88b1fb2a 100644 GIT binary patch delta 82 zcmbQp`k!Tji|Qsu28QJf3=Et=9L2=IzyYLFfHW77&IQtJK)PaLW)GK{u92mJfti(& d(Zv7a{6YCisYNCE3PJhBiA99vI^Q diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po index 04d6723b32..400cfc00bb 100644 --- a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-05-17 14:41+0000\n" -"Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" diff --git a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.mo index ef3e855ee4c3a138c965863ac3acfc6b079737fd..aa4ff56117fca92696a89a85c98bdf830ae82392 100644 GIT binary patch delta 23 ecmbQsI+t~WDKSlsZ3ipeG$C4QogORNvcvKP8Q`=WHz wnpkuEMlIN__>E=|Z22_zD2$WZsR`ThU6@3sSvig_uS^nQ9GX@%ddNxVi%b&C^tk90jUOyLVI;2VzN2WIipR7aexZ#L#IO*Dr#CW#viX)Gft z+QWIQpoI+_#|w0@hllup27dj=e=xbIMNx8a4wJgPwImHQ@!7EXiCvs!eN0wzp)*Wg z)Ek6Di$-a!u)6Mgo?rCxD>QRIh}(rq6r9A(pnV$o?m^J5he7O?YW1jDbGKT5>*`Kx PGhVKSSKEW<%)9XmaU3&F diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po index d5a4597f80..a2daf567fe 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-05-17 22:32+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -32,10 +31,8 @@ msgid "Insufficient permissions." msgstr "Unzureichende Berechtigungen." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Rollen bearbeiten" +msgstr "" #: events.py:12 msgid "Role created" @@ -113,15 +110,11 @@ msgstr "Gruppenname" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Kommagetrennte Liste von Primärschlüsseln der Gruppen, die zu dieser Rolle " -"hinzugefügt oder ersetzt werden sollen." +msgstr "Kommagetrennte Liste von Primärschlüsseln der Gruppen, die zu dieser Rolle hinzugefügt oder ersetzt werden sollen." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Durch Komma getrennte Liste von Berechtigungs-Primärschlüsseln die dieser " -"Rolle zugewiesen werden sollen." +msgstr "Durch Komma getrennte Liste von Berechtigungs-Primärschlüsseln die dieser Rolle zugewiesen werden sollen." #: serializers.py:90 #, python-format @@ -158,10 +151,7 @@ msgstr "Gruppen für Rolle %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "" -"Fügen Sie Gruppen hinzu um Rollenberechtigungen zu erlangen. Die " -"Berechtigungen werden ererbt von den Berechtigungen und " -"Zugriffsberechtigungen der Rolle." +msgstr "Fügen Sie Gruppen hinzu um Rollenberechtigungen zu erlangen. Die Berechtigungen werden ererbt von den Berechtigungen und Zugriffsberechtigungen der Rolle." #: views.py:104 msgid "Available permissions" @@ -174,9 +164,7 @@ msgstr "Erteilte Berechtigungen" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "" -"Hier erteilte Berechtigungen gelten für das gesamte System und sämtliche " -"Objekte." +msgstr "Hier erteilte Berechtigungen gelten für das gesamte System und sämtliche Objekte." #: views.py:140 #, python-format @@ -189,12 +177,7 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "" -"Rolle sind Autorisierungseinheiten. Sie sind Benutzergruppen zugeordnet, die " -"die Rollenberechtigungen für das gesamte System erben. Rollen können auch " -"Bestandteil von Zugriffsberechtigungslisten sein. " -"Zugriffsberechtigungslisten beinhalten Berechtigungen für spezifische " -"Objekte." +msgstr "Rolle sind Autorisierungseinheiten. Sie sind Benutzergruppen zugeordnet, die die Rollenberechtigungen für das gesamte System erben. Rollen können auch Bestandteil von Zugriffsberechtigungslisten sein. Zugriffsberechtigungslisten beinhalten Berechtigungen für spezifische Objekte." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.mo index 86598f71d59e858d390dd0b8a08343df0a1bb54d..e62b3d3e1e26c72ff588b4d01b0e06881a19be30 100644 GIT binary patch delta 23 ecmZ1}yi#~W8w;12u92mJfti(&(dG#(lB@tx`34jK delta 23 ecmZ1}yi#~W8w;0-u93Ndk&%_D$>s?xlB@tx)CLm( diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po index b836f68344..aacdeddb42 100644 --- a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -27,10 +26,8 @@ msgid "Insufficient permissions." msgstr "Ανεπαρκή δικαιώματα." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Τροποποίηση ρόλων" +msgstr "" #: events.py:12 msgid "Role created" @@ -108,15 +105,11 @@ msgstr "Όνομα ομάδας" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών ομάδων όπου θα προστεθούν ή " -"θα τροποποιηθούν σε αυτό τον ρόλο." +msgstr "Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών ομάδων όπου θα προστεθούν ή θα τροποποιηθούν σε αυτό τον ρόλο." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών δικαιωμάτων που θα " -"εκχωρηθούν σε αυτό τον ρόλο." +msgstr "Λίστα (χωρισμένη με κόμμα) πρωτευόντων κλειδιών δικαιωμάτων που θα εκχωρηθούν σε αυτό τον ρόλο." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo index 05107ecb2b5c72485e5a18470cb2130165a3d966..b285bb7f80f9a4e964f756267e7ffb0ba3425ebf 100644 GIT binary patch delta 23 ecmbOtHAQMeBRiLwu92mJfti(&(dKUUPF4U=F$QD+ delta 23 ecmbOtHAQMeBRiLguCalFp_!Gj<>qeoPF4U, 2014 # Lory977 , 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-30 16:39+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -30,10 +29,8 @@ msgid "Insufficient permissions." msgstr "Permisos insuficientes." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Modificar los roles" +msgstr "" #: events.py:12 msgid "Role created" @@ -111,15 +108,11 @@ msgstr "Nombre del grupo" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Lista separada por comas de llaves primarias de grupos para agregar o " -"reemplazar en este rol." +msgstr "Lista separada por comas de llaves primarias de grupos para agregar o reemplazar en este rol." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Separación por comas de las llaves primarias de permiso para otorgar a este " -"rol." +msgstr "Separación por comas de las llaves primarias de permiso para otorgar a este rol." #: serializers.py:90 #, python-format @@ -156,9 +149,7 @@ msgstr "Grupos del rol: %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "" -"Agregue grupos para ser parte de un rol. Ellos heredarán los permisos de la " -"función y los controles de acceso." +msgstr "Agregue grupos para ser parte de un rol. Ellos heredarán los permisos de la función y los controles de acceso." #: views.py:104 msgid "Available permissions" @@ -171,9 +162,7 @@ msgstr "Permisos otorgados" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "" -"Los permisos otorgados aquí se aplicarán a todo el sistema y a todos los " -"objetos." +msgstr "Los permisos otorgados aquí se aplicarán a todo el sistema y a todos los objetos." #: views.py:140 #, python-format @@ -186,12 +175,7 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "" -"Los roles son unidades de autorización. Contienen grupos de usuarios que " -"heredan los permisos de roles para todo el sistema. Los roles también pueden " -"formar parte de las listas de control de acceso. La lista de controles de " -"acceso son permisos otorgados por función para objetos específicos que " -"heredan los miembros de su grupo." +msgstr "Los roles son unidades de autorización. Contienen grupos de usuarios que heredan los permisos de roles para todo el sistema. Los roles también pueden formar parte de las listas de control de acceso. La lista de controles de acceso son permisos otorgados por función para objetos específicos que heredan los miembros de su grupo." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo index 88dca91937ae83f989fa6b41175df52ad6f02ca8..d5fb6d6a818800b29b5b48eae69701ae7863c1f0 100644 GIT binary patch delta 23 ecmX>mcua7^0v0YaT_Z~c12Zclqs^;WWLN-L;s$^K delta 23 ecmX>mcua7^0v0Y4T_bY^BO@zQlg+DGWLN-Ly#{{( diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index 89ee6b565a..33ec468602 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -29,10 +28,8 @@ msgid "Insufficient permissions." msgstr "اجازه ناکافی" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "ویرایش نقش ها" +msgstr "" #: events.py:12 msgid "Role created" @@ -110,14 +107,11 @@ msgstr "اسم گروه" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"لیست کاملی از کلیدهای گروه اولیه برای اضافه کردن یا جایگزینی در این نقش جدا " -"شده است." +msgstr "لیست کاملی از کلیدهای گروه اولیه برای اضافه کردن یا جایگزینی در این نقش جدا شده است." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"لیست کلی از کلیدهای مجاز مجوز برای اعطای این نقش به یکدیگر جدا شده است." +msgstr "لیست کلی از کلیدهای مجاز مجوز برای اعطای این نقش به یکدیگر جدا شده است." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo index e6de6d9ccaf6d0b1403f461718208e27bd20b5f4..c586cb54d11c243ea0348aa81492aba0a872b00b 100644 GIT binary patch delta 362 zcmXBQze>YU6vy#jD{VEkrB>}9vZOdTNH9bwSO*crMR5>Eho&GB6az_clMcQ^H#Z+Z z2rfcbDGu%;_yB^Fi_i{!FJ3P91LvN5&f)&ppZ4Q^ZaBzETP5j6(r8{<#>#@!#tznT z2QTp$&+r+W*tDc2+(bg!!xcP4N~w>gUWhHc#R`tFh7Xp8qPLz1*f>V>;2qie=9t4@ zG>vAshSjpPh&~o^7acsnK3-q}Cus8Cu!E}r{(qk0(G+P_=z^Ia&ga?CLu#J z&}$avTLrJ{`rD4z?fL$O$Fh!sBy~^Y;5xYq(kSjZC(+L~ zshpZ!q9tgrhV}^h1L}L}a^VB#oO{mUzMDVhT`|Z}&aRR?l5B|kjOvbbS4YE|-@Dn+lA@RVPy5I@* zLLUP!oQ`a-TK2kH&KFkfMVn*nIYG-R`ObMzcUn!qpmzLWuQKfUo~sVds@2M++6c5K STc-`jtLNNiV{>pHv!Z|U$u?mC diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index cba69b9440..f0f80f6503 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2014 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-05-09 13:40+0000\n" -"Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -33,10 +32,8 @@ msgid "Insufficient permissions." msgstr "Droits insuffisants" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Modifier les rôles" +msgstr "" #: events.py:12 msgid "Role created" @@ -114,15 +111,11 @@ msgstr "Nom du groupe" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"La liste séparée par une virgule des groupes de clés primaires à ajouter ou " -"à remplacer dans ce rôle." +msgstr "La liste séparée par une virgule des groupes de clés primaires à ajouter ou à remplacer dans ce rôle." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Liste séparée par des virgules des clés primaires d'autorisation pour " -"autoriser ce rôle." +msgstr "Liste séparée par des virgules des clés primaires d'autorisation pour autoriser ce rôle." #: serializers.py:90 #, python-format @@ -159,9 +152,7 @@ msgstr "Groupes ayant le rôle : %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "" -"Ajoutez des groupes à faire partie d'un rôle. Ils hériteront des " -"autorisations et des contrôles d'accès du rôle." +msgstr "Ajoutez des groupes à faire partie d'un rôle. Ils hériteront des autorisations et des contrôles d'accès du rôle." #: views.py:104 msgid "Available permissions" @@ -174,9 +165,7 @@ msgstr "Autorisations accordées" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "" -"Les autorisations accordées ici s'appliqueront à l'ensemble du système et à " -"tous les objets." +msgstr "Les autorisations accordées ici s'appliqueront à l'ensemble du système et à tous les objets." #: views.py:140 #, python-format @@ -189,13 +178,7 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "" -"Les rôles sont des unités d'autorisation. Ils contiennent des groupes " -"d'utilisateurs qui héritent des autorisations de rôle pour l'ensemble du " -"système. Les rôles peuvent également faire partie des listes de contrôles " -"d'accès. Une liste des contrôles d'accès correspond aux autorisations " -"accordées à un rôle pour des objets spécifiques dont les membres du groupe " -"héritent." +msgstr "Les rôles sont des unités d'autorisation. Ils contiennent des groupes d'utilisateurs qui héritent des autorisations de rôle pour l'ensemble du système. Les rôles peuvent également faire partie des listes de contrôles d'accès. Une liste des contrôles d'accès correspond aux autorisations accordées à un rôle pour des objets spécifiques dont les membres du groupe héritent." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo index 51bef5e13db413e20755eec75f1d553d949f1a4a..dbb71e20c219096d303b4c532feebd0e45d4d1a8 100644 GIT binary patch delta 23 ecmeAW>=4|rfQ8FU*T_=Az|6|XX!9zTd&~e&y#~bq delta 23 ecmeAW>=4|rfQ8FM*T`JK$jHjnWb-PPd&~e&m, 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -28,10 +27,8 @@ msgid "Insufficient permissions." msgstr "Elégtelen jogosúltság" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Szerepkörök szerkesztése" +msgstr "" #: events.py:12 msgid "Role created" @@ -109,15 +106,11 @@ msgstr "Csoportnév" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Ebben a szerepkörben hozzáadandó vagy kicserélendő csoportok elsődleges " -"kulcsainak vesszővel elválasztott listája." +msgstr "Ebben a szerepkörben hozzáadandó vagy kicserélendő csoportok elsődleges kulcsainak vesszővel elválasztott listája." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Ehhez a szerepkörhöz adandó jogosúltásg elsődleges kulcsának vesszővel " -"elválasztott listája." +msgstr "Ehhez a szerepkörhöz adandó jogosúltásg elsődleges kulcsának vesszővel elválasztott listája." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo index 77fcf1b7320b7d15339280f9b6261990c3e0e153..1d735b0178331ad3073f2cffac744a5e2bc03573 100644 GIT binary patch delta 91 zcmey&{DXOdjcfuV14AA7+GOprfX!WU|?otWTb5X1YACe k#U;8SMTvREIf*6tMOF$y`AMloCHX+QII$=*f8w9-0KPmKumAu6 delta 87 zcmeyt{F!-zjcha{14A@DP{msI|c~= delta 23 ecmZ3x3*DP{ms76u3a diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 49605fe64d..b5e07fc097 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2017 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -30,10 +29,8 @@ msgid "Insufficient permissions." msgstr "Permessi insufficienti" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Modifica i ruoli" +msgstr "" #: events.py:12 msgid "Role created" @@ -111,9 +108,7 @@ msgstr "" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Lista separata da virgole di ID gruppi da aggiungere o sostituire in questo " -"ruolo" +msgstr "Lista separata da virgole di ID gruppi da aggiungere o sostituire in questo ruolo" #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo index f297a6a3dfd249b7e51361d85629e5dead6fd631..df51ca8a79130bef5445c856052a7ed3c5bdd787 100644 GIT binary patch delta 363 zcmXZYze~eF7{>9Z(pa0;s#K^|l+sC%K!{RkH;bD^@W9DLw?-@ALbr`2hBxR>hoQqp!tI+OG^CoSPxR$4{}7qN*K zc#Mbmibb?-sel_eiw@>-2N}^WF5o_v@D$B`5t_L>Tiw5d56R#&uFx1DS@e$Pq7O6& zCRoPLr2muj)4BgZ1w5c%#Wdca33!Vp$UU<4nAH2ZP06A#q_ECUyr4-q;WhK{7tZ5% yesnccvfP^E)hlkT;dxsw%WnBm?3{%Db=2|WAZ%2Qg7eET4lwe=b}$-eTGlT_lPx6x delta 389 zcmXZY%}WA77{~F)XfxOB1q(AM_Rv8HB~u|pqJtoW34ynQ7)oNpRoLCSisuNrc`G`1 z=*45V@Z>3iPF*|u4@A^=YL|fz^E}VY{MhegZ|R{N>fDAza$%7}5qX~!nZrUvWF9Lx ziwAg&4({O_#&OjYnZ`|=zzR-b4H=ProWTYr@C@~Rm#F8iP3im{ybA`OaFNCfl0`mH zU-XIkzzCE074#RP|NRxzfl^q*5{}~q>VQ|MgWMoX?t}VsG$mqC7*bf~PrRZ|IN~+^ z@DIi?66>FiC5)XyI+wMw8^wHnZJp1oD$h^XUDfiM%5S?xYj@CfZO^JV?DIjl, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-05-31 12:44+0000\n" -"Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" @@ -29,10 +27,8 @@ msgid "Insufficient permissions." msgstr "Nepietiekamas atļaujas." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Rediģēt lomas" +msgstr "" #: events.py:12 msgid "Role created" @@ -110,14 +106,11 @@ msgstr "Grupas nosaukums" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Komatu atdalīts grupu saraksts, kas ir primārās atslēgas, lai pievienotu vai " -"aizstātu šo lomu." +msgstr "Komatu atdalīts grupu saraksts, kas ir primārās atslēgas, lai pievienotu vai aizstātu šo lomu." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Komatu atdalītu atļauju primāro atslēgu saraksts, lai piešķirtu šai lomai." +msgstr "Komatu atdalītu atļauju primāro atslēgu saraksts, lai piešķirtu šai lomai." #: serializers.py:90 #, python-format @@ -154,9 +147,7 @@ msgstr "Lomu grupas: %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "" -"Pievienojiet grupas, lai kļūtu par lomu. Viņi mantos lomu atļaujas un " -"piekļuves kontroles." +msgstr "Pievienojiet grupas, lai kļūtu par lomu. Viņi mantos lomu atļaujas un piekļuves kontroles." #: views.py:104 msgid "Available permissions" @@ -169,8 +160,7 @@ msgstr "Piešķirtās atļaujas" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "" -"Šeit piešķirtās atļaujas attieksies uz visu sistēmu un visiem objektiem." +msgstr "Šeit piešķirtās atļaujas attieksies uz visu sistēmu un visiem objektiem." #: views.py:140 #, python-format @@ -183,11 +173,7 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "" -"Lomas ir autorizācijas vienības. Tajās ir lietotāju grupas, kas pārņem visas " -"sistēmas lomu atļaujas. Lomas var iekļaut arī piekļuves kontroles sarakstos. " -"Piekļuves kontroles saraksts ir atļaujas, kas piešķirtas konkrētu objektu " -"lomai, ko tās grupas locekļi pārmanto." +msgstr "Lomas ir autorizācijas vienības. Tajās ir lietotāju grupas, kas pārņem visas sistēmas lomu atļaujas. Lomas var iekļaut arī piekļuves kontroles sarakstos. Piekļuves kontroles saraksts ir atļaujas, kas piešķirtas konkrētu objektu lomai, ko tās grupas locekļi pārmanto." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo index 361b1208e58740eb75cb8ec9d0f8aad7cf0e71c9..56d4af8fbbcdae86c460cd922269efb4c9b968cf 100644 GIT binary patch delta 23 fcmX@ld!Bd0Ic6?1T_Z~c12Zclqs=#%zcT>sT_bY^BO@zQlg&4nzcT>, 2016 # Lucas Weel , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -29,10 +28,8 @@ msgid "Insufficient permissions." msgstr "Permissies zijn ontoereikend" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "gebruikersrollen aanpassen" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo index 071c83d0fde195f271b7b46434e4c56a7adf5c9d..05ff5cc623348e4c4d3ec09cf44586de86f80c7c 100644 GIT binary patch delta 23 fcmeys`+;}EOJ*)JT_Z~c12Zclqs^b0|1tppXJiOF delta 23 fcmeys`+;}EOJ*(;T_bY^BO@zQlg*!*|1tppXFmu! diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index 70701e32a9..137764f7a0 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012,2015 # Wojciech Warczakowski , 2018 @@ -10,17 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" @@ -31,10 +28,8 @@ msgid "Insufficient permissions." msgstr "Niewystarczające uprawnienia." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Edytuj role" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index d193117e00f8c61f41eb3203d95dab558637d55b..3d03a32073fc2b3f91aab70d392966ea41186529 100644 GIT binary patch delta 23 ecmaFN{+NA(5)+r1u92mJfti(&(PkZ{?Ti3YaRxpB delta 23 ecmaFN{+NA(5)+q+u93Ndk&%_D$z~m, 2011 # Roberto Rosario, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -30,10 +29,8 @@ msgid "Insufficient permissions." msgstr "Permissões insuficientes." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Editar funções" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo index 682de790a86753dac6459573a6294f6bc8713348..ac8de142a394379512ca83e847c83a8f6fa71b2b 100644 GIT binary patch delta 23 ecmcc1f0utlD+`yIu92mJfti(&(dK>@KV|@0lLn;# delta 23 ecmcc1f0utlD+`y2u93Ndk&%_D$>x3*KV|@0ZU&?P diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po index 6bd217a6ea..53e5abaaa8 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -32,10 +31,8 @@ msgid "Insufficient permissions." msgstr "Permissões insuficientes." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Editar funções" +msgstr "" #: events.py:12 msgid "Role created" @@ -113,15 +110,11 @@ msgstr "" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Lista separada por vírgulas de chaves primárias de grupo para adicionar ou " -"substituir nesta função." +msgstr "Lista separada por vírgulas de chaves primárias de grupo para adicionar ou substituir nesta função." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Lista separada por vírgulas de chaves primárias de permissão para conceder a " -"esta função." +msgstr "Lista separada por vírgulas de chaves primárias de permissão para conceder a esta função." #: serializers.py:90 #, python-format diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo index 335a51b4a3839c2cb87348597af12910b3e567ea..6812afaadf95157c70a4a0655a85bd3ee74c2db6 100644 GIT binary patch delta 362 zcmXZYy-EW?6o%n18WUY({KK%Y2x-JZ7nT(Qrq#m2$_OF>VFil~l9k!*gJ4R%gf#Xd z23tWdL2LxQ0}C5_-_e=onRDjMnV+ZNIk?{~4Mrttt14YcdYzV*ac4$q;1MoiAA5L- zUHo$SJx{6=caawA;UXHOL{~VEH)#8gT>OBx?#0vKZ{r&YpTvjr2W^A;tW-uHZKG9O z!w@M^$9aMQaf%%r;v~MKeZVK$3w)zJxLlJ~uu)r=Doi#>9NV983)gf1g}2BaJ&w}} ve=2H)@pdz6wc~grVtD&WUWA7x>F4K3k(qY$AUi!XMTU7|(rkQJU8wv5l>sey delta 359 zcmXZYyGjE=6vpvyy(GGc8VyQtn{7l?78YeeQdtvXlNv~s488^nIIjrLhp5qyI zuz_E$U-P9&>OCYv$2g5GWJFgug|}#Pd#=7iJNN9X`?v6oMuoZ!TNnx@@KtKpVOP4h6UrP;yB;2~ei{Q|HfD~tdD diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po index ca3cca828e..3a1b59a096 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-05-02 05:58+0000\n" -"Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" @@ -30,10 +28,8 @@ msgid "Insufficient permissions." msgstr "Permisiuni insuficiente." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Editați roluri" +msgstr "" #: events.py:12 msgid "Role created" @@ -111,15 +107,11 @@ msgstr "Numele grupului" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Liste separate prin virgulă de chei primare de grup pentru a le adăuga sau " -"a le înlocui în acest rol." +msgstr "Liste separate prin virgulă de chei primare de grup pentru a le adăuga sau a le înlocui în acest rol." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" -"Liste separate prin virgulă de chei primare de permisiune ce vor fi " -"acordate acestui rol." +msgstr "Liste separate prin virgulă de chei primare de permisiune ce vor fi acordate acestui rol." #: serializers.py:90 #, python-format @@ -156,9 +148,7 @@ msgstr "Grupuri pentru rolul: %s" msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "" -"Adăugați grupuri ce vor avea un anumit rol. Ele vor moșteni permisiunile și " -"drepturile de acces ale rolului." +msgstr "Adăugați grupuri ce vor avea un anumit rol. Ele vor moșteni permisiunile și drepturile de acces ale rolului." #: views.py:104 msgid "Available permissions" @@ -171,9 +161,7 @@ msgstr "Permisiuni acordate" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "" -"Permisiunile acordate aici se vor aplica întregului sistem și tuturor " -"obiectelor." +msgstr "Permisiunile acordate aici se vor aplica întregului sistem și tuturor obiectelor." #: views.py:140 #, python-format @@ -186,12 +174,7 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "" -"Rolurile sunt unități de autorizare. Acestea conțin grupuri de utilizatori " -"care moștenesc permisiunile de rol pentru întregul sistem. Rolurile pot fi, " -"de asemenea, parte din listele de control al accesului. Lista de control de " -"acces ACL conține permisiunile acordate unui rol pentru anumite obiecte pe " -"care membrii grupului îi moștenesc." +msgstr "Rolurile sunt unități de autorizare. Acestea conțin grupuri de utilizatori care moștenesc permisiunile de rol pentru întregul sistem. Rolurile pot fi, de asemenea, parte din listele de control al accesului. Lista de control de acces ACL conține permisiunile acordate unui rol pentru anumite obiecte pe care membrii grupului îi moștenesc." #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo index 8e31800ec3f7680a2a5a8e485b3210fcda471669..8b5089833cda99bffbf8d7268aef31aca071ed38 100644 GIT binary patch delta 23 fcmbQwKc9cYa%L_wT_Z~c12Zclqs<$c-!TIKR09VK delta 23 fcmbQwKc9cYa%L_QT_bY^BO@zQlg%5M-!TIKQ{D#( diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index 19ceca7702..b3628dfea6 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" @@ -30,10 +27,8 @@ msgid "Insufficient permissions." msgstr "Недостаточно разрешений." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Изменить роли" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo index ae59d3b48125f0d8281e669569bef4b262a12927..0719c0fb9f5f3280e29ac0d5b6ebf4f0911fdd66 100644 GIT binary patch delta 23 ecmeyy{*8SDD-)NQu92mJfti(&(Pn<8=ZpYTmj+q@ delta 23 ecmeyy{*8SDD-)NAu93Ndk&%_D$!310=ZpYTat2ud diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po index 783a906f1c..dd282d5727 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" diff --git a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.mo index 424126a3503aed7fd3f622f761ecbd15cff0debd..060c68f1958ccf6c189420fb6f496076f4008f09 100644 GIT binary patch delta 23 ecmbQkKZk!qD+`yIu92mJfti(&(dK>@USx3*US, 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -28,10 +27,8 @@ msgid "Insufficient permissions." msgstr "Yetersiz yetkiler." #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Rolleri düzenle" +msgstr "" #: events.py:12 msgid "Role created" @@ -109,9 +106,7 @@ msgstr "" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" -"Eklenecek veya bu rolde değiştirilecek birincil anahtarların virgülle " -"ayrılmış listeleri." +msgstr "Eklenecek veya bu rolde değiştirilecek birincil anahtarların virgülle ayrılmış listeleri." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo index 392fffc7e2b3eb3f4b3b380b3fb04b6758b12039..c6f4a51d38ec435d1c14bdcb42a91b43eaf670a0 100644 GIT binary patch delta 23 ecmbQsI+t~WBO{lYu92mJfti(&(PnSPAVvU3;RS^N delta 23 ecmbQsI+t~WBO{lIu93Ndk&%_D$!2fHAVvU3yaj{+ diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po index 9464a5f40f..7e674c30aa 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -28,10 +27,8 @@ msgid "Insufficient permissions." msgstr "" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "Sửa roles" +msgstr "" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.mo index 5d45eed9d638f4d5c7a41727fefe55833ffc5d16..6f08023b0f207c33dccee50688a45f3db7b587de 100644 GIT binary patch delta 23 ecmX>ienfnO0XvtOu92mJfti(&(Pk_5E*1b#{stTX delta 23 ecmX>ienfnO0Xvt8u93Ndk&%_D$!06|E*1b#*#;W` diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po index 94030ccf91..c0021b8190 100644 --- a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 @@ -28,10 +27,8 @@ msgid "Insufficient permissions." msgstr "权限不足。" #: dashboard_widgets.py:15 -#, fuzzy -#| msgid "Edit roles" msgid "Total roles" -msgstr "编辑角色" +msgstr "" #: events.py:12 msgid "Role created" @@ -176,9 +173,7 @@ msgid "" "role permissions for the entire system. Roles can also part of access " "controls lists. Access controls list are permissions granted to a role for " "specific objects which its group members inherit." -msgstr "" -"角色是授权单位。它们包含继承整个系统的角色权限的用户组。角色也可以是访问控制" -"列表的一部分。访问控制列表是授予其组成员继承的特定对象的角色的权限。" +msgstr "角色是授权单位。它们包含继承整个系统的角色权限的用户组。角色也可以是访问控制列表的一部分。访问控制列表是授予其组成员继承的特定对象的角色的权限。" #: views.py:164 msgid "There are no roles" diff --git a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po index d198e40d04..c2363d9b2c 100644 --- a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mohammed ALDOUB , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po index 6255e3811a..54c1d9eb63 100644 --- a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Iliya Georgiev , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Iliya Georgiev , 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po index 652cb236ba..247764892f 100644 --- a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # www.ping.ba , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: www.ping.ba , 2019\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po index 7e19ee395c..8b04538de8 100644 --- a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po index b2c5900f6c..7da981e3e0 100644 --- a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po index 4703b4bb30..77b0374fcc 100644 --- a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefan Lodders , 2019 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po index 6e83c03e4f..656d3e096e 100644 --- a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,10 +11,10 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po index 6aeedfd01f..30b2184c52 100644 --- a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po index 55d56e802a..06538db685 100644 --- a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Mehdi Amani , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po index a3deb0adaf..b05d65fc28 100644 --- a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # PatrickHetu , 2019 # Frédéric Sheedy , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po index e4af2329c3..a92418b67e 100644 --- a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po index cf46c8a2d7..9731dd8a9f 100644 --- a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po index 1aa9a04ea3..626a308067 100644 --- a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Marco Camplese , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po index f7be9ae16a..3921e2b4af 100644 --- a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po index 018535ea18..5a356068c7 100644 --- a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po index b3dff5b49d..7417fb53ba 100644 --- a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mic , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,13 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: mic , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po index 2dbe9ed30a..1fa4213b22 100644 --- a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -13,14 +13,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Last-Translator: Manuela Silva , " -"2019\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva , 2019\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po index feefc240b6..88bc9419ba 100644 --- a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rogerio Falcone , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rogerio Falcone , 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po index b12cce7bcf..5bf757ad42 100644 --- a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Badea Gabriel , 2019 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,14 +15,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po index 348204fae3..71db2d813f 100644 --- a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Sergey Glita , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,13 +15,11 @@ msgstr "" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Sergey Glita , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po index bb1ac787ee..3e6c8c614c 100644 --- a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:14 msgid "Platform" diff --git a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po index 90ca449908..2c771404d4 100644 --- a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po index 18b241b24c..61eb3bc160 100644 --- a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po index f2d006d531..6bd26d827e 100644 --- a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" @@ -11,10 +11,10 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 diff --git a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po index c60dabce3c..d149578c09 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po index b3354048a5..3b53a30189 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po index c95ac05345..b2a104d84b 100644 --- a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-08-09 10:42+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po index 63a18c5bfa..714724350a 100644 --- a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po index b8eb4f8851..2af23b8212 100644 --- a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-05 13:49+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po index 5fbdbafd59..522434d502 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 # Mathias Behrle , 2018 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-16 18:16+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po index e129cee617..12bcc231a0 100644 --- a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po index 02590ff102..207dd700f0 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015,2017-2018 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-14 03:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po index 664fa844aa..c2797887ff 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015,2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po index a6da48cef6..062a953ec1 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2015 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-11 11:52+0000\n" "Last-Translator: Yves Dubois \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po index 62fe4e794c..3e56b7ce66 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po index e649c5cd36..34f6faadc7 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po index c1c8877de1..30a99c7dd9 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2017 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po index 673b02a75c..5cb2dbbddd 100644 --- a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:45+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po index 980da59a2c..19ebf00839 100644 --- a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po index fd49dd503d..3c2575eaeb 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2018 @@ -9,18 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po index bbf7eb2b3a..a91324d8da 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po index 03b94d9306..f5c59e8361 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po index 740e593d0f..fa9d49561e 100644 --- a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-15 11:57+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po index 8de3ac3f3a..5737e72f55 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po index dde074330b..2a89913aef 100644 --- a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:21 links.py:13 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po index 46015b674b..8d1d30d22d 100644 --- a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po index 4adb27459c..b7e9707d9a 100644 --- a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po index 739aba705d..255581b37e 100644 --- a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-24 03:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:13 diff --git a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po index 6715fd5853..2e09f74be9 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mohammed ALDOUB \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po index 0bbc7bfc39..0f4b3d61f0 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pavlin Koldamov \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po index 6018004327..d46b8c0ee8 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: www.ping.ba \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po index 8f3bf05960..8ae782695c 100644 --- a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-17 19:28+0000\n" "Last-Translator: Jiri Fait \n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po index 028b4bbb6b..4c4efa2eea 100644 --- a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Rasmus Kierudsen \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po index bafec2eaa2..e8353ae310 100644 --- a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mathias Behrle , 2014 # Stefan Lodders , 2012 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-09 09:39+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 @@ -86,9 +85,7 @@ msgstr "Einstellungen anzeigen" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "" -"Einstellungen die durch Umgebungsvariablen vorgenommen wurden sind vorrangig " -"und können auf dieser Seite nicht geändert werden." +msgstr "Einstellungen die durch Umgebungsvariablen vorgenommen wurden sind vorrangig und können auf dieser Seite nicht geändert werden." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po index cb77361b29..a94bb3f5b4 100644 --- a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po index b24752450d..648089bd83 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2012 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-14 03:38+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 @@ -86,9 +85,7 @@ msgstr "Ver configuraciones" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "" -"La configuración heredada de una variable de entorno tiene prioridad y no se " -"puede cambiar en esta vista." +msgstr "La configuración heredada de una variable de entorno tiene prioridad y no se puede cambiar en esta vista." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po index 5e286f2e59..e242853d19 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 # Mohammad Dashtizadeh , 2013 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po index f2cdfc484e..a20fd3b50c 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2014 # Frédéric Sheedy , 2019 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-09 13:46+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 @@ -87,9 +86,7 @@ msgstr "Afficher les paramètres" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "" -"Les paramètres hérités d'une variable d'environnement ont préséance et ne " -"peuvent pas être modifiés dans cette vue." +msgstr "Les paramètres hérités d'une variable d'environnement ont préséance et ne peuvent pas être modifiés dans cette vue." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po index f63b0d67fc..3e7ae8d829 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: molnars \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po index 7d199779c4..5e81d50bef 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po index 41b7f61830..59a56f9d81 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pierpaolo Baldan \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.mo index ed1cb22d241cc79b3843171e3f83db3fc342cebd..d83df7258bccdcfcfd270446a41a290a7ce7706f 100644 GIT binary patch delta 204 zcmey%_nB|Pm3k=#1_lpS1_n+boeZSqfpjjA76;P3Kw1q*FNMmV0n)NS{xu*i0HnVF zX=WhJ%ErK;45T@Mv@np?1=1jM9f7n4kd6V;JV3e?NQ2Cu1f-LJ^d>f-@gNOi><|ZN z0cjN=-vmgD0_jK~4YDAAb0uRn6PKB;k%fYxft88*=6}pyj4Vp3#Y&sQSk;*T;`J9A delta 214 zcmey&_m^+Nm3kEh1_lpS1_n+boeQMpfpj^L76;PPfwUTsUJsSO2Bc+y{0Bf<07(A> z(#$}bpN)Y*8AuBQX<;C34y2`kv^S8}0Mcndng>Yt18I=?bAWU*klw=vG#;cufgR!i z6Ce$8kR6Z~1=7ht8e~D`=1RtDCN5K5V?zZ)BP$cL&HtFa82Qu+OY=*tRf{3?W*=5{ FCIC>U8}, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-31 12:46+0000\n" +"PO-Revision-Date: 2019-06-28 10:47+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" @@ -59,7 +57,7 @@ msgstr "Vērtībai jābūt pareizi citētai." #: forms.py:45 #, python-format msgid "\"%s\" not a valid entry." -msgstr ""%s" nav derīgs ieraksts." +msgstr "\"%s\" nav derīgs ieraksts." #: links.py:12 links.py:16 msgid "Settings" @@ -85,9 +83,7 @@ msgstr "Skatīt iestatījumus" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "" -"No vides mainīgā pārņemtie iestatījumi ir prioritāri un šajā skatījumā tos " -"nevar mainīt." +msgstr "No vides mainīgā pārņemtie iestatījumi ir prioritāri un šajā skatījumā tos nevar mainīt." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po index f2fb78a80f..0522f0c027 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po index e8eab56b7a..f3fb70608c 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012 @@ -14,15 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po index 0710ac3911..4b6e23186f 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po index 20fe3e45ee..bd5b0cebe1 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2011 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-12-22 01:04+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po index b9bc9ff849..8fb2633302 100644 --- a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Harald Ersch, 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-03-15 12:00+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" @@ -85,9 +83,7 @@ msgstr "Vedeți setările" msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "" -"Setările moștenite de la o variabilă de mediu au prioritate și nu pot fi " -"modificate în această vizualizare." +msgstr "Setările moștenite de la o variabilă de mediu au prioritate și nu pot fi modificate în această vizualizare." #: views.py:26 #, python-format diff --git a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po index 6a1ad141cb..9cf0f3057e 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Sergey Glita \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po index 4b6f04a437..23c603c57a 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: kontrabant \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:22 permissions.py:8 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po index c18aef77a7..ec32da20ef 100644 --- a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Caner Başaran \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po index 7258244899..bac90613b6 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po index f8b5437ad7..b1fb26053c 100644 --- a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-24 04:41+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 permissions.py:8 diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo index 5c19446bd814fb775d62f715bcdf1e45781e7a07..f50dbd07f247d31549412fa40733268f6e25f3a7 100644 GIT binary patch delta 23 ecmZ22x>|HYD=U|ou92mJfti(&(dK?u8CC#NsRkba delta 23 ecmZ22x>|HYD=U|&u7Rn7fti(&+2(#$8CC#NXa*br diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 9d9d649ce2..7cf4a2789b 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -615,8 +613,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo index 71df270f9f0b92a9022080e102838080a169e826..801ff3ee9f88cb01cdb114289e3b4ef707c03d06 100644 GIT binary patch delta 23 ecmbQqGm~e-S|%JF diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 96434feb2e..14265f14b8 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -614,8 +613,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo index a6728f6dec10596b1e85a87f40e1251261208cc0..946b2860bf3e060e75799b1277a772c6a39883b2 100644 GIT binary patch delta 2921 zcmYk;drX&A9LMo5<9;y&Bnm=QP@qH*0i`U(M8z=*u)H85mqaZJZz&2sctu;8i-4|T z>XuHN5wrXwyR0^<)uMmukCx@uZPRjXIA%51`}6yq-|Cs)-|IZ*`9071p6@x&5Bpc0 zSngep59u+E!^B-gQ;69II1s@H$LVOZHFyTq6%k_=k8#cnoWS{PydBHkd80eufnoGN zkGj7XAHaT0H1q5-jYv91F%)lMIEIWfy8~k|1*c*vmY}ZJq3&yT=bKOiwP6BwViLZH zN^k(@;76!L|H5d-x47HPrqhv%g}4-Bu@m*6qc|Q<;cIvSx!0=rk{+}cHSl(%c(xmv zne9XV*~@$|Cp&|>?;X?xKEX7`w=ZZc!E30Q7BZSjn1PgaS_SM{y?5-w@^zI%S{?M z5jAisCSx{gNfx38tU!IQ+F65|Sfjh%9#8$1$sRiN;Ac^#dI9yIe%y#>kgD4RvQ&RM z>b@M*_vfGzFGb(LsP9*!D$#)YekW&~r|q_Qn9}{vp@@DXO9)9t~x91(n%#RObJnN*~Pz z$io!W4ds}Nwa8fZ9M<7URAqvxuLd566EP7ru>!2cV$8rkR7Je^XlPRny9-fw`UlQM zs&4a8rL96eum+XrPE_Ju?s^X@fn%71r%{{j8_dU0HprJjEEO*2JdARYsAp?vFt)98 zdd`R^@iDn@$f|XzqR-+Pq2DNm@@g6*nv+z4qC1aU|oPxT)5Kl6` zEvBJTUd430iJD>RB!2=KsLZFM9@C!cKSP!FYt+oHpavR4%_ww={{h8#Kj#Zj*E>-O9zk9ldjmDl1yrTp zM{VL8&aiaWUo%Z&+8THws)W;!Wwt_hUgfUWqaM5gbzcW6@%^Z^ejPR733vT0DzUdw z6Z#NaaRgPdk__svQkL^h=!+{+=gp{uwqgjjqY~SLdeBkS1CFEi%vtBV7|i*{s6>WQ ziH_iU{1$6*{#5^x9`k7IpyMKvi_M(o|3MiW<6Mj8t4ZM#jB{@{wHdHm@I!~ z5>OM!M3uS#m3S#C@ntv@n^2qD>!p!P;~Z*}eUGbf4D~)&W&10!8rjI!gqq<#T!USh zhrgf_OuC!dVLEC8O{jqnq6X}B=jV_)dUnZm{DgWfMllk@c!%V8q-vIoIXDjsumywg z|3@Jw+lU5&f|@qBs#{5DpByHbm)%F~A#$vmPmV{3I$|f0NGM|+>-_ls$3mrj$0k0R ztZz0O{awBvpfcKrh^M`iFOy7FrU!tzLn6{(xI&qI1aeR!9WKt(^pvlYa<>aRG$h$ zulYQpln5aL$4VO7&=JH!*SQ_%yLNyQ8jlkC1rHpL)94^NT?Y$l59AAx^tqFT54$N;P0aEh1u;p`|qQerrvlR`g^pL z*h?%R^c$w5-jDB1Ur+lGLbu9c}CVTv( delta 3303 zcmYk;e@sd6uv)-S356)+Nc|GSj=RD8%dCqeV z>|MO8EP6RDVVj|BCI%6K1Y?fj;a>cre2{8P1s*~*^}F4eG#u(V9y2(eg?D4QcO3DK zH)0~~yHNMPfe+!kc$YCz^DC8P8WMUNa~t--B+S5mI0y$~0cK&bcRqx=uh~0ZhZ<-T zreiy1;(klc))PjzbvVT%s}?|3%Go2BT@_HfjbfsE%L8X}BFV zz*ne_t|CvzTt_{cgud~CGBKayY}Eawn2Qydf?F`E8(yWNnZAvBM#oSq@iCHEwOXfp$ zxC(1=4YK;?2e17P)cyaVu211XYXX_51T56`*{G!-kGg&u>iT&ZtiMi_(a;lXP&Wop znXkfXT#c33h5VT5tbYVcaV?&~MtqD7p||KbZpX{0ewuiW+9S`P?%#lFe=SNyOS>19 zNGB?@^c`BwaYH5d~I?O>OIv16Asdv5_l|TdLU<+!~y@})S0-ou? znC$e$djBu7Udl9&mzyL_p=YsYEoz3XI0Sc~-jYM8B|VQy^b*d*E65lopDdN&eALXB zq9(8cnVWGiOYeVctYXX_R3gVvyZV%Oe9rT0)cgJ&D$&1@7sI5J)db8&C0dSpbYUEg z>o6Y=qE@oY^LOkUr6I{OW*_!PE#(m$hM%Bj_!}y*KT(e&vw&zPsM0JS&X!A8s- z!5=EzkK6DhYM}Cw@h@f#YS#x*18hRAP&;Zu`%x?X9xCw7ixE>kBWa- zMxhca!!mR+89zg<#FxkmV7gE<)K;&61kA%KRD!SI6x@xPKo@G@o?~L;MNK*tHH<^~TuOss_Y&EmyYuP)vc`w-2czKLk=n40`RL9us6YqgS4 z$~9h_i=~8~!z{0DIocfulQW|cuSJvYF50u*WodT>^|Gubcrj!D)1;z`pBP8zGobDC zETN*U(p{eSDs9~j_@s6rPuR2&j}s-t0z$9*!^8|iFGP3IR?#--MNIb^wV$UDo4sQ( zmEiLq`;zNeB|tnwtkVI7onju*E-s`}uNKO4#Hx<-DMLm+K}}nJ1EKODp$(+hX*QwF zqpcq7$V$zuFQ=x$-_O{;7<##GEfYD=w@YOS@hH(sOe6FyQ>ly-`%*a6L&VcWEs;xT zfBT4yoqJNRBu4FezZF_(xix;vc3r!wrrsZPIka7?*$D)!s!-6ionRz(MZMp(eYR^` z?&=1=73AKCWe0s$lO1UETMf1o=DLtoNneqOQyujCbf~_={)pQ>jxW?441{bSXYHvs z$Bg7!^Fyw`$SSFE==Em1RbzK|s*YANhI`BD+|C!${z*zH$jK|P@+K6Go6y-lU|@1| z4%2D~JAqKOZPkTp9qXeuzZJ24;S)#gCfju^hk4qTCe#qplcn(SIH6RSQH WwyjuK4dEt6i{+Qwd0^P}r2hdbQjcW- diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po index 99fee30339..5bb446b7f7 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -35,10 +33,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Izvori dokumenata su način na koji se novi dokumenti hraniti za Mayan EDMS, " -"kreirati barem izvor web oblik kako bi mogli da otpremaju dokumente iz " -"pretraživača." +msgstr "Izvori dokumenata su način na koji se novi dokumenti hraniti za Mayan EDMS, kreirati barem izvor web oblik kako bi mogli da otpremaju dokumente iz pretraživača." #: apps.py:71 msgid "Type" @@ -283,9 +278,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Tipični izbori su 110 za POP3, 995 za POP3 preko SSL-a, 143 za IMAP, 993 za " -"IMAP preko SSL-a." +msgstr "Tipični izbori su 110 za POP3, 995 za POP3 preko SSL-a, 143 za IMAP, 993 za IMAP preko SSL-a." #: models/email_sources.py:49 msgid "Port" @@ -300,18 +293,10 @@ msgid "Password" msgstr "Lozinka" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Ime priloga koji će sadržavati imena metapodataka i par vrijednosti koje će " -"biti dodijeljene ostalim preuzjenim prilozima. Napomena: Ovaj prilog mora " -"biti prvi prilog." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -321,9 +306,7 @@ msgstr "Ime priloga metapodataka" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Izaberite tip metapodataka koji važi za odabrani tip dokumenta za čuvanje " -"objekta e-pošte." +msgstr "Izaberite tip metapodataka koji važi za odabrani tip dokumenta za čuvanje objekta e-pošte." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -333,9 +316,7 @@ msgstr "Tip metapodataka predmeta" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Izaberite vrstu metapodataka koja važi za odabrani tip dokumenta u kojem će " -"se vrednost e-pošte \"sa\"." +msgstr "Izaberite vrstu metapodataka koja važi za odabrani tip dokumenta u kojem će se vrednost e-pošte \"sa\"." #: models/email_sources.py:73 msgid "From metadata type" @@ -362,18 +343,14 @@ msgstr "E-mail izvori" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Tip metapodataka predmeta \"%(metadata_type)s\" ne važi za tip dokumenta: " -"%(document_type)s" +msgstr "Tip metapodataka predmeta \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"\"Od\" metapodataka tipa \"%(metadata_type)s\" ne važi za tip dokumenta: " -"%(document_type)s" +msgstr "\"Od\" metapodataka tipa \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -403,9 +380,7 @@ msgstr "Naziv uređaja" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Odabire režim skeniranja (npr. Lineart, monohromatski ili boji). Ako ovu " -"opciju ne podržava vaš skener, ostavite je praznim." +msgstr "Odabire režim skeniranja (npr. Lineart, monohromatski ili boji). Ako ovu opciju ne podržava vaš skener, ostavite je praznim." #: models/scanner_sources.py:41 msgid "Mode" @@ -416,9 +391,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Podešava rezoluciju skenirane slike u DPI (tačke po inču). Tipična vrednost " -"je 200. Ako vaš skener ne podržava ovu opciju, ostavite je praznim." +msgstr "Podešava rezoluciju skenirane slike u DPI (tačke po inču). Tipična vrednost je 200. Ako vaš skener ne podržava ovu opciju, ostavite je praznim." #: models/scanner_sources.py:48 msgid "Resolution" @@ -428,9 +401,7 @@ msgstr "Rezolucija" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Odabir izvora skeniranja (kao što je uvući dokument). Ako ovu opciju ne " -"podržava vaš skener, ostavite je praznim." +msgstr "Odabir izvora skeniranja (kao što je uvući dokument). Ako ovu opciju ne podržava vaš skener, ostavite je praznim." #: models/scanner_sources.py:54 msgid "Paper source" @@ -440,9 +411,7 @@ msgstr "Izvor papira" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Izbor režima za uvlačenje dokumenata (simplex / duplex). Ako ovu opciju ne " -"podržava vaš skener, ostavite je praznim." +msgstr "Izbor režima za uvlačenje dokumenata (simplex / duplex). Ako ovu opciju ne podržava vaš skener, ostavite je praznim." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -583,8 +552,7 @@ msgstr "Upload dokument" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Putanja do skenirajućeg programa koji se koristi za kontrolu skenera slike." +msgstr "Putanja do skenirajućeg programa koji se koristi za kontrolu skenera slike." #: settings.py:22 msgid "" @@ -646,11 +614,9 @@ msgstr "Stavke dnevnika za izvor: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Nisu definisani nikakvi interaktivni izvori dokumenta ili nijedan nije " -"omogućen, stvoriti jedan prije nastavka." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nisu definisani nikakvi interaktivni izvori dokumenta ili nijedan nije omogućen, stvoriti jedan prije nastavka." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -668,9 +634,7 @@ msgstr "Skeniraj" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "" -"Greška u izvršenju zadatka za otpremanje dokumenta; %(exception)s, " -"%(exception_class)s" +msgstr "Greška u izvršenju zadatka za otpremanje dokumenta; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.mo index 1931668c58b14bedfb8229e2dc147104a50ad376..7fe65bab46c30589ba1e37de558ddacf82abc3cb 100644 GIT binary patch delta 21 ccmcb@a)o8WMJ_X4BTEGXGb= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -614,8 +612,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.mo index f1d31d5bf2b34649ceeb7944840c01cb955932b1..4e0e1c23b46b84736332f6e0348294364c367e03 100644 GIT binary patch delta 23 fcmdnRzl(pvRTeHYT_Z~c12Zclqs{kOZZiP@T!;sY delta 23 fcmdnRzl(pvRTeH&T?11E12Zclv(5KeZZiP@Tt^3p diff --git a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po index 1af1bf665b..c2a6fafbb8 100644 --- a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -278,9 +277,7 @@ msgstr "" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typiske muligheder er 110 for POP3, 995 for POP3 via SSL, 143 for IMAP, 993 " -"for IMAP via SSL." +msgstr "Typiske muligheder er 110 for POP3, 995 for POP3 via SSL, 143 for IMAP, 993 for IMAP via SSL." #: models/email_sources.py:49 msgid "Port" @@ -616,8 +613,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo index 932fd94e08c4adb27d61294f49b3c26f56cbb579..6692a69f2adfad880c3a9af5acfbaa55bba11799 100644 GIT binary patch delta 3354 zcmZA3Yfx2H7{>8M0^$Kw1dphxM?gUV@rq(z($o+Ug}eo%f)^AoM-K>IfKyhMiees7 z3se}UgvLsT9A}s^Yn)2TET@_-UP=e2KBS|Wj#D4{KWFdhLwkJvt+mhIYp-{$cW=G9 z^=i5IT93e5!_i1QPQ(Qna~+c${Ke56Zp>nA!4M4TYD^D|u#Lkg`eV_FnRb7f-QSGC zoUg$=Jcvnn52qR9H3Pa?124x({ICvrmN|hvu?@T6*T~$=Pqx2cXZp7=8gFA??A+a$ zei)1TeG2OSnRfpf)P(XdlINR38ofAChP`nwDx+o`haaLcdw`)B9${tB8^_R}fjrw( zU?f%}mzoBw$5W_;vRF2alaC2lg26oB)YAyWCRE1Fr~%Jn7=DEs;Ad1uzvBSBi|H7_ zQhM9}1ndLYJ*P#+?Lak71Pu5?1dY%)SQ9Eivm$46CL+#xo)C4-Q ze!4EiwmT~0Xw>f`P!mf)ayJM4`DuP-215N{|7amw-ZZmBB#XDgB;;%4`B^FK6L!%tPH*jVX8p*)?+!m*7nd3^3-Y{?>}7Q^7pf zYjS9C&g7z2U<*EnRTzg?P)ir!vZ^=?wTE+1zt^HB(uOL&cGT8f#bUgL8b5oWmB0p6 zLX{Yz_kTAH?ePIj#-peu{1Qjv-Tm-J;-EDGinRI zL9IXs24W97IltiyyyvB%*Cvh1)1GCZCXkPvu?WM^ zjl8m^0(Jdi)O9VW>)uBV`~mXGFrT6_y>6fHKwWnSwQ>(JAHBhpx*E$+6F7(4@G?^9 zCX1I@18zh;co*tHb*PNrL{0E*48b#~FXB0zj!p_g*X3h47GPI&BMEp-6%7rr)Ak_h zi`ayk@p0Stu!8;>)C5P5uqJjAo9SP`9q8em-HMNp98Bpb>mQ#cR1N)zy8bqH*86{G zv{iJ+(8UjLp&tAhcEd{;h1W5F_y0ad(tj|<%E*ywWfW~2k6dC>(S>V}OHDQMwKkvN zI=q7MUIxq^5JD#v~BHL(UY;%yhG24;4H7Akz`@fPyaXGQrH`~!S zP1DudEh2Orv+(DwW&xq9)3maPfrP3f*VpLi8==qtYlM=hCn|gw9VyvWv~*}wbwm)G zh$93w;s2kC3s(}eh*gA^OKZQEpgzn-Vh-^Nanv_Ev{&{DTCA&o0l~P5QZ+alhy`kJ zyiB}G6cYMktR=P(It~zxL=LgTcRDmN;0@oep^@Gf>GvTXBlKC*n(3$|_7S_);n+Y- z^|!1-NT6LzY$fy#>UfgaqsIRZ{R2`)Oe2bj^@NIIp{7b<{dX*-)`GUenc@NTxC9;W0gpW8(=tw0t z`&-suGr>trCMt=YL$!D{|bc_zFrq&2EnY1r`8 zy0N6dv)bL-9_t8gElc?$ F{9ghOR;B;| delta 3712 zcmZA34R91^9mnw}yrjt`yhaiV4c!D<5=bsUNE*@vlawNs28dcpB@Jx2&E3IekKS#- zrb(|_3RP33J(0eoN#DgzZFOR&v4bO>jE*>#(J8f7r|95}FV(@fX+<2Z-{0-haopj* zpXb@zeV*t4JkKt9=iqM!Gw0^dIA%DWBCaB8W*YM=YzcAVn4D!y4}J#=aN%rY=3_23aS38|ZA7(e^mKGbR52F&BK+Vw90_I<9dX@_s z(JxQ~I**I+0&49FnKuof1a;rSKns;|Rq%T|YG51jHS9vQU&81#lUHIZUW+$kq^!>G z;CU|W<-)g74PMQOq)ZdCVNEA$Al+GedPzn(-OZI-@CY{HJE$R+vW4`-V$>Y2Kn)UWT^&Zr7y{Ocp7{w&^;#;VZG&3J*+`5Q48>TSDg#m15#a7@esKq&tdXeXG zI*wsf!#_an`!lEp-wdw5iyGM9P>b>bp2xYoL`vZAsNeIJ_=(M4!k*PCmUCeh)}kKl zL8j9rk##fUxC>v#8F^e|&uR`AS^j{QAwQWK)C_FK+i@E%!xvFA_XcYFo4W_4whE>8FZjB+KRgGcGQ6Suom~DW^fGG;On>!%~E6T%VP=9 zrJ6a#@bqBaHU3nu3*3(CFpU;Ig#0rToT~6`oQcz}HD(A4kl8i&;dXo)mCz-;0Yl6E z_h<`hMtYG1GUf;cWpE7D;23H^&mdnL^CIf~IfX2z`6cT9i>Rs2V>GJg2hKruzFCNR zZWZde&B!ZcVpxNj+;!If1qymmPowt0o2U`zSNnV6CRBqvgL)djPW=#S3Bv4HW!i!} z@n+1&6BxpmPy=`swOQXnJ@+S^P5F@p$+(dmn(uX;M8o;+uOL7`DQ@=;O zwiklmH;|Uv>BbQDp=RI?BquY1`jowl{4=LHWi*BFQ)tG2q3Vt7APwMpwD1sWQ$CAo zU=r2Qk8vaZ4E5HOv*Wa6VblQH@Cw|F#rR3&jW)Yc_YZ|xf8F>%aO1 zrc=T7)A%IyH&6`^)cNo6Fm_WP3H$?UARAfFyKo2c0+_R?cK?BMaqep7UmaGg_A_6J z8tE!5z*f{0Z^RpM6g5NVaTfj#XXAUQL}u`=>G?Ti?Lyt}p*kpU^f%u%Xi=|0UGKy>cnj(|2lMi1 zcaVbCbm%%iqob&d#sa^A^l46_g?~j2V1AST7se*+r{0UpY49hg8M?^VMjihft8pe9 zOfyl3d$1l`=-(Wtpd~nqdhO1kHecoS{)78)KJ{Z*iYHJ@^F2I>Kg8wOMr%qW7C3}O z)Q<*^BHO~82>dzL>Ti#NR{wQqL=wn-E?1yK?8>%=7O#s?(&XJn=y)P`_CKI1_7eKq zYgk)|3PQVMXZFF+;(0xk9wL;))+z4$uV$+=@5=L5tT!S2lctzu!6*i6I; zMx2}bFC!byq=>D={ls{-wWzGCj}i-zn?Nx8i2)Tjo+P&CO8(aRJY}s!8KD&%By{W` zo+3U$9LYXgv@-9p>`#kIGKZ)yBBl}gzVWfh9be`AATi=s%^lbgl(iG8h<(IeL?xl4 zjrfuZ|99L&U5mPbh!IIbo8neY@^ut0A2x+F@mb>D;3A(v^BE#b3=xkK`g+t6I+ppE zoAJ}cwxGT{@Zs$Di+)JD%dcq}5AX z>2y5mIuTXXcFIY6m-~q%54wq@9pP8I{lh-fVQWj$bDFJB#p1O3;dLu!Uv5+l_0fm- zKR<^j+DZ=;hZ<_vG+Jv`H?M8To~kUX=(N39oaZ{6SSsOIE&YDIx2=C&I@}u{TtD&K z%1}`*`3O0*yD{61rfaN-ld>Xl$LjPGWhzM2wW_w+cFM61BwcF@NxRknN#E+EJjboJ z`le3$5A`JzQOAw&Gwn@1<3=5e1}G&wtE$84cT)QX+-S2pNYhWdTcKX9{(*El*Rexp TPB0cL?Zn;c@Wh4MKhOFv1N7D_ diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po index 172769a1a6..ca9677e7b7 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Ingo, 2013 @@ -17,14 +17,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-26 21:45+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -41,10 +40,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung " -"in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist " -"erforderlich." +msgstr "Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist erforderlich." #: apps.py:71 msgid "Type" @@ -70,9 +66,7 @@ msgstr "Nachricht" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "" -"Programm aus dem SANE Paket. Wird verwendet um den Scanner zu kontrollieren " -"und das gescannte Dokumentenbild abzurufen." +msgstr "Programm aus dem SANE Paket. Wird verwendet um den Scanner zu kontrollieren und das gescannte Dokumentenbild abzurufen." #: forms.py:30 msgid "Comment" @@ -291,9 +285,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 " -"für IMAP über SSL." +msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL." #: models/email_sources.py:49 msgid "Port" @@ -308,18 +300,10 @@ msgid "Password" msgstr "Passwort" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für " -"die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste " -"Anhang sein)." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -329,9 +313,7 @@ msgstr "Name Metadatenattachment" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für " -"den ausgewählten Dokumententyp zulässig ist." +msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für den ausgewählten Dokumententyp zulässig ist." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -341,9 +323,7 @@ msgstr "Metadatentyp des Betreffs" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für " -"den ausgewählten Dokumententyp zulässig ist." +msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für den ausgewählten Dokumententyp zulässig ist." #: models/email_sources.py:73 msgid "From metadata type" @@ -370,18 +350,14 @@ msgstr "E-Mail Quellen" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp " -"\"%(document_type)s\" nicht zulässig" +msgstr "Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp " -"\"%(document_type)s\" nicht zulässig" +msgstr "Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -411,9 +387,7 @@ msgstr "Gerätename" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Scanmodus auswählen (z.B. lineart, monochrom, oder farbig). Leer lassen, " -"wenn diese Option von Ihrem Scanner nicht unterstützt wird." +msgstr "Scanmodus auswählen (z.B. lineart, monochrom, oder farbig). Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." #: models/scanner_sources.py:41 msgid "Mode" @@ -424,10 +398,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein " -"typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner " -"nicht unterstützt wird." +msgstr "Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." #: models/scanner_sources.py:48 msgid "Resolution" @@ -437,9 +408,7 @@ msgstr "Auflösung" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Setzt die Scanquelle (etwa wie Dokuemteneinzug). Leer lassen, wenn diese " -"Option von Ihrem Scanner nicht unterstützt wird." +msgstr "Setzt die Scanquelle (etwa wie Dokuemteneinzug). Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." #: models/scanner_sources.py:54 msgid "Paper source" @@ -449,10 +418,7 @@ msgstr "Papierquelle" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein " -"typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner " -"nicht unterstützt wird." +msgstr "Setzt die Auflösung des gescannten Bildes in DPI (dots per inch). Ein typischer Wert ist 200. Leer lassen, wenn diese Option von Ihrem Scanner nicht unterstützt wird." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -529,8 +495,7 @@ msgstr "Serverseitiger Pfad, der auf Dateien untersucht wird." msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "" -"Bei Aktivierung werden auch die Unterverzeichnisse des Pfads durchsucht." +msgstr "Bei Aktivierung werden auch die Unterverzeichnisse des Pfads durchsucht." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -594,23 +559,17 @@ msgstr "Dokument hochladen" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Dateipfad zum Programm scanimage, das für die Kontrolle von Scannern " -"verwendet wird." +msgstr "Dateipfad zum Programm scanimage, das für die Kontrolle von Scannern verwendet wird." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "" -"Pfad zu Speicher-Unterklasse für den Cache von Bildern für bereitgestellte " -"Dateien." +msgstr "Pfad zu Speicher-Unterklasse für den Cache von Bildern für bereitgestellte Dateien." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." -msgstr "" -"Argumente die an das SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND " -"weitergeleitet werden." +msgstr "Argumente die an das SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND weitergeleitet werden." #: tasks.py:46 #, python-format @@ -627,9 +586,7 @@ msgstr "Hochladen wirklich abbrechen?" #: templates/sources/upload_multiform_subtemplate.html:86 msgid "Drop files or click here to upload files" -msgstr "" -"Dateien auf diese Fläche ziehen oder darauf klicken, um Dateien zum " -"Hochladen auszuwählen" +msgstr "Dateien auf diese Fläche ziehen oder darauf klicken, um Dateien zum Hochladen auszuwählen" #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." @@ -651,9 +608,7 @@ msgstr "Der Server antwortete mit Code {{statusCode}}." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "" -"Jeder Fehler, der bei der Benutzung von Dokumentenquellen auftritt, wird " -"hier gelistet, um bei der Fehlerbehebung zu helfen." +msgstr "Jeder Fehler, der bei der Benutzung von Dokumentenquellen auftritt, wird hier gelistet, um bei der Fehlerbehebung zu helfen." #: views.py:68 msgid "No log entries available" @@ -666,11 +621,9 @@ msgstr "Logeinträge für Quelle %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen " -"oder aktivieren Sie eine bevor Sie fortsetzen." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen oder aktivieren Sie eine bevor Sie fortsetzen." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -688,20 +641,16 @@ msgstr "Scannen" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "" -"Fehler beim Hochladen von Dokumenten; %(exception)s, %(exception_class)s" +msgstr "Fehler beim Hochladen von Dokumenten; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." -msgstr "" -"Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze " -"verfügbar sein." +msgstr "Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze verfügbar sein." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "" -"Ein Dokument vom Typ \"%(document_type)s\" aus Quelle %(source)s hochladen" +msgstr "Ein Dokument vom Typ \"%(document_type)s\" aus Quelle %(source)s hochladen" #: views.py:378 #, python-format @@ -710,9 +659,7 @@ msgstr "Vom Dokument \"%s\" können keine neuen Versionen hochgeladen werden." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "" -"Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze " -"verfügbar sein." +msgstr "Das neue Dokument wurde in die Warteschlange eingestellt und wird in Kürze verfügbar sein." #: views.py:472 #, python-format @@ -730,11 +677,7 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "" -"Führt den Quellenüberprüfungscode aus, selbst wenn die Quelle nicht " -"aktiviert ist. Quellen, die Dokumente nach dem Herunterladen löschen werden, " -"werden das im Testmodus nicht tun. Überprüfen Sie das Fehlerprotokoll währen " -"der Testperiode. Ein erfolgreicher Test leert das Fehlerprotokoll." +msgstr "Führt den Quellenüberprüfungscode aus, selbst wenn die Quelle nicht aktiviert ist. Quellen, die Dokumente nach dem Herunterladen löschen werden, werden das im Testmodus nicht tun. Überprüfen Sie das Fehlerprotokoll währen der Testperiode. Ein erfolgreicher Test leert das Fehlerprotokoll." #: views.py:513 #, python-format @@ -766,11 +709,7 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "" -"Quellen stellen die Mittel für das Hochladen von Dokumenten bereit. Einige " -"Quellen wie z.B. das Webformular sind interaktiv und erfordern " -"Benutzereingaben. Andere wie z.B. E-Mail-Quellen arbeiten automatisch und " -"laufen ohne Benutzereingriff im Hintergrund." +msgstr "Quellen stellen die Mittel für das Hochladen von Dokumenten bereit. Einige Quellen wie z.B. das Webformular sind interaktiv und erfordern Benutzereingaben. Andere wie z.B. E-Mail-Quellen arbeiten automatisch und laufen ohne Benutzereingriff im Hintergrund." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/el/LC_MESSAGES/django.mo index b5f1851896a2b0ba088bdf62d17407722535d94f..a364218a8a0e73e3ccaf465f8360b510baef1faa 100644 GIT binary patch delta 876 zcmXZaPe@cz6vy#jR6~hbjDIGb#wN?MBC4U$v2tNx5lk35qAm)Qf|6*!l9rD^$O>XW zBBDh>6tjr}L#&X9YE>>ZY9q9nO%O#9ieTSgz0LdFd*8YDoO|Az$xY>+F&a~# z76w^%)!``m!27rfU*HCuLl;=WU0AnKI)xp$10P}>Kj3LB;VnGMVOwz){eA)axNtSe zJiizZqyr3YFrz5FMkkuXMqEo3E@Uqc$7Rv)ucF^SN8juVKEM)g#<7HS28-wd*VRkM zF^x_fpyTd&;0j-b3-j2|d>P%kexiK9IdsATHsK^X@qFmF&;^XL9!W}Tuon3$YCxK& z47z}m;XJs&U<(VQ=naq2iJsz4oJAM1jC4;G1luO`r#XVYKsQd~6?}*32I&bdVmB5E z`h`pAJU_Pm`0uQV)aOEZhlwi*DI>bl_^*(2I%C5p-cQ6W1dz%gdVgq*{~v inh&N@<0mR(>$~!UXNNE6lU?~s1Hz$}Jyo?kFU?AvR00qly;XLbi~Vhb)~2*2T7EZ{S|#mAa(8@28y$#pK= zhKe7DT(b@auZbwiwor+7@Gv$|g$n8BNBbPq`b*UMC)CY;;~W<7Aig?4w=jn)u(84H zGWMVnzd-FZKPH;4nQs&!e^2PRMn=kX}6p%UjkOTxw2kJZeFupHZw*ReR# zJnKUhkoIDClEEP+W>E(|pc1WOD{i9-39v~|)8u&;^)xBe1qLvOPjMA{8qMBeC5zWE zhk2}OF6JpCNy2#lN(TBfT|p(djd2{s2e^QGnz|#!n?$gS_#*0@i_dWywJ$`wo?sMv zaRsT#cGEU>u9Y8k;wmQWG)Wj7W8$snS5(V(aeZy9#}r0Ar%{FdSehzZ@m0i*M`Gbf y=c#DtOkYi~`BKIiclyJL?8u|+ppy-s8TdbO{{B!popA;qw)YR6TN5H} diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po index 9024c136dc..36791375df 100644 --- a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -32,10 +31,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Οι πηγές εγγράφων είναι ο τρόπος με τον οποίο τροφοδοτούμε το Mayan EDMS με " -"νέα έγγραφα. Δημιουργήστε τουλάχιστον μία φόρμα ιστού ώστε να μπορείτε να " -"ανεβάσετε έγγραφα με την χρήση ενός web browser. " +msgstr "Οι πηγές εγγράφων είναι ο τρόπος με τον οποίο τροφοδοτούμε το Mayan EDMS με νέα έγγραφα. Δημιουργήστε τουλάχιστον μία φόρμα ιστού ώστε να μπορείτε να ανεβάσετε έγγραφα με την χρήση ενός web browser. " #: apps.py:71 msgid "Type" @@ -73,8 +69,7 @@ msgstr "Αποσυμπίεση αρχείου" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Ανέβασμα των περιεχομένων ενός συμπιεσμένου αρχείου ως αυτόνομα έγγραφα." +msgstr "Ανέβασμα των περιεχομένων ενός συμπιεσμένου αρχείου ως αυτόνομα έγγραφα." #: forms.py:68 views.py:485 msgid "Staging file" @@ -238,9 +233,7 @@ msgstr "Χρονικό διάστημα" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Ορισμός ενός τύπου εγγράφου για τα έγγραφα που μεταφορτώθηκαν από αυτή την " -"πηγή." +msgstr "Ορισμός ενός τύπου εγγράφου για τα έγγραφα που μεταφορτώθηκαν από αυτή την πηγή." #: models/base.py:182 msgid "Document type" @@ -283,9 +276,7 @@ msgstr "" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Τυπικές τιμές είναι 110 για POP3, 995 για POP3 με χρήση SSL, 143 για IMAP, " -"993 για IMAP με χρήση SSL." +msgstr "Τυπικές τιμές είναι 110 για POP3, 995 για POP3 με χρήση SSL, 143 για IMAP, 993 για IMAP με χρήση SSL." #: models/email_sources.py:49 msgid "Port" @@ -387,9 +378,7 @@ msgstr "Όνομα συσκευής" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Επιλέξτε τρόπο ανάγνωσης (πχ lineart, μονόχρωμη, έγχρωμη.) Αφήστε κενό αν " -"δεν υποστηρίζεται από την συσκευή σας." +msgstr "Επιλέξτε τρόπο ανάγνωσης (πχ lineart, μονόχρωμη, έγχρωμη.) Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:41 msgid "Mode" @@ -400,9 +389,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Ορίστε την ανάλυση της εικόνας σε DPI (στιγμές ανά ίντσα). Μια τυπική τιμή " -"είναι 200. Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." +msgstr "Ορίστε την ανάλυση της εικόνας σε DPI (στιγμές ανά ίντσα). Μια τυπική τιμή είναι 200. Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:48 msgid "Resolution" @@ -412,9 +399,7 @@ msgstr "Ανάλυση" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Επιλέξτε την πηγή ανάγνωσης (πχ document-feeder.) Αφήστε κενό αν δεν " -"υποστηρίζεται από την συσκευή σας." +msgstr "Επιλέξτε την πηγή ανάγνωσης (πχ document-feeder.) Αφήστε κενό αν δεν υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:54 msgid "Paper source" @@ -424,9 +409,7 @@ msgstr "Πηγή χαρτιού" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Επιλέξτε τον τρόπο τροφοδοσίας χαρτιών (simplex / duplex.) Αφήστε κενό ανδεν " -"υποστηρίζεται από την συσκευή σας." +msgstr "Επιλέξτε τον τρόπο τροφοδοσίας χαρτιών (simplex / duplex.) Αφήστε κενό ανδεν υποστηρίζεται από την συσκευή σας." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -567,9 +550,7 @@ msgstr "Ανέβασμα εγγράφου" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Διαδρομή του προγράμματος που θα χρησιμοποιηθεί για τον έλεγχο των οπτικών " -"αναγνωστών." +msgstr "Διαδρομή του προγράμματος που θα χρησιμοποιηθεί για τον έλεγχο των οπτικών αναγνωστών." #: settings.py:22 msgid "" @@ -631,8 +612,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 @@ -665,9 +646,7 @@ msgstr "" #: views.py:378 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "" -"Η δυνατότητα ανεβάσματος νέας έκδοσης έχει απενεργοποιηθεί για το έγγραφο " -"\"%s\"" +msgstr "Η δυνατότητα ανεβάσματος νέας έκδοσης έχει απενεργοποιηθεί για το έγγραφο \"%s\"" #: views.py:431 msgid "New document version queued for upload and will be available shortly." diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo index 3279d63f7baa17a2d1354145a4764f30d3d40127..65cf165f6ceb0c850c73bb5c8d1788af2fde4516 100644 GIT binary patch delta 3316 zcmZA3X;76_9LMoPaPfLCtH=e#1qHX*6cy1F7c3!H(9pmoMMX#x1xZD`n6`){WyXc9W}IoPtZa0~HyVvOHu<9O?>4Achc$4r6}7WEVdiXF`oxjc3t`&M;#JV5Ds#4x~N>J-EQG7u)rn7|i(w zEW%@$jDO->W4vZ~xYh7_%;LfpNBQM})*qY%T1DjbA|Q6oBonRp2`vM1=q&`4_pgK#qSmymaxJs5@c z$gSoSw&HozfEF=rYG);m#R?4O{ic;d5O$(Qd2~YsCGZbIoO42{}HMk2cz`*M?`_P%pg=l$*33R;6yAyHB^VG*nmop%cwQI zihAKFT30(Wkaw6RsGM1klW_}bV4bKL>W*gqwWeQkLOr^M>d^N%81JCg?r&5F0+~PE z=d_JLjW`x{eFCau8K`z=qh@d(&cJ2(A|64t`-6x1FQagm6KZH7!(cFGBa)z|8g*kG zs^O!k2HR01>%v#C2bC*s8c|2)qMpx1&EyKy^BYmmZ?n(u^->7rL_O-kM$`zKumn%y zI&_ek>ewc%z#6Q?vJOLyc@YYAxsEcq~FaSC46U5?M9Vi)-+A3<@wNdzdw&Ib<;J^_qMN zoHK=}8Q6uZa4#m}PpGL2h_|vh1hs~XQP-PL9l3}~zH6wZ`5DXbKC1n^5!L|8Q3I+$ zr}qCL3R>f%n1XGnDZGK{_zzCS)RAOz084-ysP`sVFPca%MpK_|Ta0>P9nyDm*7hp$ zh#lVKk|%4h==}&m^KAn2qYlQd9@G zp$i+4f2M^WZO5;X1UEyHtQTjZo?C=!e=`LG6~$aXxylQ&>SEhD{rW<+xQB zkmWUxP@m!$Ho0aX9r@UqY}AO0FdQpU9X^1y*ob);NoK2q#i;wrFamcY_j}DD3Za~6 zwr@C%`XctAX5xbF6+A%wI@aP6_NKPicX$x{umP+2i**RyldPm{#vJOssO{&O%wI&D zhQZqZcl`zSC2ETQKux8G1yYZPp_V8WQ`rA=P%~3L#X5f+J=D8wzd#0WZX=0q+?m!k zo`g!~J@`7Fzy)3!bntc2)aOsLre-aUroJ7uh9|HT+i(^-U$FLXE^1^2n2YVm1~Ly& z9gmuBL@4lUDcrlA4`-GyNQv6j#Z%s&zvDFu+lgA@ zEkZ{U@g{MEs3uMj4kC@vk!WES;H$(EyS~P@*>@{sO#cRIO6V4!BXpwo7$qf59+5@( zh~tEg3}UChWc?^>J;Y3+hB!#POcW7egpNAG?JrsTf1h0z`WsMc*DJ7||5JVz+T!dU e7*iSI%1B9{8b3Z`T6%i-k%TAi?vn9Y;r{~q#Y8Ot delta 3735 zcmZA34{TLu8OQOb<9}PqpNsk{ZlwZ3*`UH0)Cg{)bUW=mZEwB3_j1oI z453^G3QX8=UMCZf4w6YUi!SLD7Fn{1lVx!=#w|uOi(|emmyV>?THhNu~3b_JIe^22svyjdH*jALbV3|)e^ z(_f2a*c$fzuzwgwvwr}$;`guyZ<}CtuUXdWX=vaKuE2ieUUm_u;F~xO|A@@Zu7!St zW9VPUsrX;4!19S^GjK8Lcnj+Khr)gbYC>PeQtoeQ8s+Rbh|};iDx(Y7fN!BP8$HRa z2xp)&n1>PEg52AVVkw?NF0mK!6uyQ^sEuXQIB~4T12~%d+Y2;C;vg#H3#b8yuo#C? z1AKtW=wEmT7I3#_tVCtrgIbA$sDuVkT|yiZj@;5NlBvwjs-D zN#wcN06v00#*qc=qh_^+)16>KRmdT$L9M`g+=iR53V(=Nx!<75cNq21DzlZr30-Zs>PIjjb z^fbVzIg}EXgho&|Y(56PbgmKU+;z7QUN701$l2a9kRmB2NmO!BXm#+h5s`fH%i@~&yA)}S)mfSUPc)C7Gj z!N+hI520$MlXrFk#&JFF!3XgT)cKWEWD*x5F>$X*hiya zN${HO$0z8Y#ba0#p;GZ8^3R%C?`GVKdJQk*Is5=MvD`g@Cs0d$2DPG>Q4{_Zmf{tx z+eiTWAJZO*?|Bk&Cz%|AMOO+D88Tz;$>(1O5cH^dpu9D>E7A z(w~iblszw4wABUVzYIHQpC+{4)P*@j z7qOnunz2IpA~=Q=tfh&K#9?9}x4fvlrIS_zp?tKZh`xM_Qot=?`yf6+bP(l4FYy&Z zn_i%^#21J|x#x=(6r9Zcx~Md(dYw+(MyS;In&h`{^ZPV$H0auPYzo_Y;?;yIWH&L3 z(6*9zN{vr#`{?f^?j^d3B(a+KlKz08Qg3Z8EuVOtI1uh#fR7P5Vh?eG&{v|K&{h>- z_v6FFrm+8L=(D-ki|-uw4SI3nRPLX}i?hdRscQ7{Q#kf5;yc7M#NEU$;^wBREhDHS z+e>_%SVy!HC4{ykL{YwF_BGrew#7`MC+uhNN&dP#H~!?iHCA_G*8awUznVa{CCU+*{NjJ(-ch#+X`gP6&$&A;jpQp;GIi6J&Nyy7pJ&pE zwgqE__a>d-=DOVPaMN9GG#TXUHahqD83svsJ*-rIQo*=shsmeXv0g9z=^W|?U#eR< F;eY+;, 2014 # jmcainzos , 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-28 20:24+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -36,10 +35,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Las fuentes de documentos son la manera en la que se almacenan nuevos " -"documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario " -"web para poder cargar documentos desde un navegador." +msgstr "Las fuentes de documentos son la manera en la que se almacenan nuevos documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario web para poder cargar documentos desde un navegador." #: apps.py:71 msgid "Type" @@ -65,9 +61,7 @@ msgstr "Mensaje" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "" -"Utilidad proporcionada por el paquete SANE. Se utiliza para controlar el " -"escáner y se obtiene la imagen del documento escaneado." +msgstr "Utilidad proporcionada por el paquete SANE. Se utiliza para controlar el escáner y se obtiene la imagen del documento escaneado." #: forms.py:30 msgid "Comment" @@ -79,8 +73,7 @@ msgstr "Expandir archivos comprimidos" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "Subir los archivos de un archivo comprimido como documentos individuales" #: forms.py:68 views.py:485 msgid "Staging file" @@ -244,8 +237,7 @@ msgstr "Intérvalo" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Asignar un tipo de documento a los documentos subidos desde esta fuente" +msgstr "Asignar un tipo de documento a los documentos subidos desde esta fuente" #: models/base.py:182 msgid "Document type" @@ -288,9 +280,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para " -"IMAP, 993 para IMAP sobre SSL." +msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." #: models/email_sources.py:49 msgid "Port" @@ -305,19 +295,10 @@ msgid "Password" msgstr "Contraseña" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Nombre del archivo adjunto que contiene los nombres de los tipos de " -"metadatos y los pares de valores que se asignará al resto de los archivos " -"adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo " -"adjunto." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -327,9 +308,7 @@ msgstr "Nombre del anejo de metadatos" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Seleccione un tipo de metadatos válido para el tipo de documento " -"seleccionado para almacenar el asunto del correo electrónico." +msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el asunto del correo electrónico." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -339,9 +318,7 @@ msgstr "Tipo de metadatos de asunto " msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Seleccione un tipo de metadatos válido para el tipo de documento " -"seleccionado para almacenar el valor \"de\" del correo electrónico." +msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el valor \"de\" del correo electrónico." #: models/email_sources.py:73 msgid "From metadata type" @@ -368,18 +345,14 @@ msgstr "Fuentes de correo electrónico" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"El tipo de metadatos de tema \"%(metadata_type)s\" no es válido para el tipo " -"de documento: %(document_type)s" +msgstr "El tipo de metadatos de tema \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"\"De\" tipo de metadatos \"%(metadata_type)s\" no es válido para el tipo de " -"documento: %(document_type)s" +msgstr "\"De\" tipo de metadatos \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -409,9 +382,7 @@ msgstr "Nombre del dispositivo" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Selecciona el modo de escáner (por ejemplo, lineart, monochrome o color). Si " -"esta opción no es compatible con el escáner, déjela en blanco." +msgstr "Selecciona el modo de escáner (por ejemplo, lineart, monochrome o color). Si esta opción no es compatible con el escáner, déjela en blanco." #: models/scanner_sources.py:41 msgid "Mode" @@ -422,10 +393,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Define la resolución de la imagen escaneada en DPI (puntos por pulgada). El " -"valor típico es 200. Si esta opción no es compatible con el escáner, déjelo " -"en blanco." +msgstr "Define la resolución de la imagen escaneada en DPI (puntos por pulgada). El valor típico es 200. Si esta opción no es compatible con el escáner, déjelo en blanco." #: models/scanner_sources.py:48 msgid "Resolution" @@ -435,9 +403,7 @@ msgstr "Resolución" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Selecciona la fuente de escaneado (como un alimentador de documentos). Si " -"esta opción no es compatible con el escáner, déjela en blanco." +msgstr "Selecciona la fuente de escaneado (como un alimentador de documentos). Si esta opción no es compatible con el escáner, déjela en blanco." #: models/scanner_sources.py:54 msgid "Paper source" @@ -447,9 +413,7 @@ msgstr "Fuente de papel" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Selecciona el modo de alimentador de documentos (simplex / dúplex). Si esta " -"opción no es compatible con el escáner, déjela en blanco." +msgstr "Selecciona el modo de alimentador de documentos (simplex / dúplex). Si esta opción no es compatible con el escáner, déjela en blanco." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -520,16 +484,13 @@ msgstr "No es posible obtener la lista de los archivos provisionales: %s" #: models/watch_folder_sources.py:34 msgid "Server side filesystem path to scan for files." -msgstr "" -"Ruta del sistema de archivos del lado del servidor para buscar archivos." +msgstr "Ruta del sistema de archivos del lado del servidor para buscar archivos." #: models/watch_folder_sources.py:39 msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "" -"Si se marca, no solo se analizará la ruta de la carpeta en busca de " -"archivos, sino también sus subdirectorios." +msgstr "Si se marca, no solo se analizará la ruta de la carpeta en busca de archivos, sino también sus subdirectorios." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -593,17 +554,13 @@ msgstr "Subir documento" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Ruta de acceso al programa scanimage utilizado para controlar los escáneres " -"de imágenes." +msgstr "Ruta de acceso al programa scanimage utilizado para controlar los escáneres de imágenes." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "" -"Ruta a la subclase de almacenamiento para usar cuando se almacenan los " -"archivos de imagen de staging_file almacenados en caché." +msgstr "Ruta a la subclase de almacenamiento para usar cuando se almacenan los archivos de imagen de staging_file almacenados en caché." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." @@ -628,14 +585,11 @@ msgstr "Soltar archivos o hacer clic aquí para subir archivos" #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." -msgstr "" -"Su navegador no admite la carga de archivos mediante arrastrar y soltar." +msgstr "Su navegador no admite la carga de archivos mediante arrastrar y soltar." #: templates/sources/upload_multiform_subtemplate.html:88 msgid "Please use the fallback form below to upload your files." -msgstr "" -"Por favor, use el formulario de reserva a continuación para cargar sus " -"archivos." +msgstr "Por favor, use el formulario de reserva a continuación para cargar sus archivos." #: templates/sources/upload_multiform_subtemplate.html:89 msgid "Clear" @@ -649,9 +603,7 @@ msgstr "El servidor respondió con el código {{statusCode}}." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "" -"Cualquier error producido durante el uso de una fuente se enumerará aquí " -"para ayudar en la depuración." +msgstr "Cualquier error producido durante el uso de una fuente se enumerará aquí para ayudar en la depuración." #: views.py:68 msgid "No log entries available" @@ -664,11 +616,9 @@ msgstr "Entradas de bitácora para fuente: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"No se han definido fuentes de documentos interactivos o no hay ninguna " -"habilitada, cree una antes de continuar." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "No se han definido fuentes de documentos interactivos o no hay ninguna habilitada, cree una antes de continuar." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -686,20 +636,16 @@ msgstr "Escanear" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "" -"Error al ejecutar la tarea de carga de documentos; %(exception)s, " -"%(exception_class)s" +msgstr "Error al ejecutar la tarea de carga de documentos; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." -msgstr "" -"Nuevo documento puesto en cola para su carga y estará disponible en breve." +msgstr "Nuevo documento puesto en cola para su carga y estará disponible en breve." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "" -"Cargar un documento del tipo \"%(document_type)s\" de la fuente: %(source)s" +msgstr "Cargar un documento del tipo \"%(document_type)s\" de la fuente: %(source)s" #: views.py:378 #, python-format @@ -708,9 +654,7 @@ msgstr "Documento \"%s\" esta bloqueado de crear nuevas versiones." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "" -"Nueva versión del documento puesto en cola para su carga y estará disponible " -"en breve." +msgstr "Nueva versión del documento puesto en cola para su carga y estará disponible en breve." #: views.py:472 #, python-format @@ -728,12 +672,7 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "" -"Esto ejecutará el código de verificación de fuente incluso si la fuente no " -"está habilitada. Las fuentes que eliminan el contenido después de la " -"descarga no lo harán durante la prueba. Verifique el registro de errores de " -"la fuente para obtener información durante la prueba. Una prueba exitosa " -"borrará el registro de errores." +msgstr "Esto ejecutará el código de verificación de fuente incluso si la fuente no está habilitada. Las fuentes que eliminan el contenido después de la descarga no lo harán durante la prueba. Verifique el registro de errores de la fuente para obtener información durante la prueba. Una prueba exitosa borrará el registro de errores." #: views.py:513 #, python-format @@ -765,11 +704,7 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "" -"Las fuentes proporcionan los medios para cargar documentos. Algunas fuentes, " -"como el formulario web, son interactivas y requieren la intervención del " -"usuario para operar. Otros, como las fuentes de correo electrónico, son " -"automáticos y se ejecutan en segundo plano sin la intervención del usuario." +msgstr "Las fuentes proporcionan los medios para cargar documentos. Algunas fuentes, como el formulario web, son interactivas y requieren la intervención del usuario para operar. Otros, como las fuentes de correo electrónico, son automáticos y se ejecutan en segundo plano sin la intervención del usuario." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo index a9fff613e687361f07ef923924d1519394be9cc6..4a94996a29838ea114ba712594d57d374f00f062 100644 GIT binary patch delta 2792 zcmYk;drZ}39LMp8JaF_Jkc)UjZYct#TtdMxKq1Jy1V$>Qf&vMG!XXcmiTcA!w#e4( zEOV`NwQ6PM+E}8+TElQ?>*iRLy8OenM$ReyVYTJ#{W-rMThI8O*YmqQ&-c0fe%jUW zN}csoZV+_Spj(zCnxF4tC1)PD`Fahs6*ApV_=Vznt&q8&$04HG) zPQ^-8qRsdqS~!LN&1otmZ@$O5co}nX{6u3Su?W>rIYwa}zKMS1Rujcd8fhY`<6LAC zO#w1OQ;htXDt^e>G@_nsM>qYOeN>XL8#Tfcs1ct-WquXa;9ppR|DqaRL^c}nYSaL# zQA^W=>R=bn!*0~`Ut%VnMGyXomL9l6MI(%gw$~^HH3Jz)U#1?p#rRQ6bO6%@T zF%FNRmhud$!?URS1|5Gu4eV#<`e-!suS{-pLJfzIji$(rYA6<)F%g+<^P+S9DC)U) zQ1^d=+FYMwuw&HygQ%GpM&17#>i%2K`8zSp|2R%~8NMEjL}eU{jTn!0cmVzQJMPAH z?4<4Z3+k<@U_D;Pt*GZ+YzXazaMY%oggT#&n#pWbV#O8}WmJL6cs**$x1et9#4J37 zv~Buu171YUP!1bJ4HsY{mZAnykJY#tQ}7&W2Ck#_&~4|umCu5x!y05(Oe<Secknvv-y5v( zMMI77GOB?Qq)l@RnQaq6Z)uo<^Kb>K!7gN5n0N6JJdNde7nM*s?{;v8Q3?XD8_c6pgx`fJ!VC^;{ml zgv(F^`w7+VDC$0w%KWRts8rjT=;C-jYU=Y*Yrh87K?~}^4pavRaU8yZYUdbggrDL^ z_yr!vMmA1Ay3>uhffsN9Ph0odn`Y1beAhWKfXc9cj@{vp$UZWcP!0cs+6ykWwAMTU zb$vPNd(n){y6MCPcpS@d7&QZ_JhT;yQ3J3}Qc>ppxEO~p3@2yWACP!_jN_fC2L{oH zS5TX4MV9@%g_^O$sQXT$-j;sn{2!z1kpkq zAT(OqGNr^lL?`h)v5in^AnFM63noyAYWHD6#ZNp*D49^R#9qIB9C(TUm;D^9BQ#y? zm*CFdjoPqd#Yctjlvx=ln~+qvliH(16ruNG3sFI=Cl(Q!N0ntnHSsJ_Lg-!D8+d!d zB&(jIxT#M4A2!K$05h$=!wds!uhSW9ds zS_ys0m#b?g-4qjf#D+kzXGX+oYDq*9(G+O%%nE4_yzEITe1>BcH^CP&_#en!sDJJb z5@V%}iZ+Bw0Z~TO21Yz{a(VZHA51VS^h4Q0Y$rN&;FL9E6>RQV>OCLUGZfR~_T**c q5DR?TJhq_5KG?(hkD_ delta 3289 zcmYk;32anF9LMn~)RwliLW@O2?H~dQbSdb9MatoY2NXHv5G=mZrCn@yYj?4N;Bpjb zB8pnC5E9UcwMZb)fQ?P5A}br5c~8@)rX<#6EOql zpx&>*@mP%)7?UtBP{`uOt9Ty1>-!;QQa_3p;z{g}XYdj{KR5Nf81;V8uTMY?I2jAD z9Q$G=D$(V54Q|3h#y3YOki7X4hvQEe#0&En1j|t!RbVe{z%95IX=*HuG}8cT;2V)e zG*gfnn(4@ospc2Cn?}@oO_<5}=5Y!|xEVFWS5PxPfy(?hREL?2ejWBibvzBVLLt-y z>QGy=3^l+;yb3p?-v1Z_cnq_#TW{81FXU3t3@vJpu12ju88WtsA@7*As4aQ|HSlKC zz|Y}DxC^xv@1q7hhHB^feubLY_x|&=eAZu?WRS(1*c&y#G1O9ds1CowCHOnC>SjLK z>i!bc`*BqJ1Zn~sQ3*VWYQGt^B5kPlFQeKYE@1uj;1h0i$InqOevQifJFLcEu@Yx< zf?{|8S7I^yuoPcHeR>9P5T3^IsP|8x&cqj}!}qO!{~T&XyCv9QB~XCMXaFkX0BY&W zPz|Tz2&_QHGLPUwd>*wD>8z^;%)?8u5H*n?-i2fFa(o800*6p%DRIPqkkcfJ*QIRKm^v^QTY=Y{g=1Lmjfua1>^6FqWqoQ;HGl9h`9WGmzyPq|bjz zs$gdOuE3Ercn*i-aU6|leCU<=HAv3pdej%w0#t$reNUoR?l08RXYr8pW_qFey9@{7 zv}B$AkNFL@`R+x{@NHBFN0A(ihiseq6Ng|fpV_N0i0Uwm924^}-h|I$Iew2yXpBuc z8I{l+{2@UhOhE(A9FW>02em}&eOpioY(vfbkY7K6miie~Vtp=4ZNV_)$IRo`6}SSm z728o;>S8^9jS2154ANJIt5Gv}4E1^5?$_VIY1EISI=GyZG#!gk?xDD08Zd3wqA$^(;{rYLt7tuM) zOk>*yr`qMQPfD;a>ir@35MGO#;Cn+@e+}@B-|#eQ;561v7GOFKLT$lN)KX8z9$0}I zpc*wmBX-A!Q15R-&GcD(33uXFoO>l-K6o}k;TH-AhZ^$^whc=io+wB4Z|eI|3APuf z20VWd^7r&7NM)&2lR@gvkBD;t@5zaF(>YcSa_vbd(*zkdozAYsl@(B2jB zc5f`gAdW<3T8+2heq?Kt*DQWVh;@W!OOECSq8qV-SWmJVLd$U;q5WG+D5)l*^HMSkh&qCEW@Zo%5<1bHS3L#&37_5)%ql8-fYQxGFG8OW zt@G`~UBm=J>!|BiqJp@exQ@_gW=+duSp|tIN_j*N!V-&#Wkd~e2ho$zNZ zE-j+2g+z#$NpPCXoy1&1m(H@Td}2NkCbXMb#BCayT{V-4(Zt;?BeVPG&ZbmEj3<_~ z%*!5_wzOqsc2QXabzPYRU%knHC|9EX>}?=AuX`!zK(>=$ev( z^I^<=M5A99>{-`!PkU+3`xyzRE@Y#NZM-IAop{_?R8tp<#Hl)Q+Ze8`wTq&WxD$@V zk}c{&ai_|OJ2t+oK4c@j8?#QN%HHSHE)CgwC)_~0sI8>0SS(x}300}8z8gZZc;`4( z(Z)z^)T!dBGpTFLSiqJ?r?XRaw3spC|9c$Ro4+qJJ6K#2v?Zg* zjvC$adcVGdr-o{(!gf-f6A9aK$x5<3F&>RJgqcqyuqawLzWv*Nr8$Z9ZmYM>das?@ z=rz0T?hbph&D&tz4&C;etmi-9;I^LHNR37Zthd_TlH6*Tsmt-F(ZJFJ&##{E6+ zUbn+i_^-, 2018 # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -34,9 +33,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"منابع سندي روشي است که اسناد جديد به EDMS ميان تغيير مي کند و حداقل يک منبع " -"فرم وب را قادر مي سازد تا اسناد را از يک مرورگر آپلود کند." +msgstr "منابع سندي روشي است که اسناد جديد به EDMS ميان تغيير مي کند و حداقل يک منبع فرم وب را قادر مي سازد تا اسناد را از يک مرورگر آپلود کند." #: apps.py:71 msgid "Type" @@ -281,9 +278,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " -"for IMAP over SSL." +msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." #: models/email_sources.py:49 msgid "Port" @@ -298,17 +293,10 @@ msgid "Password" msgstr "کلمه عبور" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"نام پیوست که شامل نام های نوع فراداده و جفت های ارزش است که باید به سایر " -"فایل های دانلود شده اختصاص داده شود. توجه: این پیوست باید اولین ضمیمه باشد." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -318,9 +306,7 @@ msgstr "نام دلبستگی متاداده" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره موضوع ایمیل " -"انتخاب کنید." +msgstr "نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره موضوع ایمیل انتخاب کنید." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -330,9 +316,7 @@ msgstr "نوع Metadata موضوع" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره \"ایمیل\" از " -"\"ارزش\" را انتخاب کنید." +msgstr "نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره \"ایمیل\" از \"ارزش\" را انتخاب کنید." #: models/email_sources.py:73 msgid "From metadata type" @@ -359,18 +343,14 @@ msgstr "ایمیل کردن سورسها" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"نوع Metadata موضوع \"%(metadata_type)s\" برای نوع سند معتبر نیست: " -"%(document_type)s" +msgstr "نوع Metadata موضوع \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"\"از\" نوع ابرداده \"%(metadata_type)s\" برای نوع سند معتبر نیست: " -"%(document_type)s" +msgstr "\"از\" نوع ابرداده \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -400,9 +380,7 @@ msgstr "نام دستگاه" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"حالت اسکن را انتخاب می کند (به عنوان مثال، خط، سیاه و سفید یا رنگ). اگر این " -"گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "حالت اسکن را انتخاب می کند (به عنوان مثال، خط، سیاه و سفید یا رنگ). اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:41 msgid "Mode" @@ -413,9 +391,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"وضوح تصویر اسکن شده را در DPI (نقطه در اینچ) تنظیم می کند. مقدار معمول 200 " -"است. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "وضوح تصویر اسکن شده را در DPI (نقطه در اینچ) تنظیم می کند. مقدار معمول 200 است. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:48 msgid "Resolution" @@ -425,9 +401,7 @@ msgstr "وضوح" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"منبع اسکن (مانند فیدر سند) را انتخاب می کند. اگر این گزینه توسط اسکنر شما " -"پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "منبع اسکن (مانند فیدر سند) را انتخاب می کند. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:54 msgid "Paper source" @@ -437,9 +411,7 @@ msgstr "منبع کاغذ" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"حالت فیدر سند (simplex / duplex) را انتخاب می کند. اگر این گزینه توسط اسکنر " -"شما پشتیبانی نمی شود، آن را خالی بگذارید." +msgstr "حالت فیدر سند (simplex / duplex) را انتخاب می کند. اگر این گزینه توسط اسکنر شما پشتیبانی نمی شود، آن را خالی بگذارید." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -642,11 +614,9 @@ msgstr "ورود به سیستم برای منبع: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع " -"بسازید." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع بسازید." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo index 56a041cbedbee707112e3f86a1582c9fe5ea0033..6b029d868d31e7298f0cd7d7a0735eed72c30ee5 100644 GIT binary patch delta 3022 zcmYk-4NO*59LMp$fIhq!-~&RwfaDvZs067$D_C$5^#Q1Q4)(%_ zFdOHh`q_X}%!1ZJfj|3{Q(ycR_3SIy6K{C_g+A)H@owxHZ#DqaF%1h)zb{1HU+UFs zPy?vPBy7Y~+=m;%|euTULyp=RH*hK{Y0={&V*1)m%>TU$--bBg$WeY!3rFMt1%W2pdN4(`Lj=|J%tH+zfc>!owM0!xNVWyxd%1F{ixqhpav91b$kky zvD2uIe#9EQjJj_wJ5rmniW9488&U0AQT^;e-G4Bd{A(u1xZpepbwe1HqAyW5bfIpz z>|OsIBdOm(-4{W=HB%o}VFH%pdZdY6zy`dIo3MfnvKG686h=}AkY}a78TA@=;9mS1 z)o~@$(k5Dk>ToUU`gT;xccTXU8fu^&sEK@tTADMMgO^b4}9Yp;*j10%YX~;l>Hi?2p zKFezmKncBEjSF{ z#Zh|yFH+ErK3d(6iOA%v5R0%9nS{NEBk()a65K{*$e-cbAGON|BVF1URQoxYiR)19 zUqwy$i0VNK$0=yWAD|v|3I}61W?|GlW_dUUSw1UAE!hT~fxA!xKkr@d!_8`!i5loM z{2mve);^o`P_)SyoJOIPf<}G_m5F0WUv>iZCF?@1;dSH-w0Yecnc zK@IQ#Dl_kRzkiOp{~T&b{h96;G#fS1nVIBYsh`gU&1^C9XSJNv;a*e0ffTFP%CZST@-*Xh!QJ;jGc{^%}&IKvxHMxfB;FhP4g;xiD)cZUH^`IQo z_hB5e|EvhLboHoqO{mS)ijmlc>UTeC;BVsd_%=3UFn^@G)?s{^3zzT!u3;f}V{*3p z+P#6Zsb4^v*l^y>4xEoYF_L#wGmk;No{6XjK8(s>5o!slP)oKMS@NLmqoA3DQM>#i zW?%xJr%9NDyxO)B>#-H1@eZmZUk={@9E{3P0BdmxK7glD8HwlRe-sCz`mMuMz5neL zGPrOGmC7rq-G37`;=Z}=T8+hc>N7C`1E|eag#~y7Cu27*!9mQX2kIyzG>LJaK5lH-nHgXUF?M53tmmTOvh3e=dAT9 zBqE3!=ZbsclkMz2)t)1!tH4oDXb&`~!m)vPdR$pD)*_Kuo*LgOpI__Vm$|NxW delta 3488 zcmY+_d2AGA7{~FK%hFb^mV(IPs8~Rt6iTJ7fCW?pkr=7URbaY1-EP_4DZ5h;6c(u< zh^SCJ(4r6{u^>UM{Gosb8VC_@2nI=r7%_?lVxl67$M?585S{dy&-+ei-s5@Sx4l%o zr#5*ir~R{rYa`Kz*xTNigE%{r8&}=c#>~M5*bzU&96aIs6LzQm5B9+BoznHesCqeG zg%9EooP%m-EsixNX*N>e#~kIBho@0}U%(F7rgPd1%%I*0ufaU*jRn{jC;PvzL49B6 z*O#CMumW>&4fe#%*q#2(ZVDwl_z*SXc3q6g#%oa{&c|Y$hWwZ{+|r{;Q4`&bUFhE&p+NS`NmK*hqh|UWUWb3XF2^j~h3eovLw$D)HRBT)!qZrVlh_a%$Qziz{kRm1ljOIaLJQuEgBZ4! zpaOLq8}NDDf@-*=S9&v*qZ*uudOjPK`XFk+^{9b1peFJRYKdOKLfnOVKlwFDLq}1W{tjs` zY0gv7NINrKjl4JNg+ZtRjKHBd8kLz^9D$p#6hFd6ZO96L1eQ==MysjKi8oSj%Mp_K z$d8%KZ8+BAO*;Qg6bAF)0P4eYcq?8&l46Q1WA4Lykja`YI1u-smf%}dhA#THxjwzy zGf^4KL%lx|2Vf=Y{gv1$NnxG;;3d?IUqyAa6K}x7I0%2lBFy6<+rdmiEm;*#z=u!+ z-|IjB9ra#krmukxz~eX?wf4EJPm*^`e+uO|5p_;iqcX7(>CyXGC#hhO1X z{1w~d$N{V;mZCP@Jk)#hQ3G6s%FHJJ_q$NvzlU1Vi^#S!xdX|+W;%=oQtC@kGaHY* zV;(>?xD1uT^?rRDW>9|@`7!&sX<%nj13Hgi;vaYwe!==F zY6I%H>_9cN$M+DbfzMH=i_)^4sjeOV@KSFYUdD+#M7t@ z^yXuLY?b>0hvk-2+UJN1+i2Wt_O%9F-a9J+BC_= zt(iT0)u!s{+d5cA+(NjGpJx_TPN%epxO_c9LCZFSc+7uTgIX$0npIC-3%Ey#uIXy( zFD!{Q4-=XGvxY`HYgF=SzouQLYi^pIf2>(o?m|i zLj;ExnQ?N%SXH5e~7UWyaO9jHDfPEVtV7Y8=b+p`vhBM~d$#ymS5 zOQhb2I-VW0J=^jY*Ev>OL3)P!mE%5$s6zTBu9s-_R`Kff+$Ihebz;~m9A3rnrx z#bv`w1{ZQ=O|cW+(2BSnOGIqXjh9(>##@_%t8q#)o% z$F{uP$IebpVPf?OLfJsn7ZA4p}$(b9AwKnrW4J4d6IrTHt+RR+*Q|WP19|otpfqJb$!U{+0+_=XZ w>C9MVR>1KX#s9|?bQUrcw<;12G1G9|NiAUOb}ycu01uc$+$m_u8CaYBFQ3ocr2qf` diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 51c69ca98b..87c3683f79 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Bruno CAPELETO , 2016 # Christophe CHAUVET , 2015,2017-2018 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-09 15:18+0000\n" -"Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -38,10 +37,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Les sources de documents sont les manières par lesquelles les nouveaux " -"documents seront intégrés dans Mayan EDMS ; créez au moins un formulaire web " -"pour pouvoir télécharger des documents depuis le navigateur." +msgstr "Les sources de documents sont les manières par lesquelles les nouveaux documents seront intégrés dans Mayan EDMS ; créez au moins un formulaire web pour pouvoir télécharger des documents depuis le navigateur." #: apps.py:71 msgid "Type" @@ -79,9 +75,7 @@ msgstr "Décompresser les fichiers" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " -"individuels" +msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" #: forms.py:68 views.py:485 msgid "Staging file" @@ -245,9 +239,7 @@ msgstr "Intervalle" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Assigner un type de document aux documents transférés à partir de cette " -"source." +msgstr "Assigner un type de document aux documents transférés à partir de cette source." #: models/base.py:182 msgid "Document type" @@ -290,9 +282,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 " -"pour l'IMAP, 993 pour l'IMAP over SSL." +msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." #: models/email_sources.py:49 msgid "Port" @@ -307,18 +297,10 @@ msgid "Password" msgstr "Mot de passe" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Le nom de la pièce jointe qui contiendra les couples nom/valeur des types de " -"métadonnées qui seront assignés au reste des documents importés. Note : " -"cette pièce jointe devra obligatoirement être la première." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -328,9 +310,7 @@ msgstr "Nom de la pièce jointe de métadonnées" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Sélectionner un type de métadonnée valide pour le type de document " -"sélectionné, dans lequel enregistrer le sujet du courriel." +msgstr "Sélectionner un type de métadonnée valide pour le type de document sélectionné, dans lequel enregistrer le sujet du courriel." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -340,9 +320,7 @@ msgstr "Type de métadonnée du sujet" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Sélectionner un type de métadonnée valide pour le type de document " -"sélectionné, dans lequel enregistrer l'expéditeur du courriel." +msgstr "Sélectionner un type de métadonnée valide pour le type de document sélectionné, dans lequel enregistrer l'expéditeur du courriel." #: models/email_sources.py:73 msgid "From metadata type" @@ -369,18 +347,14 @@ msgstr "Sources de courriel" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas valide pour " -"le document de type : %(document_type)s" +msgstr "Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Le type de métadonnée de l'expéditeur \"%(metadata_type)s\" n'est pas valide " -"pour le document de type : %(document_type)s" +msgstr "Le type de métadonnée de l'expéditeur \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -410,10 +384,7 @@ msgstr "Nom du périphérique" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Sélectionne le mode de balayage (par exemple, lineart, monochrome ou " -"couleur). Si cette option n'est pas prise en charge par votre scanner, " -"laissez-la vierge." +msgstr "Sélectionne le mode de balayage (par exemple, lineart, monochrome ou couleur). Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." #: models/scanner_sources.py:41 msgid "Mode" @@ -424,10 +395,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Définit la résolution de l'image scannée en PPP (points par pouce). La " -"valeur typique est 200. Si cette option n'est pas prise en charge par votre " -"scanner, laissez-la vierge." +msgstr "Définit la résolution de l'image scannée en PPP (points par pouce). La valeur typique est 200. Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." #: models/scanner_sources.py:48 msgid "Resolution" @@ -437,9 +405,7 @@ msgstr "Résolution" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Sélectionne la source d'analyse (comme un chargeur de documents). Si cette " -"option n'est pas prise en charge par votre scanner, laissez-la vierge." +msgstr "Sélectionne la source d'analyse (comme un chargeur de documents). Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." #: models/scanner_sources.py:54 msgid "Paper source" @@ -449,9 +415,7 @@ msgstr "Source du papier" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Sélectionne le mode d'alimentation du document (recto / recto-verso). Si " -"cette option n'est pas prise en charge par votre scanner, laissez-la vierge." +msgstr "Sélectionne le mode d'alimentation du document (recto / recto-verso). Si cette option n'est pas prise en charge par votre scanner, laissez-la vierge." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -522,8 +486,7 @@ msgstr "Impossible d'obtenir la liste des fichiers en pré-validation :%s" #: models/watch_folder_sources.py:34 msgid "Server side filesystem path to scan for files." -msgstr "" -"Chemin du système de fichiers côté serveur pour rechercher des fichiers." +msgstr "Chemin du système de fichiers côté serveur pour rechercher des fichiers." #: models/watch_folder_sources.py:39 msgid "" @@ -593,9 +556,7 @@ msgstr "Transférer le document" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Chemin d'accès vers le programme scanimage utilisé pour contrôler les " -"scanners d'image." +msgstr "Chemin d'accès vers le programme scanimage utilisé pour contrôler les scanners d'image." #: settings.py:22 msgid "" @@ -626,9 +587,7 @@ msgstr "Déposez vos fichiers ou cliquez pour téléverser des fichiers." #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." -msgstr "" -"Votre navigateur ne prend pas en charge le téléversement de fichiers par " -"glisser-déposer." +msgstr "Votre navigateur ne prend pas en charge le téléversement de fichiers par glisser-déposer." #: templates/sources/upload_multiform_subtemplate.html:88 msgid "Please use the fallback form below to upload your files." @@ -659,11 +618,9 @@ msgstr "Entrées du journal pour la source : %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Aucune source interactive d'import de documents n'a été définie ou activée, " -"créez-en une avant de continuer." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Aucune source interactive d'import de documents n'a été définie ou activée, créez-en une avant de continuer." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -681,9 +638,7 @@ msgstr "Numériser" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "" -"Tâche en erreur d'exécution lors du téléversement; %(exception)s, " -"%(exception_class)s" +msgstr "Tâche en erreur d'exécution lors du téléversement; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo index 0eba7026eee04544f32ff654bcad19b34d38e8bb..558a54ea945d3560575672f05415850f3ed78da4 100644 GIT binary patch delta 23 ecmaDV@Kj*KD;6#@T_Z~c12Zclqs?Df3Yh_A5eK9I delta 23 ecmaDV@Kj*KD;6$OT?11E12Zclv&~;v3Yh_9&, 2014 # molnars , 2017 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -615,8 +614,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo index 5be790af59c863e0b4a6a25c8891e13d50a66e16..f78fa3a24dd69bd9c8170fb8f50448a01b001b2d 100644 GIT binary patch delta 246 zcmWm8u?qoV7{~GFI9$Rh$soDGAa%tJidEU!$bd4KPDdFpn~{{sV!~iLe}u(gvDjqr zXZXJL_I&DnfBl|!Ywpd>*B@#khAt8nk!eIEg)=nJ$0Dw=glA0R16BTw9QiQv_`@>l zJZ8~Gm2Y7TJ6OOTs=j4Z+QM!*aG{Ehn7|We@P_ImcT~A2_VI-ktkK%QL2%Kop?KYP f8dkO5be!E#&zW6!JnAYaJ+Q#R+2$-27|=lEiovI>5NLTP{*KCXE0g}%1nyI#AJ}cN3a+y z7MqFh!T+hJ`&V~Y*Zpjx>*(q`A7~;$UBoXUwofF24hC_C8C+l%j~K=~s{9Li@@Ay) zgE{^`xCW eMy*&Xo27cQTG, 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-12 17:43+0000\n" -"Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -71,9 +70,7 @@ msgstr "Kembangkan berkas-berkas terkompresi" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" -"dokumen individual" +msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" #: forms.py:68 views.py:485 msgid "Staging file" @@ -616,8 +613,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo index 223d40f611c2464a16fc6d48b6fc7847e54e451c..6aa929bbada64ccc136676507bb077accc896e84 100644 GIT binary patch delta 2240 zcmXxkZ){Ul7{~EPWNXJJh04HL=Ze^&Y-Od)#mzV!vpPFK7*iQaXScF3Sm^AgQG>Z} z3=w4!(?E292_vGA7=slfF(weh42mR+29XeBKoVl2@eLT>7{9;U>q(z}&ON>Noag+x zy_EQ9h4X80<{qOA6L%5YZ#7fHrBc2qu`;t1F2f-1_B@31x&8v@;Sb*RWz?fL(T_IE ztQE?TChNcw>?-QmdMZ8|Qg{arUi&Z`#~iccRQA&_g|}gUMe%_baVFPqVkM4a01qJ_EAXZJPogGp4r}l{ zY63S<2?e=H{VYNC(|`O_w?Z2oQ`DPar zdl=_%y$ZF&Dbzq2yc0)IEBH2QoIU6$^9d?)614?KQ5}4POv28f9z2g*@HgaRoh*mi zH=q*Dpc2cX26zQ^-|I-OwhK94Hi3iqL4ft|qf$!RI($Q@J>7xY!*O&ILv?TzmC%={ zj!z?f*-yyFe&?$JucMYaGS{pZA3`O%57pm?csG7Bm-SbsXKC1o(|9j7u-=+cH?F{5 zRQn|Iv2Xd(OfRB3x`Ik<2K%E#1E}AtQ3Kav6l1s)Qy9l_hf3xa4iOH}5Fza<+~s)~ zHSkHS#jB`8R>6_hO4TDd+j4Bj1ZpLAqGmdQx^EJd&=J(({0tYObB>B;@Hgtl07q6c zpO5NbA?m^VQ4hvZ39LpPs%=<@JH6kJqY{}$ZDAz`imq)5?!`9LmR-Pm7~if@(E#O4 zTOH3sCTWeRJx+S|pq6qoF2)?vflZ(i{Tj8Er%{Q0hgzAds09AOB+lkX-PeP0z5gjH zn(@1+jQ4vU^V+Adh4yJ=m#l(ikYQ9pji|kEMJ8>X-gQ6fw2zMw&8dPF^sDWR`L3|B2;bqiTcks8W z=LgZzl8<-|yHQL2KI)I-V^qhVdrl!AyTDfy-au_tlwLJJJ1Ws5s2LYvb4c;V;Nb z=8n~a5u%eAwEPTTFrwU5I3ezQpFvWz^@RRTRC@ExzL4`cwWo<;LNnY&xHtEh^hWZHQQxkNE2%TdAq&TnrFvbwSael1dwq%)jKXi9AKET}_llMcjWB zZTw0?2PBa{;SW`5WjUhm;pb?%M*=LB|I;6;-at)fam`Jbp)D~1|V zj+HnEtB_k}EtXk<{jnCmkJQUsk6xG3((fN0%fqukM_zRB1tEhy= zUTe(lSdU6HfwOQc>iKuD(&UXfNna65CNFPNN12@dn(6s^A{fIIm+~nIEJfkD`{~1N;cTLUpv0-kFrygX-V_ zuE(RuBW5C_>iSev!cC|ITTlZnK|Qw&$=!4y+syc?f09Oq3tjjvY7^dZeQ|BqqSmq# zm0*bK;4xG}PoX;Ah2&!1K)NvR;WRvjD)~RyiNh$P5>27{+pPNENF&b$W%@F<8R@=@`!l}HPgeWevY9MJB>>8e02YJ)W8?90k2_JF>K7!m_efxw+}Mr z1?=X0G+VX`w?^(n4SWRa@HA?(T}J&1s@Z8w(oDhmI1^QgEvT73iF)pNRKmMan>7Cl zjmb1VM9tuP)Pq-1GcRRBsDnz>i{nu*PDUkg7ix30V?Az(?!Sgg)l}h& z*oZ7y-khQ_g$v)H2DpUkcrd+c?P^eKJUenRs+4Q+W^_>RKZ#28Fls5^MLyGGTsrnKe~Plo4I}*Sw?d?as)e83Duz1z5ywoX^zfU zpmuvFD#1AF`3*Rh@y$jWC-G_2gDd#k({5fJ*^O&B--Oz9pQAcBk4pGgROS9g{apV= z&A62HRHEZh{nld=r=g3xFi)5(e5r#8)Lo^o}cP}TV%8nwhyVs7srLq^qh)6&6CEX-HMSDhXt z^tYnpk=|R&s`K~IT1}*gGQuNtOeeHd`pGUNbkq@Ri5{Yb=pYso`jspvW)jPY{(~F~ zRZ@X;P)zdxks!JVj=I91m3FnNVToG^m7ZT+VVA3V@!p@yYAQC+T2HL(9aCOk>(kPq zeUT(q=!8RmPCDih_w~BvlWOm$wLq6RYKj#8S+ww~r8dZ--nYuDtJ-Msn<)GU*vf@1 z0j9I}Yb+oh@blgj*9G*7x!7rKPR28X9NW z#-`>OP4$f&LzgO=sUTWa==, 2014 # Marco Camplese , 2016-2017 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -35,9 +34,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan " -"EDMS, crea almeno una modulo web per poter caricare documenti da un browser." +msgstr "Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan EDMS, crea almeno una modulo web per poter caricare documenti da un browser." #: apps.py:71 msgid "Type" @@ -282,9 +279,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 " -"per IMAP su SSL." +msgstr "Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 per IMAP su SSL." #: models/email_sources.py:49 msgid "Port" @@ -299,18 +294,10 @@ msgid "Password" msgstr "Password" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Nome degli allegati che possono contenere i nomi dei tipi metadati e le " -"coppie di valori che saranno assegnate al resto degli allegati caricati. " -"Nota: Questo allegato sarà il primo degli allegati." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -320,9 +307,7 @@ msgstr "Nome allegato metadati" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Selezionare il tipo metadato valido per il documento selezionato dove " -"impostare l'oggetto della mail." +msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare l'oggetto della mail." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -332,9 +317,7 @@ msgstr "Tipo metadato oggetto" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Selezionare il tipo metadato valido per il documento selezionato dove " -"impostare il mittente della mail." +msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare il mittente della mail." #: models/email_sources.py:73 msgid "From metadata type" @@ -361,18 +344,14 @@ msgstr "Email sorgenti" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo " -"documento: %(document_type)s" +msgstr "Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo " -"documento: %(document_type)s" +msgstr "Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -462,8 +441,7 @@ msgstr "Percorso cartella" #: models/staging_folder_sources.py:45 msgid "Width value to be passed to the converter backend." -msgstr "" -"valore della larghezza da passare per le operazioni di conversione in backend" +msgstr "valore della larghezza da passare per le operazioni di conversione in backend" #: models/staging_folder_sources.py:46 msgid "Preview width" @@ -471,8 +449,7 @@ msgstr "Larghezza anteprima" #: models/staging_folder_sources.py:50 msgid "Height value to be passed to the converter backend." -msgstr "" -"valore dell'altezza da passare per le operazioni di conversione in backend" +msgstr "valore dell'altezza da passare per le operazioni di conversione in backend" #: models/staging_folder_sources.py:51 msgid "Preview height" @@ -638,11 +615,9 @@ msgstr "Log per la sorgente: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Nessuna fonte interattiva dei documenti è stata definita o non ne sono state " -"attivate." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nessuna fonte interattiva dei documenti è stata definita o non ne sono state attivate." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo index 4d324cd65582f64711f7048cd6964fa395bbc3f8..8151037e5fd340cc2309b63003576d16847ce4dc 100644 GIT binary patch delta 3581 zcmaLZdr(wm7{~E2%Mm%&eyA-c)8feSf>BX8NZy^X%t+&)I#?`##Tm4xC*2 z)#C8U9?o{dv6Hxn=pS#)r&yT82gmLdW9HzKn23p~#`M5++y0nIe=zpKNp^pM-M zT#Wrt*RMqVexlux^rliMKkd1@rk3;Tl zmSG0AAzw8+a0~85Eocg9(>Sv+4}+M%{mm8{PTYlB@ovHU1B%apGBJIJzPljAgP>0~MlfI04J?delH`a3HQj zZI1(}njS*kFqhFa&T!-&W-4mW)Zrj(L@jI=DnpT;Ut?^Vil-yuS8{VJPya}a4fDzjr&0_^1qPADNbmh$t;7#n0jP` znx&{Ou0ajF0X5)u)XMhY4D3Md6&HhOB4bd$pNPujOw{k|QNO>{KEEPNBaRbos2@Iv zT46ihgj;bw#MR*EFpjObAXG+(LQ7apUs^v9Ug0-mMwP7)CMXF|w;#~X!oepD0UlPmc z1a>g@4V!5+IA>~58CZfh;tK4KCs3(#xMRCG8CAn;QPgkK;&u)xPe? zv)>!2%~yz3cmwMBUys^kkE2S|iJka{-Cvzg{@t9|l+Q-OmrxUNGMY-_LiUa6i5jpR zRlD)FGcbw%0@S8!!kM@Ym8sv6#hc86SO$h-JpCF}3Fj4%e{Grfd^i@vEi@+6=(I0%Bachz zXQOs?J8A+Q=)%`+-$AYTGfctnP^CME4cLXWOu7Z`wC^4 z`ae%YGkgiP>krud_fQi!fob?P#_{~0#SHrA2gTlm=@qf-ZcOKVDKaNB8a2Td)Sg+7 z+Cy)mHtA`+!2Qi|c7kd+jA<$Z<517*baY|>mCD7)lVe^(W#k7OkAL7bIEuFvRWxm= zr=}BmcbN~7RGV|yj4qy0H!j0!rG6_7&HQOpt@oo=_%`O_X}lU!Sq4or3#Z`*Bq7na zBu`qjEOV^MNja4Z=;@X-2_4&Gm_}PK&L*@BEltzZOlqv1Njd3y{Xax#E?bCY*3qQm z>J_wfXo)&B;}&8o!5)hKr{czXLg~1f7)DSgvzAazZY8cIRukK-$*!zwA1(41{YMIn zp9rbJv4gl?4UW5sdkOt9)-G8@EFpAkAa)YU$vswwtHAN7^|>n}d?)=rL>EHOMj@f2 zop_MAUmXq=<*H~aR`5L93yIqa{@6s1QG7lSYyRg`8>p2SL)=6(5u=G4G*vd%zsEdU z0b(U_2ce^YSWK)ZmJ*K;dK8KY9sOgNNjQs`YWL^bZnEA@zP#Hydbbdpt@xDk@J3qw zh-zX4VG$1#I@s~%wrDH%F%fzZBZ=k2eS|hzEs;v-SVOp?Eo1J&Rd!qGDQU3#L2To% z?Taa!6C;^fq2!W^qOwYNNkvszSwRU$(j;#%RCHay+Z0^n4fz9A?rHw{zCg&2L2sbJ zA35GH$uYn)#qV)9`a<41Z>Yr`YG@9+J-K=I3Gdv{l4f6i(Bp3MwpxYdy{**B%*eRh znmDH?H|VjR&D$SsM3&_L86O#3GP{d&sy`62_LgN@PnC5zJxzX3q_Mo+*{8u5Y6-OJ z)7|K8_L-^wp0Iiic{%HUZW&3ftaQX~H>2wN48B?CU(nL%YYP1{xyZbs6^`sF{?>z5 Vz#r214d$QT!BxS?Gs8+9e**_7qT&Dm delta 4034 zcmaLZdvH`|8OQNA5N-+g6hcAZglocOLkO1;F69!Sia=;fg#v+-WRsjEyPIauCKjaI zv=yoaTRcKrKvJsWC>`x|K~T%I9X4KSp`*p=h!T{U+LQeG1}c&fLeJYDieE93+hDmdj^-|E2#cILG?3&RVFhlqClUf2-VRd z)PS3?6zfnO9mWuLqK?N!)SmthHQ-!&S3hf!G0YCkY%R{Ez8kf$6e>gKN05K*=_ML8 zqsyoXUBl7%0c!6CkT*>r5B0lIffj1Tg~9jBP!n5)uj2+(|9Q+#nY;N5ArZR zp1}~Riev5{=x>2thXQFPb zLegns$iA6Q+>WO)JBv2Xta3Qo@+UM2`O3^dWnc|%!%CclKR{*fZPfAYMr~R_vcUgA zJ!&HRP{-~lYHNOojd&I{z{Cmu3YMc*v>x@lZKw&=;Y@5nW$+lz#tXOr%|v64XR!t7 zP)+`U=_w_vCi@TKy@ByS5BaT0A^*%fe9XXqqXwQfg+Z|tOYktRz&BBu96HsQby$GP zWDBw@W)Jc*Nt$m_=tsk8?2G46sY)Z;Z{9*p;5sS;Lkj(shENkP3tWl1{~pwRn~^8L zB#_0M{ix^gCAGZnIcqwt5I9GMKZo|DCA%}>d-xkoA6~+s&dIU*))Zy46MgK7)3p{ zF6zv@f&K6b4#ann6q_5U`?EP1+Jfo05SL+c0EOKYbo%$AZaj-&>_SaoIwwg3+>Khn z7Sx1eI3IVS_WI?(^VpyICCp3+b^p7_E5O_g>cflKe@$RA%a+A~3s3{EKy|buXm{{D z^*Aa6^O^M!T#PGmEv`i`X#W%LqW)JLj}cC&CbA!M@%a+%KZO@*$gCU(QSUguEzIpBNj7C2)~Sad`=-RLGv3_s{f8Hn7zn<{1T}4L#PFuz~Oib zwZNZa5&j-OhkX|F7SySzq;L-nPa+w~ye@f!Gf%*FZ*k6;1==8Wy_wMUeCCq}Fi`8? zMravYo2IELZ1E1{j2Tu%>Fb0h^G#y6cP^)RgC2ZcTB5FDL>qC8;IwA`Ra~vDS z=j%{v>BzQ$Idf;0mRKdT%jYccUYn3#v^L$*N-y_?owjrblV23EsfS$Zb~L`UK4Lq~ zp_*7^N$SrNa720g&+1wRyyHkrzsJ!t!ON6Cn&{dSWSu6bca>lbu#{`vH$xU$4W%4 zwzSvkrcYKUtQIYg+msonDQ>km;jZK9Gfu1PWWGy#jZQdXHHRA$eAS%ps7-sWt+opN zHZuV#A&c4UOrMO9^{(Si_nua5n{*-Q, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-31 12:49+0000\n" -"Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -34,10 +32,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Dokumentu avoti ir veids, kādā jaunie dokumenti tiek piegādāti Mayan EDMS, " -"izveidojiet vismaz tīmekļa veidlapas avotu, lai varētu augšupielādēt " -"dokumentus no pārlūkprogrammas." +msgstr "Dokumentu avoti ir veids, kādā jaunie dokumenti tiek piegādāti Mayan EDMS, izveidojiet vismaz tīmekļa veidlapas avotu, lai varētu augšupielādēt dokumentus no pārlūkprogrammas." #: apps.py:71 msgid "Type" @@ -63,9 +58,7 @@ msgstr "Ziņojums" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "" -"Lietderība, ko nodrošina SANE pakete. Izmanto, lai kontrolētu skeneri un " -"iegūtu skenētā dokumenta attēlu." +msgstr "Lietderība, ko nodrošina SANE pakete. Izmanto, lai kontrolētu skeneri un iegūtu skenētā dokumenta attēlu." #: forms.py:30 msgid "Comment" @@ -193,11 +186,11 @@ msgstr "Tīmekļa veidlapa" #: literals.py:63 models/staging_folder_sources.py:69 msgid "Staging folder" -msgstr "Pakāpju mape" +msgstr "Pieturvietu mape" #: literals.py:64 models/watch_folder_sources.py:48 msgid "Watch folder" -msgstr "Skatīties mapi" +msgstr "Novērot mapi" #: literals.py:65 msgid "POP3 email" @@ -241,8 +234,7 @@ msgstr "Intervāls" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Pievienojiet dokumenta veidu dokumentiem, kas augšupielādēti no šī avota." +msgstr "Pievienojiet dokumenta veidu dokumentiem, kas augšupielādēti no šī avota." #: models/base.py:182 msgid "Document type" @@ -285,12 +277,11 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Tipiskas izvēles ir 110 POP3, 995 POP3 pār SSL, 143 IMAP, 993 IMAP pār SSL." +msgstr "Tipiskas izvēles ir 110 POP3, 995 POP3 pār SSL, 143 IMAP, 993 IMAP pār SSL." #: models/email_sources.py:49 msgid "Port" -msgstr "Osta" +msgstr "Ports" #: models/email_sources.py:51 msgid "Username" @@ -301,18 +292,10 @@ msgid "Password" msgstr "Parole" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Pielikuma nosaukums, kurā būs metadatu tipa nosaukumi un vērtību pāri, kas " -"tiks piešķirti pārējiem lejupielādētajiem pielikumiem. Piezīme: šim " -"pielikumam jābūt pirmajam pielikumam." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -322,9 +305,7 @@ msgstr "Metadatu pielikuma nosaukums" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta " -"objekta saglabāšana." +msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta objekta saglabāšana." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -334,9 +315,7 @@ msgstr "Tēmas metadatu veids" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta " -""no" vērtības." +msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta \"no\" vērtības." #: models/email_sources.py:73 msgid "From metadata type" @@ -363,18 +342,14 @@ msgstr "E-pasta avoti" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Objekta metadatu tips "%(metadata_type)s" nav derīgs dokumenta " -"tipam: %(document_type)s" +msgstr "Objekta metadatu tips \"%(metadata_type)s\" nav derīgs dokumenta tipam: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -""No" metadatu tips "%(metadata_type)s" nav derīgs " -"dokumenta tipam: %(document_type)s" +msgstr "\"No\" metadatu tips \"%(metadata_type)s\" nav derīgs dokumenta tipam: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -404,9 +379,7 @@ msgstr "Ierīces nosaukums" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Atlasa skenēšanas režīmu (piem., Lineāru, melnbaltu vai krāsu). Ja skeneris " -"šo iespēju neatbalsta, atstājiet to tukšu." +msgstr "Atlasa skenēšanas režīmu (piem., Lineāru, melnbaltu vai krāsu). Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:41 msgid "Mode" @@ -417,9 +390,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Iestata skenētā attēla izšķirtspēju DPI (punkti uz collu). Tipiskā vērtība " -"ir 200. Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." +msgstr "Iestata skenētā attēla izšķirtspēju DPI (punkti uz collu). Tipiskā vērtība ir 200. Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:48 msgid "Resolution" @@ -429,9 +400,7 @@ msgstr "Izšķirtspēja" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Atlasa skenēšanas avotu (piemēram, dokumentu padevēju). Ja skeneris šo " -"iespēju neatbalsta, atstājiet to tukšu." +msgstr "Atlasa skenēšanas avotu (piemēram, dokumentu padevēju). Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:54 msgid "Paper source" @@ -441,9 +410,7 @@ msgstr "Papīra avots" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Atlasa dokumentu padevēja režīmu (vienkāršais / duplekss). Ja skeneris šo " -"iespēju neatbalsta, atstājiet to tukšu." +msgstr "Atlasa dokumentu padevēja režīmu (vienkāršais / duplekss). Ja skeneris šo iespēju neatbalsta, atstājiet to tukšu." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -500,7 +467,7 @@ msgstr "Dzēst pēc augšupielādes" #: models/staging_folder_sources.py:70 msgid "Staging folders" -msgstr "Pakāpju mapes" +msgstr "Pieturvietu mapes" #: models/staging_folder_sources.py:82 #, python-format @@ -520,9 +487,7 @@ msgstr "Servera puses failu sistēmas ceļš failu skenēšanai." msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "" -"Ja tiek pārbaudīts, mapes ceļš tiks skenēts ne tikai failiem, bet arī tās " -"apakšdirektorijām." +msgstr "Ja tiek pārbaudīts, mapes ceļš tiks skenēts ne tikai failiem, bet arī tās apakšdirektorijām." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -530,7 +495,7 @@ msgstr "Iekļaut apakšdirektorijas?" #: models/watch_folder_sources.py:49 msgid "Watch folders" -msgstr "Skatiet mapes" +msgstr "Novērotās mapes" #: models/webform_sources.py:43 msgid "Web forms" @@ -586,17 +551,13 @@ msgstr "Augšupielādējiet dokumentu" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Faila ceļš uz skenēšanas programmu, ko izmanto, lai kontrolētu attēlu " -"skenerus." +msgstr "Faila ceļš uz skenēšanas programmu, ko izmanto, lai kontrolētu attēlu skenerus." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "" -"Ceļš uz glabāšanas apakšklasi, ko var izmantot, saglabājot kešatmiņā " -"saglabātos attēlu failus." +msgstr "Ceļš uz glabāšanas apakšklasi, ko var izmantot, saglabājot kešatmiņā saglabātos attēlu failus." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." @@ -621,8 +582,7 @@ msgstr "Ielādējiet failus vai noklikšķiniet šeit, lai augšupielādētu fai #: templates/sources/upload_multiform_subtemplate.html:87 msgid "Your browser does not support drag and drop file uploads." -msgstr "" -"Jūsu pārlūkprogramma neatbalsta vilkšanas un nomešanas failu augšupielādes." +msgstr "Jūsu pārlūkprogramma neatbalsta vilkšanas un nomešanas failu augšupielādes." #: templates/sources/upload_multiform_subtemplate.html:88 msgid "Please use the fallback form below to upload your files." @@ -640,9 +600,7 @@ msgstr "Serveris atbildēja ar {{statusCode}} kodu." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "" -"Šeit tiks uzskaitītas visas avota lietošanas laikā radušās kļūdas, lai " -"palīdzētu atkļūdot." +msgstr "Šeit tiks uzskaitītas visas avota lietošanas laikā radušās kļūdas, lai palīdzētu atkļūdot." #: views.py:68 msgid "No log entries available" @@ -655,11 +613,9 @@ msgstr "Loga ieraksti avotiem: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Neviens interaktīvs dokumentu avots nav definēts vai neviens no tiem nav " -"iespējots, izveidojiet to pirms turpināšanas." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Neviens interaktīvs dokumentu avots nav definēts vai neviens no tiem nav iespējots, izveidojiet to pirms turpināšanas." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -677,9 +633,7 @@ msgstr "Skenēšana" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "" -"Kļūda, izpildot dokumenta augšupielādes uzdevumu; %(exception)s, " -"%(exception_class)s" +msgstr "Kļūda, izpildot dokumenta augšupielādes uzdevumu; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." @@ -688,19 +642,16 @@ msgstr "Jauns dokuments tiek rindā augšupielādēts un drīz būs pieejams." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "" -"Augšupielādējiet "%(document_type)s" tipa dokumentu no avota: " -"%(source)s" +msgstr "Augšupielādējiet \"%(document_type)s\" tipa dokumentu no avota: %(source)s" #: views.py:378 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "Dokuments "%s" ir bloķēts jaunu versiju augšupielādei." +msgstr "Dokuments \"%s\" ir bloķēts jaunu versiju augšupielādei." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "" -"Jauna dokumenta versija tiek augšupielādēta rindā un būs pieejama drīz." +msgstr "Jauna dokumenta versija tiek augšupielādēta rindā un būs pieejama drīz." #: views.py:472 #, python-format @@ -710,7 +661,7 @@ msgstr "Augšupielādējiet jaunu versiju no avota: %s" #: views.py:486 #, python-format msgid "Delete staging file \"%s\"?" -msgstr "Vai izdzēst failu "%s"?" +msgstr "Vai izdzēst failu \"%s\"?" #: views.py:507 msgid "" @@ -718,16 +669,12 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "" -"Tas veiks avota pārbaudes kodu pat tad, ja avots nav iespējots. Avoti, kas " -"dzēš saturu pēc lejupielādes, to nedarīs, kamēr tie tiks pārbaudīti. " -"Pārbaudes laikā pārbaudiet avota kļūdas žurnālu. Veiksmīgs tests notīra " -"kļūdas žurnālu." +msgstr "Tas veiks avota pārbaudes kodu pat tad, ja avots nav iespējots. Avoti, kas dzēš saturu pēc lejupielādes, to nedarīs, kamēr tie tiks pārbaudīti. Pārbaudes laikā pārbaudiet avota kļūdas žurnālu. Veiksmīgs tests notīra kļūdas žurnālu." #: views.py:513 #, python-format msgid "Trigger check for source \"%s\"?" -msgstr "Izmantot avota "%s" pārbaudi?" +msgstr "Izmantot avota \"%s\" pārbaudi?" #: views.py:530 msgid "Source check queued." @@ -754,11 +701,7 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "" -"Avoti nodrošina līdzekļus dokumentu augšupielādēšanai. Daži avoti, piemēram, " -"tīmekļa veidlapa, ir interaktīvi un pieprasa, lai lietotājs to izmantotu. " -"Citi, piemēram, e-pasta avoti, ir automātiski un darbojas fonā bez lietotāja " -"iejaukšanās." +msgstr "Avoti nodrošina līdzekļus dokumentu augšupielādēšanai. Daži avoti, piemēram, tīmekļa veidlapa, ir interaktīvi un pieprasa, lai lietotājs to izmantotu. Citi, piemēram, e-pasta avoti, ir automātiski un darbojas fonā bez lietotāja iejaukšanās." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo index 53955fc3793483b466a03f1b23851440eab76d2a..f8a970c0a08785af8d1dfed9ca592a84f37db59c 100644 GIT binary patch delta 23 ecmaDZ_grp+BPW-cu92mJfti(&(PnQ>88!e|>;@_T delta 23 ecmaDZ_grp+BPW-su7Rn7fti(&*=BD}88!e|s|F_k diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po index cd64086bab..5ef31aed03 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Lucas Weel , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -72,8 +71,7 @@ msgstr "Uitpakken gecomprimeerde bestanden" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" #: forms.py:68 views.py:485 msgid "Staging file" @@ -237,8 +235,7 @@ msgstr "" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." +msgstr "Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." #: models/base.py:182 msgid "Document type" @@ -481,9 +478,7 @@ msgstr "" #: models/staging_folder_sources.py:98 #, python-format msgid "Unable get list of staging files: %s" -msgstr "" -"Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. " -"Foutmelding: %s" +msgstr "Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. Foutmelding: %s" #: models/watch_folder_sources.py:34 msgid "Server side filesystem path to scan for files." @@ -619,8 +614,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo index cc4359a198afb6d6f69597c5b35a7033ecb466ec..01846a6dbfb12b6db00896fa06e511c68ed7356a 100644 GIT binary patch delta 23 ecmZ1^wn%KlB{nWIT_Z~c12Zclqs@2N+*kluOa{~d delta 23 ecmZ1^wn%KlB{nWoT?11E12Zclv(0zd+*klu3kJ~u diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 7773c8be1d..71e423e808 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # mic , 2012-2013 # Wojciech Warczakowski , 2016 @@ -11,17 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -618,8 +615,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo index e2b0ed6a5f1c529dadacc841877dda601f418761..69519be409a687b383ae338bdfffc701f6b80926 100644 GIT binary patch delta 23 ecmZ24yk2-iAuE@eu92mJfti(&(dKGa6BYnbd, 2011 # Manuela Silva , 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -73,9 +72,7 @@ msgstr "Expandir ficheiros comprimidos" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Enviar os ficheiros contidos num ficheiro comprimido como documentos " -"individuais" +msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" #: forms.py:68 views.py:485 msgid "Staging file" @@ -618,8 +615,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo index 179040029c142d729bd0decc1746b7e60f8b7103..246c2094904603113f3a1986a3e81de5d13b3701 100644 GIT binary patch delta 2240 zcmXxlZERCj9LMoLxUMY-WtE{=yH!VrZW-+cPPVB5c~Y3@MpZ!8*{uV|hMnCOd7-(Q z7&YLGp@EnoKCq|}vuM(2SbX8kKx3Fhfa!&0gXlhU!dRLdOg{{pL0*|JrDnL zZg+n5nzU(@J^SJ&9=i-;{^;y)Tm(hnd z!|YD*BTaTUda$*iV;iY>X-MLAxD`X_U>Nti-;bd>_|&~Vh8pN3UW2FcTD*XoQ1MK& zr5Hj@G=aBb59CxL+#-ZPE8Ee!6DRy z4x>6giu7e)BY*Z2A2Iw3mFj4TSvxkNCb}Qh-&y@s}sI!qk-M_!^v1qB3z9b*g_rW#|%W0rP0Q5zA2hEJJNk3pQdO7U6qXtM~r{ zDoV{+)B_igV_^TH_O66kEyobD&DMrmK_BWZdDd;;g&O#P`~4@Vfli|O{T6j5enDmO z5A^8$pGiJ-noC?GxSi`5YQSOC1V>%RPy-)zJ%-A_2_y;j8*0z}G-h!Y>TErY%Ea%e z=L1|g)UA|?wqP-8W{t@9*#^|WJ*Y$V1TtxR9&f`D_xd~R;rb#fW1Z!Nt=NI;ZxEG< zmoSYvT!5F#$-nkE9N||Bt8gLiM6z#hpi=fRR^SoT*8Ggxf`3pGn@!%8;xfDiW7vS3 za4F_+8tVLPBBI1PVw>frdxOy~swzsJx_^*hDYlV_5i0Gu25-n&P3-}qm(XE*lu)T9 zv{hQwN6d= z=PJsr4vKzZbW&I4#(bgq+A$pm?I1_a>Is!(?z}G)-b~Fub`L zSnG+`*VHvc;`NPnb=7gojOJATKusc>daS=UHIT_RMp`o+UD<&Q_NTJlnS530ac_P! HJns1q=;_#M delta 2657 zcmYk+Yitx%7{>7fw)7$t5y2RYM${OM35G=D|JfaglfL^q=giExyyr~M z&i!pc_VVDO9fm7Kj3Tz&VvHJo?Z*#SQ<*XAFouKiwa^|MPW@vXikHIrpQu;M%8e<- zK{y91ky~aJ7Gqn%tm&jsLPHuyVmDUdHmt@&;r%nH4n7a-7f}OU!6A4RN8rDx2@Sv1 zn3-6MnrIwn;4`S_-^M{EYs^O!_R{bb4nV(u;f3e1i25!ZhOgj2>_PraFF$(zJZb@# zaWwvjT0lQ;YC>aC{X|jy+=~olR^njBHx7mA7@!{9j}bhAEXI6`O8rl$nO{exwxXi2 zq7kTxEx|#!7M0>OYM=mb$LCNP+=CitA7(Z4gB0X()E2ylr|=6@M?2`9MVURQ4))^) zJdQkKsu@-7lTj0HL`^V;8mJld+%jbDW*u_OOj7w@Poay3HvAfO2xr|^*xOa8y=+BI zFhF&%88x97P#y0?=3?GNx-chj3Vwo0`890C0i;nAO`-bRr2OAOAxnd1`YNu)*YQs5 zL%y}5@pvCjMYRXWBW5>hrH4`dyo;LH1=K{p5AXku8u)Ll!@jI4g7sMn(LR3a}g!lKMQhpe9CXV4)%)U>- zQuq!vpbmgiQ;k}AO<1oFor(OJCVuq%>d5Hg|?M7wd4dl<9;YS(z0kwd>bTS6ZQT}AK8q|9op-JRXlR>5a zCDh&@#0LtM^ULhiIea=-i_CBCN}VLA1v3?YbewZ`fQqVfAkwt(?Lm>lBez;C6uSt z#1ul;NylxslicXqE+>)UInTDym+vRmr`@=!>O155!Hsd^ z-llZYbK=}}VmHV1BX+45xKX>JGeNI6+ijR%!5G2+Zby1fS1c}Wo>5mn!`3%O zr#05rbCoZ4{Ge_{#!350C-5>+8%rkAu3eCE69N6rc2sT3|8^AGBJEx((w3RiGiT_z zlB`Es;vS20pYrUJEKYgoJ&>}VZ`0iLZQQj%qRW$ow8XhZE`9RAYSm6!JQW@5yBRmd ztTTzWjlD, 2016 # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -36,10 +35,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Fontes de documentos são a forma como os novos documentos são alimentados ao " -"Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder " -"carregar documentos a partir de um navegador." +msgstr "Fontes de documentos são a forma como os novos documentos são alimentados ao Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder carregar documentos a partir de um navegador." #: apps.py:71 msgid "Type" @@ -77,8 +73,7 @@ msgstr "Expandir arquivos compactados" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" #: forms.py:68 views.py:485 msgid "Staging file" @@ -242,8 +237,7 @@ msgstr "intervalo" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Atribuir um tipo de documento para documentos enviados a partir desta fonte." +msgstr "Atribuir um tipo de documento para documentos enviados a partir desta fonte." #: models/base.py:182 msgid "Document type" @@ -286,9 +280,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, " -"993 para IMAP sobre SSL." +msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." #: models/email_sources.py:49 msgid "Port" @@ -303,18 +295,10 @@ msgid "Password" msgstr "Senha" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Nome do anexo que contém os nomes de tipo de metadados e os pares de valores " -"a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem " -"de ser o primeiro anexo." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -324,9 +308,7 @@ msgstr "Nome do metadado anexado" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Selecione um tipo de metadados válido para o tipo de documento selecionado " -"para armazenar o assunto do e-mail." +msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o assunto do e-mail." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -336,9 +318,7 @@ msgstr "Tipo de metadado do assunto" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Selecione um tipo de metadados válido para o tipo de documento selecionado " -"para armazenar o valor \"de\" do e-mail." +msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o valor \"de\" do e-mail." #: models/email_sources.py:73 msgid "From metadata type" @@ -365,18 +345,14 @@ msgstr "E-mail Fontes" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o " -"documento do tipo: %(document_type)s" +msgstr "Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o documento do tipo: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o " -"tipo de documento: %(document_type)s" +msgstr "Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o tipo de documento: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -640,11 +616,9 @@ msgstr "Registrar entradas para fonte: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. " -"Criar uma antes de prosseguir." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. Criar uma antes de prosseguir." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo index 376e5b877299f1221470105b7a0e8ca75b0f2c29..480d74e7c24324439032d41d74a77c70662b0ef9 100644 GIT binary patch delta 3335 zcmY+`X;76_9LMp4vR{xz1cb_KqDY`13NESSmXHfeY6>EXh)W_WLXzN9W|~T(Uay$q z7Fjk~W(+zxqrIqJ3`?oM$=9|D5OE`?+99h{uSe0Ap@rS|}eJC&G18lxPOFoya_jK%3reX&ztkAa+T z#uD6zY4|%%HpVjjBJ74Ma6A{PkiN`G?1Sep1g{`tGv7IOVi5IijK_PJh(VFYJdOiU z*C(K!&vWX}qXtxhz3JbSQ;6e49rneYs2QEWQFtCTvj^zH@F;r*eKCvrvq;~j0efQ; za;rItt#}$Wp_!yj?aar)Sc8G|Z(1q%V;gG5Cr}Muz%aawYTzbnMt89v-p5>wqF2ql z7?p`S)P$N*?Y@T-@g%DKUs3G@FiXofBMP)-`l1?2Lv@&o!*LF(q3t*nn^D{20%}da zLUlNh*4559qz_Yo+A|fHg;l7DwV^W9-iQ2aO~2rTMsyK1psSdGw@_>M5H*0FnZ#hwM3Duqh9A6Y{B`ccK<-_{=ZS}Sv|Q+7vfPPbEDQ~ z2zKFk)C~IbPU(6&YGz|mYdH-wumts76Q<)KWYx?iEW@AB-_MvyPuLmFWe3x*Wr`?p z&J?3EP>-d!5tHzHROne z@Ba=8TI0Pq1P`N9_%&wYUpN|vKFKvdmH?Mi52ANvZVfUyQ}5V<>aYU`;x%;RBUJl| zoD9G`TuT2YpTb}~i`q<`$bK@}gGevVM5Xcok__`PY6-4jAl^m|q#Ko~d#C|Dbc{>p z+mLz|2H-r@QkJ2mRIQ{Cgtf?iGL6WjO$%yZpCW@dU6_MGoYa7(qEcUq%2XBV`cY)x znoeZv$Z4sCS?S za30I>H|&Q6G_HZJM%A~V?td2-;76&Jy*A-#cE>|e9b}=FUMY~;nd$j4fHCG z!5iqp7;avNZsZL!Ueq_?Y2;_Xe2KyME#_dS<=o(A$LYoqsF~-Y*0>1uo-RWAFmfR|Y_h(X3?wxQPW zENURvPz~R8{1f$@-!MBPk+_+998SYl^v64>P5BEdGcMLERPTQ>1&t`vF$eXHI31OV z0@O^4k<~KgsBge7)WGHpXIZcYz4#CAMDGYYV@X;3L{l$BE#ZD_!_yd~7H4PMBQM2~ zT&O^$vK2M3w=n`w;b7kX&oGMm9d3@qN2s^PHOkJ=KxAxY4C;IpvI=G^YEPX(rT#LG zv}iD!Zx_vU6+20rYCWc+h04SSxC&1pgEmh*Z7;zroK1ZpD%EFDOV(qo-BAWA<+&J* zmDqswsPBUZSg18k7-!#*j+*gA499#Ngr%s4HzTjI`2_RuCNh5CYpnlp+1gnBIY91Bg1Dy6iW(4bq12G6C?^umplbSRfPv<9`r zA%acl`={c@Nw;Sx$Lgzt|Om})}%U&m2mjtU&F z6K@duG1e-sBL25wXS7;Y#&8;Q7(j+j@<90?~ue!ln^Ayu>a-+g8VFVxq5P zzbne|3gTsg9~#s7Wkm8c^o6WUeUD3gd6G*ouxf5$>fYl&BgO@t2ZvX_WG z#0KImLR&wb(2-Rk4&EHI z-dD0ew25Mg9HNofMm$H95WNT;+XXe0k8%u~^ shh&a+XJn7b^z0rGA5m0YzGUsXYIjj}&7!r-tJ^yUq=dD9m=PQCF9V=Vf&c&j delta 3736 zcmYk;du&u?8prXsP%fpV2$i3?4WwZQ&QH;79jal9AZ_cU93D11q_nkBE z<$2$8=rea5^}Lf~viBOUr-(lg6+?{qJI)=!2UqV%V;b=-9FE2L#*D$zz>D#G>Q`VP zt_|wRpuPi#(%ywP;j>tQgGL#%*ci`LQBcP&UWV<+Smp?h#SbwDze46_&IEpk!>IoU zi}6<+k45JhQ-al~?;B9RzaglHP!qZZ3mD%dC=}7qi5K8O)QWns7Ehp7HgvQxxmbc) z!8EMFYmu?dE-b(U$WP3xcmUr;EvS*Ssh=p8V+RgpeDe~8Z0td;xEIx7Kjz^{R0m(9 zR`fGY#4JWzhNY;LZ$M?D6Sbf&RKIWHB0PfX|2I@WV_Bt_SrG;LG}BNW%|#7(Jyv5g zs-wrT61z~xqaU@WU!Vr8p?CGO0vW^HjG3*)8tUz+h4r8^baX8F*Peb%gJ$$s)Pzpq zIQ$m1cRA!u6DUC4R~%@eR$Lx@zYsOCrT8v3p!zRhcFN=hI1i`b5)2nr`2)O2!v-4O zKy^5g4;E!=kppX1peC|5Z4WN+w5B_0S%cfL7QaMIv5+IAUyMiPa5`#AwWujv9<;B* z!PFa3ziUD*tp!^!j!pO(Y9@8$BZ>9n$XPpuqco&&Av-o5-$ZTBDb#~JnvX}Z64mkh zsB_hP1G{S0bi-=j9=H#~*s@epYNKcK$Pn&2-ie*$M#yI4ZQES!n@VIz`G6G!&V zbm4kDjM-VVab}gnah5-!Nyt~G0+oTQaUHJ0N%#sXbALe{-;=0KEA>kK8(L5k*@ZfG z2T)tnjT^8RHNb^s{t6bMR#cC=Zyjnv%{UV`qB3|8XX6RH6wQUk?9XBgFhbS)l<6s@ z3nu%onq`5_r~$Vj|IE{TSoi^IfHOD*i>LT|JORt8ccRWxH*x^Ykf~$?OHi4NAjvZx za<)9vMPVonui!8|j7rtp$aa~&z|+X2O*W%w;BwSnR^o8{BM!sG$T>61k))Ys@~k%};#=Dphk)H^h+#!E__%$n>GM=3m&2KcOb@{B&bx;9=D7{()Lh zDUCT;j>_b0)bATmTOF2+Z(ItR`8L!9cHw$_2Pfjh3O{x8QS~*b`%~D6?P%fOPy_!L zH9$7|q%AlfwPh82XhAmy^(1=w!66ED_&ny~Khedr$P;M7oFu&iw<7-mm_0ZgpT+su z9ejT_aB!8sa=nrA`MwnOn9f4xW|p8bk*Fg7TFE^$Xn^}sdwU4Ach8|F^Z{zXPp}_P zqRz<6JhOS&i!FE@^&Xjdkw5U$sD-?ati?Zq@cPHv_?nGti1=NI&qbBrG;FqX3;~CUh_!hO`pOB&XxY&OcZbi-PN8E{{ zYmC{8PvCB>zQj-6d$^SPS=3%$GKWVK>roy5fSUL($Uifv*3W1iYGMm;6t2MXEXH3) zL3`TC+d*%>$54;Y3#b$wMHX*95887%D3#PFV-c=Kr9O&t=&eWgzYZ0f zh;@XH=t@FIS3};EerUw_(T$WICN!xhi1zf`BdQuaO1hLwUD|_9#6f~nocUYDLgiNJ zh!A8Z^S8$X$cZ)yqMq16bfxFz7Bw_eVnZ{3N`cu(q*UNKL|mIGvD zpnU=E4$9}UmC9yfG0{rIiOY%Wl;k-S1}>XIlDLcL2pVVLpNKS}lkqsAw@DSDYm$#y zjyDpkg8I#YkEM_2P0e|bT9i1D{&!xr_b4Tut_FgGWA+gHh`j`lpxHtUTslOB1n0=y zN!&+VMXV+A30*sh+)RnL9^M_4#ROtQP{wK)=vTA_H%wIi`)=8iVUwZpb+Tke*Pjuqp#Nz0Cftxa|`I?T^G*61Q1lmf|FwP-{fRV9k!zw=Z&TJ8O<72D*qRm>9h$B2B4? z>n}GmLNH)GBRbqqhsn^fjzq|Ioy>ZVb<|mQNXhyC)GRmQ(2Zjyk9E*3vq?nSQqgnn LsO-tFDjM}aOIqp* diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po index 5e77673a0d..e343ed438f 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Abalaru Paul , 2013 # Badea Gabriel , 2013 @@ -11,16 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-08 07:32+0000\n" -"Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -36,10 +34,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Sursele de documente sunt modul în care documente noi alimentează Mayan " -"EDMS, creează cel puțin o sursă de formă web pentru a putea încărca " -"documente dintr-un browser." +msgstr "Sursele de documente sunt modul în care documente noi alimentează Mayan EDMS, creează cel puțin o sursă de formă web pentru a putea încărca documente dintr-un browser." #: apps.py:71 msgid "Type" @@ -65,9 +60,7 @@ msgstr "Mesaj" msgid "" "Utility provided by the SANE package. Used to control the scanner and " "obtained the scanned document image." -msgstr "" -"Utilitate furnizată de pachetul SANE. Folosit pentru a controla scanerul și " -"pentru a obține imaginea documentului scanat." +msgstr "Utilitate furnizată de pachetul SANE. Folosit pentru a controla scanerul și pentru a obține imaginea documentului scanat." #: forms.py:30 msgid "Comment" @@ -79,9 +72,7 @@ msgstr "Dezarhivare fișiere comprimate" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " -"individuale" +msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" #: forms.py:68 views.py:485 msgid "Staging file" @@ -288,9 +279,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Opțiunile tipice sunt 110 pentru POP3, 995 pentru POP3 peste SSL, 143 pentru " -"IMAP, 993 pentru IMAP peste SSL." +msgstr "Opțiunile tipice sunt 110 pentru POP3, 995 pentru POP3 peste SSL, 143 pentru IMAP, 993 pentru IMAP peste SSL." #: models/email_sources.py:49 msgid "Port" @@ -305,18 +294,10 @@ msgid "Password" msgstr "Parola" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"Numele atașamentului care va conține nume de perechi de metadate și perechi " -"de valori care vor fi atribuite restului atașamentelor descărcate. Notă: " -"acest atașament trebuie să fie primul atașament." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -326,9 +307,7 @@ msgstr "Numele atașamentului metadatelor" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Selectați un tip de metadate valabil pentru tipul de document selectat în " -"care să stocați subiectul e-mailului." +msgstr "Selectați un tip de metadate valabil pentru tipul de document selectat în care să stocați subiectul e-mailului." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -338,9 +317,7 @@ msgstr "Tip de metadate subiect" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Selectați un tip de metadate valabil pentru tipul de document selectat în " -"care să se stocheze valoarea \"de la\" a e-mailului." +msgstr "Selectați un tip de metadate valabil pentru tipul de document selectat în care să se stocheze valoarea \"de la\" a e-mailului." #: models/email_sources.py:73 msgid "From metadata type" @@ -367,18 +344,14 @@ msgstr "Surse de e-mail" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Tipul de metadate Subiect \"%(metadata_type)s\" nu este valid pentru tipul " -"de document: %(document_type)s" +msgstr "Tipul de metadate Subiect \"%(metadata_type)s\" nu este valid pentru tipul de document: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Tipul de metadate \"De la\" \"%(metadata_type)s\" nu este valabil pentru " -"tipul de document: %(document_type)s" +msgstr "Tipul de metadate \"De la\" \"%(metadata_type)s\" nu este valabil pentru tipul de document: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -408,9 +381,7 @@ msgstr "Nume dispozitiv" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Selectează modul de scanare (de ex., Linie grafică, monocrom sau culoare). " -"Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "Selectează modul de scanare (de ex., Linie grafică, monocrom sau culoare). Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:41 msgid "Mode" @@ -421,9 +392,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Setează rezoluția imaginii scanate în DPI (puncte per inch). Valoarea tipică " -"este 200. Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "Setează rezoluția imaginii scanate în DPI (puncte per inch). Valoarea tipică este 200. Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:48 msgid "Resolution" @@ -433,9 +402,7 @@ msgstr "Rezoluţie" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Selectează sursa de scanare (cum ar fi un alimentator de documente). Dacă " -"această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "Selectează sursa de scanare (cum ar fi un alimentator de documente). Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:54 msgid "Paper source" @@ -445,9 +412,7 @@ msgstr "Sursa hărtiei" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Selectează modul alimentatorului de documente (simplex / duplex). Dacă " -"această opțiune nu este acceptată de scaner, lăsați-o goală." +msgstr "Selectează modul alimentatorului de documente (simplex / duplex). Dacă această opțiune nu este acceptată de scaner, lăsați-o goală." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -524,9 +489,7 @@ msgstr "Calea sistemului de fișiere de pe server pentru scanarea fișierelor." msgid "" "If checked, not only will the folder path be scanned for files but also its " "subdirectories." -msgstr "" -"Dacă este bifată, nu doar calea directorului nu va fi scanată numai pentru " -"fișiere, ci și subdirectoarele sale." +msgstr "Dacă este bifată, nu doar calea directorului nu va fi scanată numai pentru fișiere, ci și subdirectoarele sale." #: models/watch_folder_sources.py:42 msgid "Include subdirectories?" @@ -590,23 +553,17 @@ msgstr "Încărcați documentul" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Calea fișierului către programul de scanare utilizat pentru a controla " -"scanerele de imagine." +msgstr "Calea fișierului către programul de scanare utilizat pentru a controla scanerele de imagine." #: settings.py:22 msgid "" "Path to the Storage subclass to use when storing the cached staging_file " "image files." -msgstr "" -"Calea către subclasa de stocare care trebuie utilizată la stocarea " -"fișierelor de imagini staging_file memorate în memoria cache." +msgstr "Calea către subclasa de stocare care trebuie utilizată la stocarea fișierelor de imagini staging_file memorate în memoria cache." #: settings.py:31 msgid "Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." -msgstr "" -"Argumentele care trebuie transmise către " -"SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." +msgstr "Argumentele care trebuie transmise către SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND." #: tasks.py:46 #, python-format @@ -645,9 +602,7 @@ msgstr "Serverul a răspuns cu codul {{statusCode}}." msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." -msgstr "" -"Orice eroare produsă în timpul utilizării unei surse va fi listată aici " -"pentru a ajuta la depanare." +msgstr "Orice eroare produsă în timpul utilizării unei surse va fi listată aici pentru a ajuta la depanare." #: views.py:68 msgid "No log entries available" @@ -660,11 +615,9 @@ msgstr "Înregistrări de intrări pentru sursă: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Nu s-au definit surse de documente interactive sau nici una nu a fost " -"activată, creați una înainte de a continua." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nu s-au definit surse de documente interactive sau nici una nu a fost activată, creați una înainte de a continua." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" @@ -682,21 +635,16 @@ msgstr "Scanează" #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" -msgstr "" -"Eroare la executarea sarcinii de încărcare a documentelor; %(exception)s, " -"%(exception_class)s" +msgstr "Eroare la executarea sarcinii de încărcare a documentelor; %(exception)s, %(exception_class)s" #: views.py:293 msgid "New document queued for upload and will be available shortly." -msgstr "" -"Documentul cel nou este în coada de așteptare pentru încărcare și va fi " -"disponibil în scurt timp." +msgstr "Documentul cel nou este în coada de așteptare pentru încărcare și va fi disponibil în scurt timp." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "" -"Încărcați un document de tipul \"%(document_type)s\" din sursa: %(source)s" +msgstr "Încărcați un document de tipul \"%(document_type)s\" din sursa: %(source)s" #: views.py:378 #, python-format @@ -705,9 +653,7 @@ msgstr "Documentul \"%s\" este blocat de la încărcarea de noi versiuni." #: views.py:431 msgid "New document version queued for upload and will be available shortly." -msgstr "" -"Versiunea nouă a documentului este în coada de așteptare pentru încărcare și " -"va fi disponibilă în scurt timp." +msgstr "Versiunea nouă a documentului este în coada de așteptare pentru încărcare și va fi disponibilă în scurt timp." #: views.py:472 #, python-format @@ -725,12 +671,7 @@ msgid "" "Sources that delete content after downloading will not do so while being " "tested. Check the source's error log for information during testing. A " "successful test will clear the error log." -msgstr "" -"Aceasta va executa codul de verificare sursă, chiar dacă sursa nu este " -"activată. Sursele care șterg conținutul după descărcare nu vor face acest " -"lucru în timp ce sunt testate. Verificați jurnalul de erori al sursei pentru " -"informații în timpul testelor. Un test cu succes va elimina jurnalul de " -"erori." +msgstr "Aceasta va executa codul de verificare sursă, chiar dacă sursa nu este activată. Sursele care șterg conținutul după descărcare nu vor face acest lucru în timp ce sunt testate. Verificați jurnalul de erori al sursei pentru informații în timpul testelor. Un test cu succes va elimina jurnalul de erori." #: views.py:513 #, python-format @@ -762,11 +703,7 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "" -"Sursele oferă mijloacele de încărcare a documentelor. Unele surse, cum ar fi " -"formularul web, sunt interactive și necesită introducerea manuală de la " -"utilizatori pentru a funcționa. Altele, precum sursele de e-mail, sunt " -"automate și rulează în fundal. fără intervenția utilizatorului." +msgstr "Sursele oferă mijloacele de încărcare a documentelor. Unele surse, cum ar fi formularul web, sunt interactive și necesită introducerea manuală de la utilizatori pentru a funcționa. Altele, precum sursele de e-mail, sunt automate și rulează în fundal. fără intervenția utilizatorului." #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo index 17631bc2d4182205d37d6db3d30a041e5de83164..44a11d161e27d8022139bd29f3cca4826cbd0232 100644 GIT binary patch delta 834 zcmXxiJxE(o6u|KlG}XpX>Q_y))wC*FB@oh>nk|?p-?(mMEgJF`FOnFJ@?+6d+xpYk*Fm;wYFHl z9U?n7MSLPs>T3E8?-3tk6rJ57VT|E8zC<^c@IHRP0v_NHF7=3zQZ}$1-{37QVhBIt zBmCJTmOP{}(kpTU7f>g@K-QK`yZChA5HaR7f=G$J(Gh_qvdk4{)bJ%J4B0+!uhL0+lxap52Qg6DW0_ii@}`HFf) zN2rB1P&fA1cHoXk3$YcaQKgYUP1Macm?Krx%Im0woS`OgbHRG#Asoed+YRKEGM_Z= z<1~7G&EKa`H@1q`Fpul3FRy4U($PRY>L+(aUgI*x@dWkm$M{F;0x5ioCNd-y?8Lh5 zKYT{)rb<1z71S$xj}FvLTs>~ty>L1@0%3nJ;tPbM!Qfw>p6{od(=QJ> z%YpA5vh4QzQIxQPnbaI5sAYjp20G@u!d)G10UiZj$qCw!jw|QBlrmYxQ^#> z6R+YIpO|uiV5C>XjdQ32ZzF5Vn$`Xo&ym+LhHp_P(!r-8hU1vSUJAO8C&-`li9~S= z2k}1+-nU4;*iFyLds0-Y)+8f9#O+MZD17G29Jc=)dIvaV7 zdPN^mH`+!m?5CywBt?;%R|wt_Ttl76O&N@lUDTboP&e`mbpj_BtVce9W0 z%-{}QL|>ru`wVJfx9~8Qu*mvymtc{GHtJEQPKi9gc}(GF)Vm+$AE^suFpDclmo(6W zEz5nJC3mt*J-J2HD|?1E)FS>rF4_LmWjhv(g(9&)B%X-IgAtzYw6R(V&6JJeYQd, 2018 # lilo.panic, 2016 @@ -10,17 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:630 @@ -36,10 +33,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Источники документов - это способы получения Mayan EDMS новых документов. " -"Как минимум, чтобы можно было загружать документы из браузера, создайте веб-" -"форму." +msgstr "Источники документов - это способы получения Mayan EDMS новых документов. Как минимум, чтобы можно было загружать документы из браузера, создайте веб-форму." #: apps.py:71 msgid "Type" @@ -241,8 +235,7 @@ msgstr "Интервал" #: models/base.py:180 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Назначить тип документов для документов, загружаемых из этого источника." +msgstr "Назначить тип документов для документов, загружаемых из этого источника." #: models/base.py:182 msgid "Document type" @@ -285,9 +278,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Обычно выбирают 110 для POP3, 995 для POP3 с SSL, 143 для IMAP, 993 для IMAP " -"с SSL" +msgstr "Обычно выбирают 110 для POP3, 995 для POP3 с SSL, 143 для IMAP, 993 для IMAP с SSL" #: models/email_sources.py:49 msgid "Port" @@ -315,9 +306,7 @@ msgstr "Название файла-вложения с метаданными" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"Выберите тип метаданных, подходящий для выбранного типа документа, в котором " -"сохранять тему письма." +msgstr "Выберите тип метаданных, подходящий для выбранного типа документа, в котором сохранять тему письма." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -327,9 +316,7 @@ msgstr "Тип метаданных для темы письма" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"Выберите тип метаданных, подходящий для выбранного типа документа, в котором " -"сохранять корреспондента письма." +msgstr "Выберите тип метаданных, подходящий для выбранного типа документа, в котором сохранять корреспондента письма." #: models/email_sources.py:73 msgid "From metadata type" @@ -627,11 +614,9 @@ msgstr "Записи журнала для источника: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Интерактивные источники документов не были определены или включены, создайте " -"один для продолжения." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Интерактивные источники документов не были определены или включены, создайте один для продолжения." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo index 09531c1f00c790bd6be5b7f910a62d470f757b3b..07a573b351292e3dd7c37991f88340228af270ec 100644 GIT binary patch delta 23 ecmcc0dX;s96(g6Ku92mJfti(&(PkIMiHrbIWdQ30l^ZtP`iFXd?tR!g^ULcz&wZYAzUQ3pG=@>IF?g`}&tti5*3X4&b;Qr{m)0ECYp$2(S_qN z6O~{o&c$j}q9-td`K^b}3~pS&Id~hR(Di_Spfr4t>jFH9E0IU+E@~h>tck}Xn`iOJ z$}AcAXF2>KS1U%nSB_d>EhaF(x#?(yFQZo6jmrEYYQP_H0bWN9oJckrARF0j%R?Q> z64V4$I2+xl_us~u*oEQv1M2xf^k}Q@($U!jNBegm3Yp6ak)LcO>S*dv6T49pw_qH$ zqmJS&)P!BA=gv6xq89eC^ZWOxM6N}%{~GvLZfJ{cp$58#4X8BPW!r+fzZ>;p2kQA( zP>G*J-^8fr&!Bdq5B2<4sOPUb_XjbM>%U^yf4w-w4P|@}>v04(U>)1D9WUcvoKGd~ zz)w(LOFHNA29}}Tzlo}aJE)=?cJ7B$DB8&wRAR}fgwj29lyNR<%a@`ati)N^gp6UG zxDL;ub|RJn(S-3Bk5f?#Da1-F!4&L9?La@OhORmHCvhH{&y!Dw#oBVzR@R^fbfYpn zjLP^;=lAze34Da9*oP{vKQIHwO*Cr`pxUv9>rW{Vjq9SqxnZv zY=n;Q^CL~(wJ6j8si*-8P@iczYK0A`t=@)@;b~09D>x1RMm;y##cp6SYTSdUojQ$5 zq#He2>3KSu=v&OipHWqu!2YGt0lmUcf#04eI$KX3_W+ zsOx%Ef~}~;UP|`(2Rh0Pt>`%Fb32QA;gaK3R3g7%AP%Dv_y?8H2=2zP6tm6PflA~K z9>6VA%=YOT$;}$4ntg~zJ#=*Td5`!rDniP^mZ7S@36;=JR02m(JM|9gKbZ5V#J@%r z>kXWTBhK$RkNQ8uGSp7=I$p#au07w;(MrOpoMwzdo%sRO1m|!SUPh9)#OeMcT8v6; z1?o&2P{r7W+T!<7iS}U__M?ty099kZqu1Brv}%rQ;^FYLfCbmt#5VKP9bniE~eN z5lZl?r8)PWz$}7I@|}ADZX-4lTM2#dYFc?Xv6s*>r)ZFagc@Iqug&GJ&TxzW()UGZ zhqV1_I%l;)ascrH|)qpgHaDG@~MBGwQ|gi2Fot5!@b zCZ5s-t%GP+hsI}R`-xy;5>Y`cBlImzCM;=D^VY^BSL4Q(>e^~=Q^b*A?`JXIknpV3 Wj2u^5*1U`iZ(Cesn0H*tQ0RXS-voI8 delta 3317 zcmY+`eN0t#9LMpWilSgCnvW=)ki_kNyA_(b4}NyJ)3iFO*3C05Ih<4TfB|)UvW6b4UC>Aqt3Ii zA1*{aUyOHQ84fchZ1!+4fR2OM7vIKsJdPu=6O-{f9E)AC>mzQ7K9`EReA=>FeWm;Imy8kIzGo7?0u^-gD?*@&>|d+t8g!Rky}jyH))`esEMZ` zi)V6?H#2jPf2M>#7lWun_-54LqA{G{7=s z)lC^{ODa$k)Z+|nL_L2LGqDX5@Dl3&YZ%rWCL~4oCIz(u8OU5_HFA&fqPAu$YT`!J z#5-^_zKGhwR@8)TsQccJ`4Q^HK8anwh)U#266=40gMaAI1Z||HrRqQpcm_A%*T|}y z1!SxKQq%xzQ1`o0#Z`|=KyRh{8&NB=3w8fK)cprz{l|u~{(b29fDS!)3YGa8tirRn z9t)_TAijoMa0L5Mhr3Z^_RJEwD;#t&0%}AM;7A(LHOvN~U6x5%Ndh=XVEzLpR&CJ8wu^e@O z1L}qLVuHT^101ND-$Kbx%K;8Efs<#sA3(D4LB3^TnlQR6S4C%>EURm=jc#|S1}H|P;d4x>a!bmM|6P6G3THX zT7rFW4eGh|sKl!9Q4F9Pe?cWuHlEeS&v2{G!x@oPHDBPHbabI=VE=?@LM=$$n4_q# z;7e3OKcW)2hFY-%He5e6DX7F};22zt`B)XZ{wh{*{tjv-!pW1O2a|9%9kWqy62t&* zLhb!U)C6Oxv@*;_UdlX!+NwjS#M)4M`zi9zT;PvtVeph_qG>pQ^IT+$!lr-&6lG`=zLMFR_}~NX#Shh{uT=o3=@NsQv3tq!JFXiKrqxV~$q_&6%5!9No2o;_hg%T;MEPO;Aw0J@l-bCor(pT^l(cNk}&=;bn zx|&beLVQuXcBooBrz3f>_UznEGbxi2B&Mc<_ef4IERqJ#ALcQS_&|i1U8x zODhWay=j)WwIp#@zp(9fEPtgHs&*_p6tXL-y^b%$sU5O5x;-AN!tV>&ZeK8Rht~<& zE<0pfq0P09<>T3)W&2!Kz3r)UtXkV0;6A^#p0R>Kca_g^=~QC}oM5PX9+!Wk&*QgU zT(#%*%o)tIiv1xc-zu$kGip!2Rc&_S-JVyxvl#~ z4IB{eJmhn^18$Gwvz!`_6L9;iD*jqEw#W8$w)kv@uzhxgU1RB`ta@DxbsP_L9Jg$j z#}05$XA9ky%jtZ@30NJ??#fVPAh+f2Xm$dTkr~!@MQ)8`pKle`F`wlg%p|E{r?9St%))K diff --git a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po index 6f9078985f..69fa7a2bc3 100644 --- a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -34,10 +33,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Belge kaynakları, yeni belgelerin JBM EDMS'e gönderilme şeklidir, bir " -"tarayıcıdan belge yükleyebilmek için en az bir web formu kaynağı " -"oluşturmalısınız." +msgstr "Belge kaynakları, yeni belgelerin JBM EDMS'e gönderilme şeklidir, bir tarayıcıdan belge yükleyebilmek için en az bir web formu kaynağı oluşturmalısınız." #: apps.py:71 msgid "Type" @@ -75,8 +71,7 @@ msgstr "Sıkıştırılmış dosyaları genişlet" #: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Sıkıştırılmış bir dosyanın içerdiği dosyaları tek tek belgeler olarak yükle" +msgstr "Sıkıştırılmış bir dosyanın içerdiği dosyaları tek tek belgeler olarak yükle" #: forms.py:68 views.py:485 msgid "Staging file" @@ -283,9 +278,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Tipik seçimler POP3 için 110, SSL üzerinden POP3 için 995, IMAP için 143, " -"SSL üzerinden IMAP için 993'tür." +msgstr "Tipik seçimler POP3 için 110, SSL üzerinden POP3 için 995, IMAP için 143, SSL üzerinden IMAP için 993'tür." #: models/email_sources.py:49 msgid "Port" @@ -300,17 +293,10 @@ msgid "Password" msgstr "Parola" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"İndirilen eklerin geri kalanına atanacak meta veri türü adlarını ve değer " -"çiftlerini içeren ekin adını. Not: Bu ek ilk eki olmalı." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -320,9 +306,7 @@ msgstr "Meta veri eki adı" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" -"E-postanın konusunu depolamak için seçilen doküman türü için geçerli bir " -"meta veri türü seçin." +msgstr "E-postanın konusunu depolamak için seçilen doküman türü için geçerli bir meta veri türü seçin." #: models/email_sources.py:66 msgid "Subject metadata type" @@ -332,9 +316,7 @@ msgstr "Konu metadata türü" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" -"E-postanın \"başlangıç\" değerinden hangisini depolayacağını belirlemek " -"için geçerli bir meta veri türü seçin." +msgstr "E-postanın \"başlangıç\" değerinden hangisini depolayacağını belirlemek için geçerli bir meta veri türü seçin." #: models/email_sources.py:73 msgid "From metadata type" @@ -361,18 +343,14 @@ msgstr "E-posta kaynakları" msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"Konu meta verileri türü \"%(metadata_type)s\" belge türü için geçerli değil: " -"%(document_type)s" +msgstr "Konu meta verileri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" #: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" -"\"Kimden\" meta veri türü \"%(metadata_type)s\" belge türü için geçerli " -"değil: %(document_type)s" +msgstr "\"Kimden\" meta veri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" #: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." @@ -402,9 +380,7 @@ msgstr "Cihaz adı" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"Tarama modunu seçer (örn. Çizgi, tek renkli veya renk). Bu seçenek " -"tarayıcınız tarafından desteklenmiyorsa boş bırakın." +msgstr "Tarama modunu seçer (örn. Çizgi, tek renkli veya renk). Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:41 msgid "Mode" @@ -415,10 +391,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"Taranan görüntünün çözünürlüğünü DPI olarak (nokta / inç) ayarlar. Tipik " -"değer 200'tür. Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş " -"bırakın." +msgstr "Taranan görüntünün çözünürlüğünü DPI olarak (nokta / inç) ayarlar. Tipik değer 200'tür. Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:48 msgid "Resolution" @@ -428,9 +401,7 @@ msgstr "Çözünürlük" msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Tarama kaynağını seçer (bir belge besleyici gibi). Bu seçenek tarayıcınız " -"tarafından desteklenmiyorsa boş bırakın." +msgstr "Tarama kaynağını seçer (bir belge besleyici gibi). Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:54 msgid "Paper source" @@ -440,9 +411,7 @@ msgstr "Kağıt kaynağı" msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "" -"Doküman besleyici modunu (simplex / duplex) seçer. Bu seçenek tarayıcınız " -"tarafından desteklenmiyorsa boş bırakın." +msgstr "Doküman besleyici modunu (simplex / duplex) seçer. Bu seçenek tarayıcınız tarafından desteklenmiyorsa boş bırakın." #: models/scanner_sources.py:61 msgid "ADF mode" @@ -583,9 +552,7 @@ msgstr "Belge yükle" #: settings.py:15 msgid "File path to the scanimage program used to control image scanners." -msgstr "" -"Görüntü tarayıcılarını kontrol etmek için kullanılan scanimage programının " -"dosya yolu." +msgstr "Görüntü tarayıcılarını kontrol etmek için kullanılan scanimage programının dosya yolu." #: settings.py:22 msgid "" @@ -647,11 +614,9 @@ msgstr "Kaynak için günlük girdileri: %s" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Etkileşimli belge kaynakları tanımlanmamış veya hiçbiri etkinleştirilmemiş, " -"devam etmeden önce bir tane oluşturun." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Etkileşimli belge kaynakları tanımlanmamış veya hiçbiri etkinleştirilmemiş, devam etmeden önce bir tane oluşturun." #: views.py:153 views.py:171 views.py:181 msgid "Document properties" diff --git a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.mo index 3367b78a202d46e2eab1ae0e7283a02ced22b79b..72c8fea5704ab54f77e4692a463571c9626a396c 100644 GIT binary patch delta 23 ecmcb_bBSj|E;E;zu92mJfti(&(dKgI+e`pgCI;gG delta 23 ecmcb_bBSj|E;E;@u7Rn7fti(&+2(TQ+e`pf, 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -614,8 +613,8 @@ msgstr "" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:153 views.py:171 views.py:181 diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.mo index 70211116c6daaa432df30c3df3ec3f6b72c6f996..14342618cfc7d7158e66d35e0d3a87934b3d0917 100644 GIT binary patch delta 2942 zcmXxmeN5F=9LMp4pa}O~5qZ{tTRsp8NDyc$7-;!KsVSuhk|>~N8li?H+%hQ>)8x*z znOoxzH(jn=mp{N}QS))KX|`F;2}NP9=>o&K< zi28|%@dhQ1_`fj$h!UgXc*;YTypkM=$qwIYeAnJh)dZq}f- zY71%r^{4^t#Id*!wKd03{rOP!+M`&1B|0h44A0vNzo7nlYRT?n9)_@i&toB~ z;oZ0aTTtx`A%7;8Wnr7mWK_NBsCMU|+FKOE`fFyT6cl46YJ}gQ9_&Od*(KD2H&74W zvgP+Mn0zoBujfKh6LMlTMq>r;Knh&vS_@Cl-R6~&ofy0!5 zYQT*u&%s{ILk-Z)I%{AVsDaNwZP5bE#1hn2HRBXKjEvoQx=56h=tV72Atyy06k!rB zL(Qxf%die7;8oO$JU|`75sY42G9Pt+KWYGNsIzn$wbDPM+Wi$7u*WVb0ucs9xMwo<`n9~G>%tB_3M$Q%r0vyvN+~jWQ^t)>maiFX0%%?>*0e# zVj%??I1B4hOL-Er@f>O<4^ZWf#{*juZ%szspM+Y{Tx2m#5o%!7sOM@>--SkN6GqU# z*{cK|MlIEG)DnG%yxOK4)j&T!fkT*zZZdjq0qTAU`a49mTVu-yQ0+cM4Ipy7od9~& zKr#s(nklG;@~sO|4=l%IEXNnngF1|7kvGy@M|JQws{SwzfL1aL^*YW+l~cmFVx-e}jT>0kv3`yI*VEdKOx6rx5bCNR^fA)+V>Y3I#1i`U zGY-w%e>rt(mk{p+^8OjGB|X>Xv#`P28WxwZ!IpfCdx;&yGen*D$FSs}54;0mQF*VD z-%7kr{C}~ZW;vnF)3uJ6O6(ytY+aj)H@pSmQIXq8X)$!YM=bMJhG%>B`SXDjrDVCy zi;=_vVi=+Cu`UOpPvD2ja5WLnDZy1kX!+h!hO3^?!An(!>m#Ct$R~Caqxc_KoFj4g zM$${Yt&X^YW>RIuD}>H+8nK^vn>aw|+Cqd9n~3*`mx&dGzNaPL1CH#N)ubAUDnj3& z0%Du@nj^)vl9VnT*Vnu*XI##kq>2c3*#F(oG2!I+|8MdMt|v+foxfc~CGoCrh4Wab f?{suRczAAl*0b)+-04|azCV-tLVYDE8Dakcy!|3m delta 3295 zcmYk-dr(wm7{~D!6_JagqLLwUO3^NeD5<3*<%MpNnPrp(d1P0?U@>>qF6yF!nL?sF zU8Ketrlv?UEwaJX(ikn98qKbbW*1q|E@LuNQ-3h^{q4S4XL!!%eb422uV-m0Uhf9a z^zZSE;Rq2!h_`zfa~KQaIdRNOGNu?^?1cxhKOVK7#sSnX;2`YLJ6cae)pM{X-hvO{ zOq`C}k$gdOfkGY^{=|Vep^q_Y`woo7LX5*AybQgVhO00g8|?iS)O!bQ{bN+aColz1 zVk-WM>TqnbG1t?+xtxM}dN(HGBFw^NI1XPz{>({EN^~CkVi&%MeW=iPvjdf9FRJ0= z$Yh$YQ3E@T%F~HVmg&}y_h{cFQ_u+0F#|L4R?J6@^l8+{x1&bTib{M6r{edh28OXN z%5wv1AX89Fbq6QqnTP7=3e3d~7*wM7C}d+RCSWJ>XSz6P#CbWG=N%;p2V*Zuz3NC1b**FI$pn6(|dT|SC z>Kaim?n1ryuD$*tcBlR&>b;Ywft|sH*pBmYChMmTy@`H25~Q$_!bG~e6kAZAVfJ8S zp2HcaL}yW(>St7fPJ2C$`Tdc4GOB}}sE%pD)$!h_r5b`cn1x!hA{>oD9|dN`Y{Q4} zZPXMEpciU*C=SIDsFCGk5#El&u?aOJpQ1M7H>f2^7C?{*BtCqj+m9K8Qsz#%#i3>c8^o==lOCI)nFG{m5jQdSq;7 zyY&bT()a%(1x@W=I0MZU#@q-6sE*ZQE^bAQeV*kinVF$R}=gqY`|8{F!5%uEtK(`$L9B?`L78K~(-} z_IfKS?{QQI&gy<-1Qe9uB5KpbuyAUquQeU@+%=eiWAJ9Y3$+=aN4`|E6V<>W)bn4U zX7Uv3b4<&OUcV02-lR9e0hMSEYQ+0dyZ1ZPbH7=;P|qcdh;F)m zsQcrs)37J?S+-ti^^9PCG=fL$g>~4IddS*fZA7hUldZpJJ&bi+|HRhkj*L#di~8Ii z#_{-~z5Y2ap#CjtGfod)6-_)3wPwpuQ&WW+X+3Hrjo1_4z&mk|t;ezfbU(>D7?o!P z>TAle=3#g01*kl;Fdl=26iO(#I2RA2*3e=87h*0xiZ7s^8*pvp12K={8tM(Ggy~sP zhoj!V*4Fdz1oeDO!pr!UWhOGvpcxx2n5j648?#Xfo<{ymBPUJ$F`R>8RL>{zW1xof z(ZK>+ufS#01IT_hKck*c9vxkZ!Kh6+3sd!d)KgH8nlKsnpk6qPk%sN{u=RJ;^RX2&0B;qsN*hzAI8Y<$TZZR;9r6XT*pbH)W~%x;cQ}sDjfF`Ug8#2IK~pI zLYw1L2R|ICGf!AYtR$4}vCyITjF=}wKg6d@zK^=*qMXpNfnej9`-!!Ljxu5bv5`=> zbu1=)p)m<5{T`>J$|-sYiE|it}t;^dfF2x)Bc%IuZ%~F`4zMaI7P4 zQh{R$q3P4VLmf{LrNq^$aFh@sB9C~A=tDIwF+H||@;#x=iK$a+DHRiigonr?>IrSz zErgDxL>y5`R1VkXyVA;4^q;ROt_)0#ME(* zP%0qUT9Ka*ZIdb@me@=zB8rG%L=CZkSlxVE(ra-+x5DdGE^q>+UdIgt+>+7?uP;E= z4LHlo%FCUSN?*V&^Z6rBRCoif#|^kn;IYMC$H%*V$Mt!fWp4RWud~=KTf%dd&U|wD z{bdV%UXQBEy~OJe{M(MFa=EX(()DoHopPy7f3`ETGT@!)+*4Xc)=Sr&Qup7aO0)5wd*AHxMYuR}2z=8kXs#)9q%Ib=NtF6KfkNv_1D|_v{bdVY>(dH>E^#O HN5}sI`5w*p diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po index 7eb0d5acaa..e9b5b67b57 100644 --- a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 @@ -33,9 +32,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"文档源是将新文档提供给Mayan EDMS的方式,至少创建一个网页表单源以便能够从浏览" -"器上传文档。" +msgstr "文档源是将新文档提供给Mayan EDMS的方式,至少创建一个网页表单源以便能够从浏览器上传文档。" #: apps.py:71 msgid "Type" @@ -280,9 +277,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"对于POP3,典型的选择是110,对于基于SSL的POP3为995,对于IMAP为143,对于基于SSL" -"的IMAP为993。" +msgstr "对于POP3,典型的选择是110,对于基于SSL的POP3为995,对于IMAP为143,对于基于SSL的IMAP为993。" #: models/email_sources.py:49 msgid "Port" @@ -297,17 +292,10 @@ msgid "Password" msgstr "密码" #: models/email_sources.py:56 -#, fuzzy -#| msgid "" -#| "Name of the attachment that will contains the metadata type names and " -#| "value pairs to be assigned to the rest of the downloaded attachments. " -#| "Note: This attachment has to be the first attachment." msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments." msgstr "" -"附件的名称,其中包含要分配给其余下载附件的元数据类型名称和值对。注意:此附件" -"必须是第一个附件。" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -391,9 +379,7 @@ msgstr "设备名称" msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "" -"选择扫描模式(例如,艺术线条,单色或彩色)。如果扫描仪不支持此选项,请将其留" -"空。" +msgstr "选择扫描模式(例如,艺术线条,单色或彩色)。如果扫描仪不支持此选项,请将其留空。" #: models/scanner_sources.py:41 msgid "Mode" @@ -404,9 +390,7 @@ msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "" -"以DPI(每英寸点数)设置扫描图像的分辨率。典型值为200.如果扫描仪不支持此选项," -"请将其留空。" +msgstr "以DPI(每英寸点数)设置扫描图像的分辨率。典型值为200.如果扫描仪不支持此选项,请将其留空。" #: models/scanner_sources.py:48 msgid "Resolution" @@ -629,8 +613,8 @@ msgstr "源%s的日志条目" #: views.py:125 wizards.py:154 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "没有定义交互式文档源或没有启用任何交互式文档源,在继续之前创建一个。" #: views.py:153 views.py:171 views.py:181 @@ -717,9 +701,7 @@ msgid "" "webform, are interactive and require user input to operate. Others like the " "email sources, are automatic and run on the background without user " "intervention." -msgstr "" -"来源提供上传文件的方法。某些来源,如网页表单,是交互式的,需要用户输入才能运" -"行。其他来源,如电子邮件,是自动的,无需用户干预即可在后台运行。" +msgstr "来源提供上传文件的方法。某些来源,如网页表单,是交互式的,需要用户输入才能运行。其他来源,如电子邮件,是自动的,无需用户干预即可在后台运行。" #: views.py:629 msgid "No sources available" diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index 9bcafbf556..6eb2218900 100644 --- a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index 37b0f145b0..e35ff1c6f5 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po index 6690da812a..052bd855bd 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ilvana Dollaroviq , 2018 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Atdhe Tabaku \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -28,6 +26,4 @@ msgstr "Skladište" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Privremeni direktorijum korišćen širokim spektrom za čuvanje sličica, " -"preglednika i privremenih datoteka." +msgstr "Privremeni direktorijum korišćen širokim spektrom za čuvanje sličica, preglednika i privremenih datoteka." diff --git a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po index c0fe359bf5..66c1d1a45f 100644 --- a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jiri Fait , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po index 90c6fd71c5..4481415826 100644 --- a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rasmus Kierudsen , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po index b86ac8d255..37533157b5 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-28 21:14+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "Dateispeicher" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Temporäres Verzeichnis zum systemweiten Speichern von Miniaturbildern, " -"Vorschauen und temporären Dateien. " +msgstr "Temporäres Verzeichnis zum systemweiten Speichern von Miniaturbildern, Vorschauen und temporären Dateien. " diff --git a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po index 07e1b5e0ec..8b271b1d8a 100644 --- a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian \n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -26,6 +25,4 @@ msgstr "Αποθηκευτικός χώρος" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Προσωρινός φάκελος που χρησιμοποιείται από όλο τον ιστότοπο για να " -"αποθηκεύονται μικρογραφίες, προεπισκοπήσεις και προσωρινά αρχεία." +msgstr "Προσωρινός φάκελος που χρησιμοποιείται από όλο τον ιστότοπο για να αποθηκεύονται μικρογραφίες, προεπισκοπήσεις και προσωρινά αρχεία." diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index 9e664155a4..bbec3ca92e 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015,2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-28 01:42+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "Almacenamiento" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Directorio temporero utilizado en todo la instalación para almacenar " -"imágenes en miniatura, visualizaciones y archivos temporeros." +msgstr "Directorio temporero utilizado en todo la instalación para almacenar imágenes en miniatura, visualizaciones y archivos temporeros." diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index d22dde4ac8..171637f06b 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mehdi Amani \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "ذخیره سازی" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"دایرکتوری موقت از سایت گسترده برای ذخیره ریز عکسها، پیش نمایش ها و فایل های " -"موقت استفاده می کند." +msgstr "دایرکتوری موقت از سایت گسترده برای ذخیره ریز عکسها، پیش نمایش ها و فایل های موقت استفاده می کند." diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 6f6d7b3570..901fef4bad 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yves Dubois \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "Stockage" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Répertoire temporaire utilisé pour stocker les vignettes, aperçus et " -"fichiers temporaires." +msgstr "Répertoire temporaire utilisé pour stocker les vignettes, aperçus et fichiers temporaires." diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index 47896c820e..72b48b7657 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 46dc9c112f..d18f2cbe14 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Adek Lanin, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-14 11:35+0000\n" "Last-Translator: Adek Lanin\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index df3d9fe8e1..a123e5ba31 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "Magazzino " msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, " -"anteprime e files temporanei" +msgstr "Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, anteprime e files temporanei" diff --git a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po index 410679571c..e61cc754b5 100644 --- a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:51+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -28,6 +26,4 @@ msgstr "Glabāšana" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Pagaidu katalogs, ko izmanto vietnes platumā, lai saglabātu sīktēlus, " -"priekšskatījumus un pagaidu failus." +msgstr "Pagaidu katalogs, ko izmanto vietnes platumā, lai saglabātu sīktēlus, priekšskatījumus un pagaidu failus." diff --git a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po index 7df584d74f..d36bf452b2 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Johan Braeken\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "Opslag" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Globale instelling voor een tijdelijke folder om miniaturen, voorvertoningen " -"en tijdelijke bestanden in op te slaan." +msgstr "Globale instelling voor een tijdelijke folder om miniaturen, voorvertoningen en tijdelijke bestanden in op te slaan." diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 3e97982b3b..feb774f436 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniel Winiarski , 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -29,6 +26,4 @@ msgstr "Magazyn" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Katalog tymczasowy używany jest ogólnie do przechowywania miniaturek, plików " -"poglądowych i plików tymczasowych." +msgstr "Katalog tymczasowy używany jest ogólnie do przechowywania miniaturek, plików poglądowych i plików tymczasowych." diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index 648518cd57..a288ed220a 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po index 4adbf8c322..10d6f9fb33 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 @@ -27,6 +26,4 @@ msgstr "Armazenamento" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Pasta temporária utilizada em todo o site para armazenar imagens em " -"miniatura, visualizações e arquivos temporários." +msgstr "Pasta temporária utilizada em todo o site para armazenar imagens em miniatura, visualizações e arquivos temporários." diff --git a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po index f99e6778a3..238c83439e 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Stefaniu Criste , 2016 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:9 settings.py:9 msgid "Storage" @@ -28,6 +26,4 @@ msgstr "Stocare" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" -"Directorul temporar a folosit în server pentru a stoca miniaturi, " -"previzualizări și fișiere temporare." +msgstr "Directorul temporar a folosit în server pentru a stoca miniaturi, previzualizări și fișiere temporare." diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index bdcd3f3795..ee81d6b63d 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po index d798d1418f..69645b451f 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:9 settings.py:9 msgid "Storage" diff --git a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po index 4632719fd6..0be8df6015 100644 --- a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # serhatcan77 , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po index 83624ef004..ab32dfb236 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po index a4e0c702eb..04bd0d0da0 100644 --- a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:9 diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index 07e5dca1b6..4faf9f0105 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 @@ -312,8 +310,7 @@ msgstr "" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index 3f36d189e6..aa6d05d178 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2012 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po index f3b9a2018f..7102e93430 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Atdhe Tabaku , 2018 # www.ping.ba , 2013 @@ -12,14 +12,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 @@ -143,17 +141,13 @@ msgstr "Ukloni tagove iz dokumenta" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Spisak primarnih ključeva dokumenata koji su odvojeni zarezom na koje će ova " -"oznaka biti pričvršćena." +msgstr "Spisak primarnih ključeva dokumenata koji su odvojeni zarezom na koje će ova oznaka biti pričvršćena." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"API URL koji pokazuje oznaku u odnosu na dokument koji je prikačen na njega. " -"Ova URL adresa se razlikuje od URL kanonskog oznaka." +msgstr "API URL koji pokazuje oznaku u odnosu na dokument koji je prikačen na njega. Ova URL adresa se razlikuje od URL kanonskog oznaka." #: serializers.py:106 msgid "Primary key of the tag to be added." diff --git a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po index d869fb1603..32243253de 100644 --- a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 diff --git a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po index 97cccce2c5..80aa00e8e5 100644 --- a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 diff --git a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po index 946777fc21..cb211ab66d 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015-2016 # Jesaja Everling , 2017 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -143,17 +142,13 @@ msgstr "Tags von Dokumenten entfernen" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Kommagetrennte Liste der Primärschlüssel von Dokumenten, denen dieser Tag " -"zugeordnet werden soll." +msgstr "Kommagetrennte Liste der Primärschlüssel von Dokumenten, denen dieser Tag zugeordnet werden soll." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"API URL, die auf den Tag in Beziehung auf das Dokument verweist. Diese URL " -"ist unterschiedlich von der kanonischen Tag-URL." +msgstr "API URL, die auf den Tag in Beziehung auf das Dokument verweist. Diese URL ist unterschiedlich von der kanonischen Tag-URL." #: serializers.py:106 msgid "Primary key of the tag to be added." diff --git a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po index 8bd0b1b2cb..6db8d8a42e 100644 --- a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/" -"el/)\n" -"Language: el\n" +"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -140,9 +139,7 @@ msgstr "Αφαίρεση ετικετών από έγγραφα" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Λίστα (χωρισμένη με κόμμα) πρωτευόντων κελιδιών εγγράφων στα οποία θα " -"προσαρτηθεί αυτή η ετικέτα." +msgstr "Λίστα (χωρισμένη με κόμμα) πρωτευόντων κελιδιών εγγράφων στα οποία θα προσαρτηθεί αυτή η ετικέτα." #: serializers.py:86 msgid "" @@ -192,8 +189,7 @@ msgstr "Έγγραφο \"%(document)s\" είναι ήδη σημασμένο ω #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Ετικέτα \"%(tag)s\" επικολήθηκε με επιτυχία στο έγγραφο \"%(document)s\"." +msgstr "Ετικέτα \"%(tag)s\" επικολήθηκε με επιτυχία στο έγγραφο \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -301,8 +297,7 @@ msgstr "Το έγγραφο \"%(document)s\" δεν ήταν σημασμένο #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Η ετικέτα \"%(tag)s\" αφαιρέθηκε επιτυχώς από το έγγραφο \"%(document)s\"." +msgstr "Η ετικέτα \"%(tag)s\" αφαιρέθηκε επιτυχώς από το έγγραφο \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 24ba51f25e..d5df51bd66 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # jmcainzos , 2014 # Lory977 , 2015 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-28 19:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -143,17 +142,13 @@ msgstr "Retirar etiquetas de los documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Lista separada por comas de los ID primarios de documentos a los que se " -"adjuntará esta etiqueta." +msgstr "Lista separada por comas de los ID primarios de documentos a los que se adjuntará esta etiqueta." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"URL de la API que apunta a una etiqueta en relación con el documento " -"adjunto a ella. Esta URL es diferente de la URL canónica de la etiqueta." +msgstr "URL de la API que apunta a una etiqueta en relación con el documento adjunto a ella. Esta URL es diferente de la URL canónica de la etiqueta." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -247,9 +242,7 @@ msgstr "Editar etiqueta: %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "" -"Las etiquetas son propiedades codificadas por colores que se pueden adjuntar " -"o retirar de los documentos." +msgstr "Las etiquetas son propiedades codificadas por colores que se pueden adjuntar o retirar de los documentos." #: views.py:221 msgid "No tags available" @@ -307,8 +300,7 @@ msgstr "Documento \"%(document)s\" no esta etiquetado con \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index b328275ea6..f125e225bd 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2018 # Mohammad Dashtizadeh , 2013 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -142,16 +141,13 @@ msgstr "برچسب ها را از اسناد حذف کنید" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"لیست کاملی از کلیدهای اصلی اسناد که این برچسب به آن متصل می شوند جدا شده است." +msgstr "لیست کاملی از کلیدهای اصلی اسناد که این برچسب به آن متصل می شوند جدا شده است." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"URL API اشاره به یک برچسب در رابطه با سند متصل به آن. این URL متفاوت از URL " -"تگ های کانونی است." +msgstr "URL API اشاره به یک برچسب در رابطه با سند متصل به آن. این URL متفاوت از URL تگ های کانونی است." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -190,8 +186,7 @@ msgstr "برچسب ها باید متصل شوند" #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "" -"سند \"%(document)s\" در حال حاضر به عنوان \"%(tag)s\" برچسب گذاری شده است" +msgstr "سند \"%(document)s\" در حال حاضر به عنوان \"%(tag)s\" برچسب گذاری شده است" #: views.py:122 #, python-format diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 98d402e4ce..4eefe3df93 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015,2017 # Christophe CHAUVET , 2015 @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -146,17 +145,13 @@ msgstr "Retirer des étiquettes des documents" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Liste séparée par des virgules des clés primaires de document auxquelles " -"cette étiquette sera jointe." +msgstr "Liste séparée par des virgules des clés primaires de document auxquelles cette étiquette sera jointe." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"URL de l'API pointant vers une étiquette en relation au document qui s'y " -"rattache. Cette URL est différente de l'URL de l'étiquette canonique." +msgstr "URL de l'API pointant vers une étiquette en relation au document qui s'y rattache. Cette URL est différente de l'URL de l'étiquette canonique." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -170,8 +165,7 @@ msgstr "Demande d'attachement d'une étiquette effectuée sur %(count)d document #: views.py:40 #, python-format msgid "Tag attach request performed on %(count)d documents" -msgstr "" -"Demande d'attachement d'une étiquette effectuée sur %(count)d documents" +msgstr "Demande d'attachement d'une étiquette effectuée sur %(count)d documents" #: views.py:47 msgid "Attach" @@ -201,9 +195,7 @@ msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s" -"\"." +msgstr "L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -253,9 +245,7 @@ msgstr "Modifier l'étiquette : %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "" -"Les étiquettes sont des propriétés, avec un code de couleur, pouvant être " -"attachées ou supprimées à des documents." +msgstr "Les étiquettes sont des propriétés, avec un code de couleur, pouvant être attachées ou supprimées à des documents." #: views.py:221 msgid "No tags available" @@ -313,9 +303,7 @@ msgstr "Le document \"%(document)s\" n'a pas été étiquetté comme \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"L'étiquette \"%(tag)s\" à été retirée avec succès du document \"%(document)s" -"\"." +msgstr "L'étiquette \"%(tag)s\" à été retirée avec succès du document \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index c7fb3e6ab2..fd1f374bd2 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -141,17 +140,13 @@ msgstr "Címkék levétele a dokumentumokról" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Vesszővel elválasztott lista az elsődleges dokumentum kulcsokkal amihez ez a " -"címke hozzá lesz rendelve." +msgstr "Vesszővel elválasztott lista az elsődleges dokumentum kulcsokkal amihez ez a címke hozzá lesz rendelve." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"A dokumentumhoz kapcsolt címke API URL hivatkozása. Ez az URL más a " -"kanonikus címke URL-től. " +msgstr "A dokumentumhoz kapcsolt címke API URL hivatkozása. Ez az URL más a kanonikus címke URL-től. " #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -195,8 +190,7 @@ msgstr "A \"%(document)s\" dokumentum már meg van címkézve mint \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"A \"%(tag)s\" címke sikeresen hozzárendelve a \"%(document)s\" dokumentumhoz." +msgstr "A \"%(tag)s\" címke sikeresen hozzárendelve a \"%(document)s\" dokumentumhoz." #: views.py:131 msgid "Create tag" @@ -304,9 +298,7 @@ msgstr "A \"%(document)s\" dokumentum nem lett \"%(tag)s\"-el megcímkézve" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"A \"%(tag)s\" címke sikeresen leszedésre került a \"%(document)s\" " -"dokumentumról." +msgstr "A \"%(tag)s\" címke sikeresen leszedésre került a \"%(document)s\" dokumentumról." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index 3553220c03..b52fcc29b6 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index 72a37b2429..5f89a7bbb3 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016-2017 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -144,17 +143,13 @@ msgstr "Rimuovi etichetta dal documento" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Lista separata da virgole di chiavi primarie di tipi documento da allegare a " -"questo tag." +msgstr "Lista separata da virgole di chiavi primarie di tipi documento da allegare a questo tag." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"API URL che indica un tag in relazione al documento a cui è associato. " -"Questo URL è diverso dall'originale canonico URL." +msgstr "API URL che indica un tag in relazione al documento a cui è associato. Questo URL è diverso dall'originale canonico URL." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -198,9 +193,7 @@ msgstr "Il documento \"%(document)s\" è stato già etichettato come \"%(tag)s\" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"L'etichetta \"%(tag)s\" è stata allegata con successo al documento " -"\"%(document)s\"" +msgstr "L'etichetta \"%(tag)s\" è stata allegata con successo al documento \"%(document)s\"" #: views.py:131 msgid "Create tag" @@ -308,8 +301,7 @@ msgstr "" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." +msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.mo index ce0ac10c134f8a481b6622cfbb82e5e6b2bbf5bb..1a556e80dc4fe23e3850953745e3f828ad0c6af0 100644 GIT binary patch delta 2065 zcmaLXZ%kEn9LMo5e-uHvzy&1H@IZq65d=gcq5@?+NTyaUGas}o9O;JKi=2Zjd~oZ5 zZ2f)EnXc?fx}Kz?)!5uxZa$$W)<$lw)!N!}t-1cUmeaYm-k)=?C^P%*e$VUt`JLbI z`}=e5Tg~S-r@o8k9yiK%Vja}^gqa^o~A!;4sgUm|VW6?_1HLM0ZVRV7-E zO3XneunE=CV1Wpxhwb>{)oNwZ*{a*g(IjD&fpgO1T}TPq8eDvp&6st zg1yKiOQPPJM!h$SYw&y2h;QO9)UeB8H>$sbm@4Ds7$>E85*_>yt8oEI(*8uvz)e(# z>zUtES!Rvc#Pt`f(>Pv7br@$oscH$-OdiE3zJV{|d#Ls+i&=kV(o>wC+Wq(p*9TAu zeTw1cL9OXk)Dm1n+OU669Tn2cUaZ6}oXB_<)&38ty_7>1GKv~lb(Hy62Thq9{m9RD za!>~`Y{$dM^4t4JTQ-~V0@iVT3AIdC-|>gEL#`P(kB{(ias?hjn-R*En}Mr zE$2%555IlR!}4H8{o}O~4-;A^6-}3lzF{rVt)gYBCAx`C#6yIZiWLe!Lv7ggg#II# zoN$&kgKb202Zv@trIXNR+(Kw-^{kiB^lOua8w-1aSC(DwsI4DLPA2?@VP`lwG&$xb zeCzZ5*wFKi9~3xHaf?^Evi{^~I1Qe&w3?G}{rG6iiTTs> zXUFCP-*ZOiUsk2`i@_hojT(g)RF@?3Z{I#$@^o;cX>~B0zb2R{J)h+TEoEj zjfgKsIFT3Q12Hi{d>|>&5XBdkK)^&3^}%3ji189N2H#BMgWunF7L8)!$^7Rt+nG7% zfBxr8-|s!rU6_kizhSi7iIv2fO0x$sSxQB3ac<#YsO*gIo0DJF2QZs zf_LF^+>5+oFX0Hjic9e_HkuXeCoa^%JaSmgqJ;+{s192&jU70E4`B)q<4t%LBX|WH z@K;=nf8YwNtuxbHR->M4N8Rtk4#u}FTqwf~HsJ*Fu04;p;LE7Qj-wJiiAwB4R08Kw z1AT{GsNQuyiK^5F+=`oV7@xzN@eHOJ-@fLe4;$%SCA$OF!6Vp>Phk%pMGia1Nfr4F z^R*KoEXzuQ4>m`DmxVZ9z`YiSQGWv08{*7GtMB( zXdfeooe%vAJNW%GYH!4OTM4zG67EDLFc5klCixwp5;=z23nx(%IEA|~QegU>Ts)53 z@DOgtOQ=m1Wx+H+7jD6gs896(s^inB=P#ft(ZGW1Gaf}P%@mH}eq>C$gsSu$YJ!D% zE*Q%q%N90^hw5MeHSoQ-27P3|*g<3~l$v(6W~maZ4H4u~YI;{+hyHgA5Ufn8g4(ER znlwWfY%Lf1{Io$dBehk;dZJQ4!q!*52vv2|R240WmQ78|*-hL^X!Euc<<=iwXjAqO z8}*g&i!28m%pRnw-@j@H_%Y80nbR+YGy@Q5x#Z4+?=ks`Er z(!^~lm)50?PwS zI?HBA#lKEx^`*f}y}56j)-4J%cTKTu{5oT~L$R@nyqk+X>n_GuEh*0YHJPjN=H)i( z@41%5-%@mmL`SOJ-9MA-`Omi=NVF#Z*IQxD+>yi?cTe+c?wjT}BPw1tckW, 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-05-31 12:52+0000\n" +"PO-Revision-Date: 2019-06-28 11:50+0000\n" "Last-Translator: Māris Teivāns \n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 @@ -36,15 +34,15 @@ msgstr "Tagam pievienots dokuments" #: events.py:13 msgid "Tag created" -msgstr "Tag izveidots" +msgstr "Tags izveidots" #: events.py:16 msgid "Tag edited" -msgstr "Tag rediģēts" +msgstr "Tags rediģēts" #: events.py:19 msgid "Tag removed from document" -msgstr "Tag ir noņemta no dokumenta" +msgstr "Tags ir noņemts no dokumenta" #: links.py:16 workflow_actions.py:75 msgid "Remove tag" @@ -76,7 +74,7 @@ msgstr "Visi" #: methods.py:20 msgid "Return a the tags attached to the document." -msgstr "Atgrieziet dokumentam pievienotās atzīmes." +msgstr "Atgrieziet dokumentam pievienotos tagus." #: methods.py:22 msgid "get_tags()" @@ -84,7 +82,7 @@ msgstr "get_tags ()" #: models.py:28 msgid "A short text used as the tag name." -msgstr "Īss teksts, ko izmanto kā atzīmes nosaukumu." +msgstr "Īss teksts, ko izmanto kā taga nosaukumu." #: models.py:29 search.py:16 msgid "Label" @@ -100,7 +98,7 @@ msgstr "Krāsa" #: models.py:41 msgid "Tag" -msgstr "Tag" +msgstr "Tags" #: models.py:84 msgid "Preview" @@ -108,7 +106,7 @@ msgstr "Priekšskatījums" #: models.py:113 msgid "Document tag" -msgstr "Dokumenta atzīme" +msgstr "Dokumenta tags" #: models.py:114 msgid "Document tags" @@ -116,7 +114,7 @@ msgstr "Dokumentu tagi" #: permissions.py:10 msgid "Create new tags" -msgstr "Izveidojiet jaunas atzīmes" +msgstr "Izveidojiet jaunus tagus" #: permissions.py:13 msgid "Delete tags" @@ -132,7 +130,7 @@ msgstr "Rediģēt tagus" #: permissions.py:22 msgid "Attach tags to documents" -msgstr "Pievienojiet dokumentus dokumentiem" +msgstr "Pievienojiet tagus dokumentiem" #: permissions.py:25 msgid "Remove tags from documents" @@ -142,21 +140,17 @@ msgstr "Noņemiet tagus no dokumentiem" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Komatu atdalītu dokumentu primāro atslēgu saraksts, kurām šī atzīme tiks " -"pievienota." +msgstr "Komatu atdalītu dokumentu primāro atslēgu saraksts, kurām šis tags tiks pievienots." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"API URL, kas norāda uz tagu saistībā ar tam pievienoto dokumentu. Šis URL " -"atšķiras no kanoniskā taga URL." +msgstr "API URL, kas norāda uz tagu saistībā ar tam pievienoto dokumentu. Šis URL atšķiras no kanoniskā taga URL." #: serializers.py:106 msgid "Primary key of the tag to be added." -msgstr "Pievienojamās taga primārā atslēga." +msgstr "Pievienojamā taga primārā atslēga." #: views.py:38 #, python-format @@ -176,9 +170,9 @@ msgstr "Pievienojiet" #, python-format msgid "Attach tags to %(count)d document" msgid_plural "Attach tags to %(count)d documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Pievienojiet tagus dokumentiem %(count)d" +msgstr[1] "Pievienojiet tagus dokumentam %(count)d" +msgstr[2] "Pievienojiet tagus dokumentiem %(count)d" #: views.py:61 #, python-format @@ -192,15 +186,12 @@ msgstr "Pievienotie tagi." #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "" -"Dokuments "%(document)s" jau ir atzīmēts kā "%(tag)s"" +msgstr "Dokuments \"%(document)s\" jau ir atzīmēts kā \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Tag "%(tag)s", kas veiksmīgi pievienots dokumentam "" -"%(document)s"." +msgstr "Tag \"%(tag)s\", kas veiksmīgi pievienots dokumentam \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -235,12 +226,12 @@ msgstr "Dzēst tagu: %s" #: views.py:179 #, python-format msgid "Tag \"%s\" deleted successfully." -msgstr "Tag "%s" veiksmīgi izdzēsta." +msgstr "Tag \"%s\" veiksmīgi izdzēsta." #: views.py:184 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "Dzēšot tagu "%(tag)s", radās kļūda: %(error)s" +msgstr "Dzēšot tagu \"%(tag)s\", radās kļūda: %(error)s" #: views.py:199 #, python-format @@ -251,9 +242,7 @@ msgstr "Rediģēt tagu: %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "" -"Tags ir krāsu kodētas īpašības, kuras var pievienot vai noņemt no " -"dokumentiem." +msgstr "Tags ir krāsu kodētas īpašības, kuras var pievienot vai noņemt no dokumentiem." #: views.py:221 msgid "No tags available" @@ -291,9 +280,9 @@ msgstr "Noņemt" #, python-format msgid "Remove tags to %(count)d document" msgid_plural "Remove tags to %(count)d documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Noņemiet tagus dokumentiem %(count)d" +msgstr[1] "Noņemiet tagus dokumentam %(count)d" +msgstr[2] "Noņemiet tagus dokumentiem %(count)d" #: views.py:312 #, python-format @@ -307,14 +296,12 @@ msgstr "Atceltās atzīmes." #: views.py:361 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" -msgstr "Dokuments "%(document)s" netika atzīmēts kā "%(tag)s" +msgstr "Dokuments \"%(document)s\" netika atzīmēts kā \"%(tag)s\"" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Tag "%(tag)s" veiksmīgi noņemts no dokumenta "" -"%(document)s"." +msgstr "Tag \"%(tag)s\" veiksmīgi noņemts no dokumenta \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po index 7958117bbc..18cd5bd555 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -230,8 +229,7 @@ msgstr "Label \"%s\" verwijderd." #: views.py:184 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "" -"Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" +msgstr "Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" #: views.py:199 #, python-format diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index 2655d65f26..cf1e219fc9 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # mic , 2012,2015 @@ -14,15 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 @@ -146,17 +143,13 @@ msgstr "Usuń tagi z dokumentów" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Rozdzielona przecinkami lista kluczy głównych dokumentu, do którego ten tag " -"zostanie dołączony." +msgstr "Rozdzielona przecinkami lista kluczy głównych dokumentu, do którego ten tag zostanie dołączony." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"API URL wskazujący na tag w relacji do dokumentu, do którego został " -"dołączony. URL ten różni się od kanonicznego URL-a taga." +msgstr "API URL wskazujący na tag w relacji do dokumentu, do którego został dołączony. URL ten różni się od kanonicznego URL-a taga." #: serializers.py:106 msgid "Primary key of the tag to be added." diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index f251686c63..64de3f063e 100644 --- a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Emerson Soares , 2011 # Roberto Rosario, 2012 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 diff --git a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po index 0f02f7a338..7d575f1129 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -144,18 +143,13 @@ msgstr "Remover etiquetas de documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Lista separada por vírgulas das chaves primárias do documento para as quais " -"essa etiqueta será anexada." +msgstr "Lista separada por vírgulas das chaves primárias do documento para as quais essa etiqueta será anexada." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"API URL que aponta para uma tag em relação ao documento anexado a ela. Esse " -"URL é diferente do URL da etiqueta que está de acordo com as normas " -"estabelecidas." +msgstr "API URL que aponta para uma tag em relação ao documento anexado a ela. Esse URL é diferente do URL da etiqueta que está de acordo com as normas estabelecidas." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -199,8 +193,7 @@ msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -308,8 +301,7 @@ msgstr "Documento \"%(document)s\" não estava etiquetado como \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po index ead3f12ef3..aac67ab4cd 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Abalaru Paul , 2013 # Badea Gabriel , 2013 @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 @@ -145,17 +143,13 @@ msgstr "Îndepărtați etichetele de pe documente" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Lista separată prin virgulă de chei primare pentru documente la care va fi " -"atașată această etichetă." +msgstr "Lista separată prin virgulă de chei primare pentru documente la care va fi atașată această etichetă." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"Adresă URL API care indică o etichetă în raport cu documentul atașat la " -"aceasta. Această adresă URL este diferită de adresa URL a etichetei canonice." +msgstr "Adresă URL API care indică o etichetă în raport cu documentul atașat la aceasta. Această adresă URL este diferită de adresa URL a etichetei canonice." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -200,8 +194,7 @@ msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." +msgstr "Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -252,9 +245,7 @@ msgstr "Modifică eticheta: %s" msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "" -"Etichetele sunt proprietăți codate în culori care pot fi atașate sau " -"eliminate din documente." +msgstr "Etichetele sunt proprietăți codate în culori care pot fi atașate sau eliminate din documente." #: views.py:221 msgid "No tags available" @@ -313,9 +304,7 @@ msgstr "Documentul \"%(document)s\" nu a fost etichetat ca \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s" -"\"." +msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 50031cc24a..24fed088a7 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" @@ -11,15 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 diff --git a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po index 65c726b76e..5edfc0069c 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # kontrabant , 2013 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 diff --git a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po index aed81cc7f3..4cb87bef56 100644 --- a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nurgül Özkan , 2017 # serhatcan77 , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 @@ -142,16 +141,13 @@ msgstr "Dokümanlardan etiketleri kaldır" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" -"Bu etiketin ekleneceği birincil anahtarların virgülle ayrılmış listesi." +msgstr "Bu etiketin ekleneceği birincil anahtarların virgülle ayrılmış listesi." #: serializers.py:86 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "" -"Eklenmiş belgeyle ilişkili olarak bir etiketi işaret eden API URL'si. Bu " -"URL, kanuni etiket URL'sinden farklı." +msgstr "Eklenmiş belgeyle ilişkili olarak bir etiketi işaret eden API URL'si. Bu URL, kanuni etiket URL'sinden farklı." #: serializers.py:106 msgid "Primary key of the tag to be added." @@ -303,8 +299,7 @@ msgstr "\"%(document)s\" dokümanı \"%(tag)s\" olarak etiketlenemedi" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"\"%(tag)s\" Etiketi \"%(document)s\" dokümanından başarıyla kaldırıldı." +msgstr "\"%(tag)s\" Etiketi \"%(document)s\" dokümanından başarıyla kaldırıldı." #: wizard_steps.py:18 msgid "Select tags" diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po index 4a638e1356..1cc247a343 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 diff --git a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po index 09dc34cd7c..1d7406ee59 100644 --- a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 diff --git a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po index 5edce3e796..4e719ac266 100644 --- a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Yaman Sanobar , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po index 3fafbe642f..5d0fea9711 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" -"bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po index 517819a479..8c7cb1d140 100644 --- a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # www.ping.ba , 2017 # Ilvana Dollaroviq , 2018 # Atdhe Tabaku , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -17,14 +17,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" -"rosarior/teams/13584/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po index ab68e276a1..c3cd3ed806 100644 --- a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jiri Fait , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po index 05b3995307..cdea028709 100644 --- a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Rasmus Kierudsen , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/" -"teams/13584/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po index f38d1fa562..43bd0c0c71 100644 --- a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Felix , 2018 # Mathias Behrle , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mathias Behrle , 2019\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" -"teams/13584/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po index 5affd50dfb..657212a839 100644 --- a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Hmayag Antonian , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po index 238d5d497b..b6c0a25e8b 100644 --- a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po index ce60c4929a..3596a635c2 100644 --- a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Mehdi Amani , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -16,10 +16,10 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po index 9338af2ace..e9b5664515 100644 --- a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Thierry Schott , 2017 # Christophe CHAUVET , 2017 # Yves Dubois , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -17,10 +17,10 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yves Dubois , 2018\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po index 65bf8f6381..c7b51aa0df 100644 --- a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # molnars , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: molnars , 2017\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" -"hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po index 5e5adf6c9c..1d5210e797 100644 --- a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Adek Lanin, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Adek Lanin, 2019\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" -"id/)\n" -"Language: id\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po index f02910a48e..4de41c3acd 100644 --- a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po @@ -2,13 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Pierpaolo Baldan , 2017 # Roberto Rosario, 2017 # Giovanni Tricarico , 2017 # Marco Camplese , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -18,10 +18,10 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Marco Camplese , 2017\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po index 3a9af79eb1..3ae8f7bbdd 100644 --- a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Māris Teivāns , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po index eabcf11e8c..eabc89329b 100644 --- a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Evelijn Saaltink , 2017 # Lucas Weel , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -15,12 +15,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Lucas Weel , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" -"teams/13584/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po index e245ae4dca..8400e6daad 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Wojciech Warczakowski , 2018 -# +# #, fuzzy msgid "" msgstr "" @@ -15,13 +15,11 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po index 97b2d66d39..8fa2323133 100644 --- a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Manuela Silva , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -13,14 +13,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" -"Last-Translator: Manuela Silva , " -"2017\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" -"pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po index 8a1fa7acaa..f2e6e96ab0 100644 --- a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Jadson Ribeiro , 2017 # Aline Freitas , 2017 # Roberto Rosario, 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -16,12 +16,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" -"teams/13584/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po index 3d545d7a94..4f13b13705 100644 --- a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefaniu Criste , 2017 # Roberto Rosario, 2017 # Harald Ersch, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -16,14 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Harald Ersch, 2019\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" -"teams/13584/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po index 68cbb13dbb..c3dd602f11 100644 --- a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # D Muzzle , 2017 # panasoft , 2017 # lilo.panic, 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -17,13 +17,11 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: lilo.panic, 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po index dc873f9d43..16c27b4c6b 100644 --- a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # kontrabant , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,14 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: kontrabant , 2017\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" -"teams/13584/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" diff --git a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po index 4617c3853f..13df484482 100644 --- a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # serhatcan77 , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: serhatcan77 , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/" -"teams/13584/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po index d58f7ea64e..78d4bdf1e7 100644 --- a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Roberto Rosario, 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -14,12 +14,11 @@ msgstr "" "POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" -"teams/13584/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po index 4d7aa8bbff..152e64e9eb 100644 --- a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po @@ -2,10 +2,10 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -15,10 +15,10 @@ msgstr "" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" -"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:12 permissions.py:7 diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo index 54987bd30cd441004f821448016d8ab455d610d4..a3eb11c9dd612ef2c7bf50c137736cb05b164b72 100644 GIT binary patch delta 21 ccmZn?XcE|PlbOTFQo+E?%E)N*LuN%507j|?1ONa4 delta 21 ccmZn?XcE|PlbOTNRKdX9%EWT>LuN%507k9`2><{9 diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po index c6ff375cfc..39728d03ec 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" @@ -267,9 +265,7 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user and staff user deleting is not allowed, use the admin interface " -"for these cases." +msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo index cd82a2977d25868e155d0f3a9bb92ca0c60f91a2..ed41735569cae824ffbe3b24f7a39fd3d53694e1 100644 GIT binary patch delta 21 ccmeAb>J{2>h?&F4Qo+E?%E)N*DQ0I@07oYV6951J delta 21 ccmeAb>J{2>h?&FCRKdX9%EWT>DQ0I@07okZ7ytkO diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po index 06267cd5bd..2cb19381fc 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -262,9 +261,7 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Изтриване на потребители от супер потребител и служител не е разрешено. " -"Използвайте администраторския модул за тези случаи." +msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo index 0ea132d810daa738521b1029bb1641a00350ea76..45a2cd773d8bc47c45ea811221a786c016d3b827 100644 GIT binary patch delta 21 ccmaDL^FU^UDF=s, 2018 # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" @@ -78,16 +76,12 @@ msgid "All the users." msgstr "Svi korisnici." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Dostupni korisnici" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Dostupne grupe" +msgstr "" #: events.py:12 msgid "Group created" @@ -191,8 +185,7 @@ msgstr "korisnik" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Lista odvojenih grupisanih primarnih ključeva za određivanje ovog korisnika." +msgstr "Lista odvojenih grupisanih primarnih ključeva za određivanje ovog korisnika." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -270,9 +263,7 @@ msgstr "Izbrisati korisnike: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user i staff user brisanja nisu dozvoljena, koristite administratorski " -"interface za takve slučajeve" +msgstr "Super user i staff user brisanja nisu dozvoljena, koristite administratorski interface za takve slučajeve" #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.mo index acc0d73b4ae20643202b33042973864980b3db20..84e822bfc9c1f116094576993fc671e2c4def287 100644 GIT binary patch delta 19 acmdnYvYBPVUJfHm1p_lHBcqK+^B4g@3= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" diff --git a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.mo index 7b2f44fe0a4974e8ba4b34c1bde92a552bdd857c..b68cb3bc4eb98e601dbad55f767912d4e84e0bcf 100644 GIT binary patch delta 21 ccmeyv@`q)E9wUd5rGkN(m66eAGe$Q?07|(9r~m)} delta 21 ccmeyv@`q)E9wUdLse*yIm5JqMGe$Q?07|_DtpET3 diff --git a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po index 44bfce10a4..b0fafa5853 100644 --- a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-" -"edms/language/da_DK/)\n" -"Language: da_DK\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo index 7d8efa55855675946963cdd262f9592e09518f67..cab28af9a224a3211c73a09d9ee5ce4e3ce9faad 100644 GIT binary patch delta 21 ccmaE${y=@hac&MHO9cZnD, 2015-2016 # Fabian Solf , 2017 @@ -17,14 +17,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -84,16 +83,12 @@ msgid "All the users." msgstr "Alle Benutzer." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Group users" msgid "Total users" -msgstr "Gruppenmitglieder" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Verfügbare Gruppen" +msgstr "" #: events.py:12 msgid "Group created" @@ -197,15 +192,11 @@ msgstr "Benutzername" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Kommagetrennte Liste von Gruppen-Primärschlüsseln, denen der Benutzer " -"zugeordnet werden soll." +msgstr "Kommagetrennte Liste von Gruppen-Primärschlüsseln, denen der Benutzer zugeordnet werden soll." #: serializers.py:64 msgid "List of group primary keys to which to add the user." -msgstr "" -"Liste von Gruppen-Primärschlüsseln, denen der Benutzer zugeordnet werden " -"soll." +msgstr "Liste von Gruppen-Primärschlüsseln, denen der Benutzer zugeordnet werden soll." #: utils.py:8 msgid "Anonymous" @@ -234,11 +225,7 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "" -"Benutzergruppen sind Organisationseinheiten. Sie sollten die " -"Organisationseinheiten Ihrer Organisation wiederspiegeln. Gruppen können " -"nicht für die Zugriffskontrolle verwendet werden. Benutzen Sie Rollen für " -"Berechtigungen und Zugriffskontrollen und fügen Sie ihnen Gruppen hinzu." +msgstr "Benutzergruppen sind Organisationseinheiten. Sie sollten die Organisationseinheiten Ihrer Organisation wiederspiegeln. Gruppen können nicht für die Zugriffskontrolle verwendet werden. Benutzen Sie Rollen für Berechtigungen und Zugriffskontrollen und fügen Sie ihnen Gruppen hinzu." #: views.py:119 msgid "There are no user groups" @@ -282,9 +269,7 @@ msgstr "Benutzer löschen: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " -"Administratoren-Oberfläche dafür." +msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.mo index 83bbccdb6eca2c24bfe7d6450dd3aa592a55d0e6..b7967c0f82080061e86f448c293c8b94083dc8a5 100644 GIT binary patch delta 21 ccmdn2yjgj}FLn+iO9cZnD, 2014 # jmcainzos , 2015 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:56+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -80,16 +79,12 @@ msgid "All the users." msgstr "Todos los usuarios." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Group users" msgid "Total users" -msgstr "Usuarios del grupo" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Grupos disponibles." +msgstr "" #: events.py:12 msgid "Group created" @@ -193,9 +188,7 @@ msgstr "Nombre de usuario" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Lista separada por comas de llaves primarias de grupos a ser asignados a " -"este usuario." +msgstr "Lista separada por comas de llaves primarias de grupos a ser asignados a este usuario." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -228,11 +221,7 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "" -"Los grupos de usuarios son unidades organizativas. Deben reflejar las " -"unidades organizativas de su organización. Los grupos no pueden ser " -"utilizados para el control de acceso. Use roles para permisos y control de " -"acceso, agregue grupos a ellos." +msgstr "Los grupos de usuarios son unidades organizativas. Deben reflejar las unidades organizativas de su organización. Los grupos no pueden ser utilizados para el control de acceso. Use roles para permisos y control de acceso, agregue grupos a ellos." #: views.py:119 msgid "There are no user groups" @@ -276,9 +265,7 @@ msgstr "Borrar usuario: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"No se permite eliminar el super usuario y usuario de personal. Use la " -"interfaz de administración para estos casos." +msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." #: views.py:212 #, python-format @@ -319,9 +306,7 @@ msgstr "Grupos de usuario: %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" -"Las cuentas de usuario se pueden crear desde esta vista. Después de crear " -"una cuenta de usuario, se le pedirá que establezca una contraseña para ella." +msgstr "Las cuentas de usuario se pueden crear desde esta vista. Después de crear una cuenta de usuario, se le pedirá que establezca una contraseña para ella." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo index 4cc2c66c2dd88e0ed87e21a444a27e5367f0bd89..e7330472c70a98aa4f83b05bb083e685b5b38405 100644 GIT binary patch delta 21 ccmdlizgd2R1_y_crGkN(m66eA1CC~P07KaYkpKVy delta 21 ccmdlizgd2R1_y_sse*yIm5JqM1CC~P07KmcmH+?% diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index b9313e1dd3..a00405d7c7 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014,2018 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -76,16 +75,12 @@ msgid "All the users." msgstr "تمام کاربران" #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "کاربران موجود" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "گروه های موجود" +msgstr "" #: events.py:12 msgid "Group created" @@ -266,9 +261,7 @@ msgstr "حذف کاربر: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"حذف کاربر فوق العاده کاربر و کارکنان مجاز نیست، از رابط مدیر برای این موارد " -"استفاده کنید." +msgstr "حذف کاربر فوق العاده کاربر و کارکنان مجاز نیست، از رابط مدیر برای این موارد استفاده کنید." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo index 3d007e53acd151422865f3b798492f31a72efafb..786157dc4cabd8122d36302c4dee099abdfbf666 100644 GIT binary patch delta 1607 zcmY+^e`r-@9LMqJx_ixOGo6|`%{|L%v)Y>1ZR$*GjmpdzMhnD0?6`Zb9^CG^J3sC) z!D~kU82*tr8D@xxs9XOi7eOQuy$FIqqrb!?@Q)x8grFh{qW5Pz|8%&|c|GSj&yVl( zeGd1Vmwst4|J0a1VYvD!D=A&GjM<6X)7-c&WsG?WFXMc?iS;;z3-EsO{t>>x^FK-Z zmf6NEAHjh1c;p ze1IC5Vp~~Ui7RjbHGV%Tz|XNAzeIggx9}OfhpX{V)VQVvkZm3PvuskN2S^rD7W z)xf3sUaNdTOFy+vN-w3mayi|+c0Dy+%5E1$pTX-CW$i`EW{Toyq3DP=R8pCx^;@Xv z+joLMGks-yKE&YF|mXghm)v)StR^G?k!Z+D4idY;hcTI0wY_CjKcgU}Y; zxa1ZhTbqmm#af%FO@y{~hGl}t3v7-?HzNL`v)3i+VolI2~RGZMux!OeDD=?mcBYvbMv?uO<%%m(h9cp!7V}IR$4|MSh delta 1281 zcmXZcPe_w-9LMpm?%8tAX*z9|*-X>^x#i6HKbM(Ad59efG>Xh1C@2ylC}Kp1f}%qY zUJObP5!JzBhYnrr65>Hj=um-OBC2)h7J2IZY0txcdp*x@zdzsK_xrH#@fW+Zt5wdF zaUGy-rnMHEjbgvU7uSs6tO94T9A9A&=W#tQdcS{0t&#Wo69KbIp3|uL8Pxc3tj0;? zleOD?Z=mBo*5DJ*H(1N_d(;9yF@kHT*vi+LZNvzcVH~w^FKXOTRKOFcag!Lvdq|8n zjXT-jX1FP(V-XYh!5iR|6eg6SHmJoAHX|`u605KqwebjQozticUBC{!f(rOKp1?WW zgdqmivcI)(qXB7*;X%}fXK@c+#x|Vw`d3haeDTcV3eSH~Ctf59W$dHp57c^pQ5gs@ znHa1Zvr0uhH#$iZYJpDFiH1?B979dGh-Zq-uA*xDiB(m)Ur5r-$Lbm%LX|Ft0UFySn z%wQ8O~Bc_PcrEjrF&Bj&LM%c%!hwiNEbLF8lS`8t9(a0C}nZ+A6$SIH8n zk_=&-QjMVkyu*(w$s^C#sElToxlxMps11XR*2_|Z%1k4w6a%PnCsC=qjvD_M*~hwR zy7s%H&i0}<_ofpG_Z7PSuQ%Y%(xZQfL7H;f;l6cZ$xd&KvbvY1@~3Ia)-GBu0c zskB{gr9T?n$DQhxa+Cg8QLmfv4-rS9MtY-@df;l$J@YU7a=(M8ic6BIhPJNWj-K4{ MvWJ1()5xIjA88SA7ytkO diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index d68171b9b2..adf6644df5 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2014,2017 # Christophe CHAUVET , 2014 @@ -15,14 +15,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -82,16 +81,12 @@ msgid "All the users." msgstr "Tous les utilisateurs." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Group users" msgid "Total users" -msgstr "Groupe d'utilisateurs" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Groupes disponibles" +msgstr "" #: events.py:12 msgid "Group created" @@ -195,9 +190,7 @@ msgstr "utilisateur" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Liste séparée par des virgules des clés primaires de groupe pour attribuer " -"cet utilisateur à." +msgstr "Liste séparée par des virgules des clés primaires de groupe pour attribuer cet utilisateur à." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -230,11 +223,7 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "" -"Les groupes d'utilisateurs sont des unités d'organisation. Ils doivent " -"refléter les unités organisationnelles de votre organisation. Les groupes ne " -"peuvent pas être utilisés pour le contrôle d'accès. Utilisez les rôles pour " -"les autorisations et le contrôle d'accès, ajoutez-leur des groupes." +msgstr "Les groupes d'utilisateurs sont des unités d'organisation. Ils doivent refléter les unités organisationnelles de votre organisation. Les groupes ne peuvent pas être utilisés pour le contrôle d'accès. Utilisez les rôles pour les autorisations et le contrôle d'accès, ajoutez-leur des groupes." #: views.py:119 msgid "There are no user groups" @@ -256,14 +245,12 @@ msgstr "Utilisateurs du groupe : %s" #: views.py:173 #, python-format msgid "User delete request performed on %(count)d user" -msgstr "" -"Requête de suppression d'utilisateur exécutée sur %(count)d utilisateur" +msgstr "Requête de suppression d'utilisateur exécutée sur %(count)d utilisateur" #: views.py:175 #, python-format msgid "User delete request performed on %(count)d users" -msgstr "" -"Requête de suppression d'utilisateur exécutée sur %(count)d utilisateurs" +msgstr "Requête de suppression d'utilisateur exécutée sur %(count)d utilisateurs" #: views.py:183 msgid "Delete user" @@ -280,9 +267,7 @@ msgstr "Supprimer l'utilisateur: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"La suppression des comptes super utilisateur et staff n'est pas autorisée " -"ici, veuillez le faire via l'interface d'administration." +msgstr "La suppression des comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." #: views.py:212 #, python-format @@ -292,8 +277,7 @@ msgstr "Utilisateur \"%s\" supprimé avec succès." #: views.py:218 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "" -"Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" +msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" #: views.py:236 #, python-format @@ -324,7 +308,7 @@ msgstr "Membre des groupes : %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "Les comptes d'utilisateurs peuvent être créés à partir de cette page. Après avoir créé un compte d'utilisateur, vous serez invité à définir un mot de passe pour ce compte." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo index 5d8cdc7d84c18d3a3539c9886607d3e3240ae00d..c200b4fb92b449d0e70f4f394de8d54de2fa3192 100644 GIT binary patch delta 21 ccmeyy{*8TuBol{`rGkN(m66eAMW(Ba07=IN2><{9 delta 21 ccmeyy{*8TuBol|Bse*yIm5JqMMW(Ba07=UR4gdfE diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index 613f78f15d..0e450fbcdf 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # molnars , 2017 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -80,10 +79,8 @@ msgid "Total users" msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Elérhető csoportok" +msgstr "" #: events.py:12 msgid "Group created" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo index 2febbfe5edbd6d79215394947008a1b008bd1b9b..b1689a39947f3cbf7c8cdcb197a6f8dd6712347f 100644 GIT binary patch delta 21 ccmZo=ZDrkH#mHe~sbFAcWn{G3iP4!6068%P(EtDd delta 21 ccmZo=ZDrkH#mHf3s$gJlWn#J6iP4!6068@T)&Kwi diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index a13ee7988d..efeaa434f7 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 events.py:8 permissions.py:8 diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo index 9cef1d8516a6cfe037230ebac93790d369d3c2e6..e941dd4079925d5c3a6c9071497fd87903ccfe33 100644 GIT binary patch delta 21 ccmaDM`a*O=F&l@GrGkN(m66frYPMV!08lOlU;qFB delta 21 ccmaDM`a*O=F&l@Wse*yIm5Jr%YPMV!08lapWdHyG diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index 378c82203f..9124802c91 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 # Pierpaolo Baldan , 2011 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -78,16 +77,12 @@ msgid "All the users." msgstr "Tutti gli utenti" #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Utenti disponibili" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Gruppi disponibili " +msgstr "" #: events.py:12 msgid "Group created" @@ -268,9 +263,7 @@ msgstr "Cancella utente: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Al super utente e utente non è consentito la cancellazione del personale, " -"utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.mo index 6244576b699040eb8b96e2c582a2fcddd6076d17..c949d32886563ceb3294b9e51e52a72464d2abb9 100644 GIT binary patch delta 1592 zcmYM!TWB0r9LMpq>27Tj+w|VF5px;|CSJD5HjQm+Yhw^Nn%| z-Aj#GMSTP{-b3}D#I<-F`Bltm?(1oI3)kU?vGdqU{R(P=8@L9WZZSr&-Hsda4!jk2 zp(Y+i^?Mo>aD?i29GBypNQ`C{yIJ3y~YMufrL&vZWUql7`2_D2Ra1*xCsg?CjKM(3Kg6;SOmeHXWzJ^=yZ|uP?R#E!_ zR6wJ#Mf{%nbEuu~=cO|DOl$!)?s-%uPGW^%%o{u?C2ym4G>e+xbJWhhMWyr#s{fyO zB4NxwsEJ`q+Ar<2S>& z10P2P@-n8eiptd2$QVFdzSObj;ycN}dD=I@nxCi%Dcu>SAF^{KF zDO<`p$Ts9SO%E#2op=nr`2ElL5cS{j5!}wUw9pHv08SxOnpwPxpP@E-mdT~}DGwWX z_yM)x^|+p3v?kh!3ZNS`VIMd3AC5hQI=X38|JRUDV(KP zeS{BGU!g_+b$TcRlx@}X$@X3yt1dp3g})vpXAflwA#WALg$sC=-OI)J#}$O#mi>HQr<;2>*ehs-)4)x=X^U_3@5BR z5=6Ef_)}>+IO_c3;>#d^*m|}UQI7}PXTy@63dYB6fnf#b=d25Dm5$D+!VzFeOnKY<@P&(-G~TPlX*LGAjg H`G$W1*YfJG delta 1343 zcmXZcOGs2v9LMo9I%B>@$I;ZZazfO!e2n=VEiIiz2#K4(gdU`XSf*YraM2JH5=EPf zn*z~AMY@Q%PzxcFq{UcNLO}>ckc$$cT@*xpe|j%-?&qF!&*Ojo=j#1^Ps?MUg5GJv zb%e5$vOmF?UTpPpy?)x>=92;(XRgy7T)Z0+wdrZBL7crmuJJbZ896|N#Mg@Ep)o%>_cngWq z+`)3zH?usX(h$cgeD8MfCT|T$MJ$=M@}LfFScILZ1^clYN3jOy-1b#eAfH_~aFzNm)Q;msp^SZW{f3(FH!1^3 z3?>GXgE6II7Z2J=F=~Pa)Q+O4RGvT$7{)1&F_%#j{bN?0sh^78??#<@8ESkpcH=R( zK7%@H2X!QIKlv}@;VTU#sMVF)QdGxERH`~rft-ZYAL5FS2SD1(EsP%gOx(z{Uny3P`a0E4B6g8mF)j}QFO;rB}$R}Z%D7xD1 zUT>MF#=h#!_P1;`ZGL=*>^WNWAL1~jnNnvjd5gjgZXdn?bAY0(v{4c%6_i$r*4sm= zq%_)DzPyx!JSm^`cGy?siP$~94h6e;20Ev(DqOYBL*Ls(=V!{vgye92sHQPe*X$fm z4|sD*M<*_hx0LLium;A;t*x3f68PXLcHg*dp-TgUL)L}mg>!?U!O8x~W!oCJoVDOe F!he+yiar1U diff --git a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po index b26449de13..0cf2ca691d 100644 --- a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Māris Teivāns , 2019 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/" -"language/lv/)\n" -"Language: lv\n" +"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" @@ -77,16 +75,12 @@ msgid "All the users." msgstr "Visi lietotāji." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Group users" msgid "Total users" -msgstr "Grupas lietotāji" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Pieejamās grupas" +msgstr "" #: events.py:12 msgid "Group created" @@ -190,8 +184,7 @@ msgstr "lietotājvārds" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Grupu primāro taustiņu atdalīts ar komatu, lai piešķirtu šim lietotājam." +msgstr "Grupu primāro taustiņu atdalīts ar komatu, lai piešķirtu šim lietotājam." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -224,10 +217,7 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "" -"Lietotāju grupas ir organizatoriskas vienības. Tām jāatspoguļo jūsu " -"organizācijas organizatoriskās vienības. Grupas nevar izmantot piekļuves " -"kontrolei. Izmantojiet lomas un piekļuves kontroli, pievienojiet tām grupas." +msgstr "Lietotāju grupas ir organizatoriskas vienības. Tām jāatspoguļo jūsu organizācijas organizatoriskās vienības. Grupas nevar izmantot piekļuves kontrolei. Izmantojiet lomas un piekļuves kontroli, pievienojiet tām grupas." #: views.py:119 msgid "There are no user groups" @@ -272,19 +262,17 @@ msgstr "Dzēst lietotāju: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super lietotājs un personāla lietotājs dzēš nav atļauts, šajos gadījumos " -"izmantojiet admin interfeisu." +msgstr "Super lietotājs un personāla lietotājs dzēš nav atļauts, šajos gadījumos izmantojiet admin interfeisu." #: views.py:212 #, python-format msgid "User \"%s\" deleted successfully." -msgstr "Lietotājs "%s" veiksmīgi izdzēsts." +msgstr "Lietotājs \"%s\" veiksmīgi izdzēsts." #: views.py:218 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "Dzēšot lietotāju "%(user)s", radās kļūda: %(error)s" +msgstr "Dzēšot lietotāju \"%(user)s\", radās kļūda: %(error)s" #: views.py:236 #, python-format @@ -315,7 +303,7 @@ msgstr "Lietotāja grupas: %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "No šī skata var izveidot lietotāju kontus. Pēc lietotāja konta izveidošanas, jums tiks piedāvāts iestatīt paroli." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo index db6d1aade67e179d2a2ae7070b92da1690061fdd..60c75c0a06292326d78169cdef9cde57aacd2a94 100644 GIT binary patch delta 21 dcmca1enWi2V>S*WO9cZnDS*$Qw0NaD-+Ajui4(R0039M2dMx6 diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po index 91de998037..d972dc54d8 100644 --- a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -78,16 +77,12 @@ msgid "All the users." msgstr "Alle gebruikers." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Beschikbare gebruikers" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Beschikbare groepen" +msgstr "" #: events.py:12 msgid "Group created" @@ -268,9 +263,7 @@ msgstr "Verwijder gebruiker: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de " -"admin gebruiker voor deze zaken." +msgstr "Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo index ca46b144d2202c5fcd69d53a75a55d958835a9a2..f01260fe62baaefcd498f92785fb877f24a1e256 100644 GIT binary patch delta 21 ccmaDU`%-qpFLn+iO9cZnD, 2015 # Daniel Winiarski , 2016 @@ -12,17 +12,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" @@ -81,16 +78,12 @@ msgid "All the users." msgstr "Wszyscy użytkownicy." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Dostępni użytkownicy" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Dostępne grupy" +msgstr "" #: events.py:12 msgid "Group created" @@ -194,9 +187,7 @@ msgstr "nazwa użytkownika" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Rozdzielona przecinkami lista kluczy głównych grup, do których użytkownik " -"zostanie przydzielony." +msgstr "Rozdzielona przecinkami lista kluczy głównych grup, do których użytkownik zostanie przydzielony." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -275,9 +266,7 @@ msgstr "Usuń użytkownika: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user oraz staff user usuwanie nie jest możliwa , należy użyć " -"interfejsu administratora w takich przypadkach." +msgstr "Super user oraz staff user usuwanie nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo index a44629a7722d53f5a0b5e3b3f05e751b942a695b..f98ee79772978f6dcb1ff559bea648f8a1345e6b 100644 GIT binary patch delta 21 ccmdlWv_WWt0V{`*rGkN(m66eA3)UaZ07AnB>;M1& delta 21 ccmdlWv_WWt0V{{0se*yIm5JqM3)UaZ07AzF@c;k- diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po index 4f88f6b3c0..9db64d737d 100644 --- a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 # Renata Oliveira , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-29 02:20-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -83,10 +82,8 @@ msgid "Total users" msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Grupos disponíveis" +msgstr "" #: events.py:12 msgid "Group created" @@ -267,9 +264,7 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Não é permitida a eliminação de administradores ou membros da equipa, " -"utilize a interface de administrador para estes casos." +msgstr "Não é permitida a eliminação de administradores ou membros da equipa, utilize a interface de administrador para estes casos." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo index 381a665bee32e8dca419b3e73d1cdaf564ba40f5..b50fa2204ecaaaaefa34745a47c526612dba4799 100644 GIT binary patch delta 21 dcmX>rbyjM_5_S$FO9cZnDrbyjM_5_S$lQw0NaD-+AjYuFdE0sv752GRfk diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po index e7069395ee..a407d59bb4 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Emerson Soares , 2013 @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -81,16 +80,12 @@ msgid "All the users." msgstr "Todos os usuários." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Usuários disponíveis" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Grupos disponíveis" +msgstr "" #: events.py:12 msgid "Group created" @@ -194,9 +189,7 @@ msgstr "" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Lista separada por vírgulas de chaves primárias de grupo para atribuir esse " -"usuário." +msgstr "Lista separada por vírgulas de chaves primárias de grupo para atribuir esse usuário." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -273,9 +266,7 @@ msgstr "Excluir usuário: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Excluir super usuário e usuário pessoal não é permitido, use a interface de " -"administração para esses casos." +msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo index d21673b1f884f5cfc2f71fc291fab665a0a9636e..317da6a4111eb29663bff108a0c8215cab7a5cbf 100644 GIT binary patch delta 1588 zcmY+^ZD<@t9LMoVb61Bc8=J{2W_w3ES~P_WUv);Qm_H zzHg;5H*r6P8tcB$@k4PoW?HvF!NjN=Kd0Dg1@nVt8XwyvGw3BcpI+8 zy{L&FLG^nI6>x&;H;b+K780Xbz&lyroT0Lsh6`B4U$PFJtCk0>M=j8gYj6h=iy6ia zdec60FLMv7|2S&C3DhB;LXu@(M?Pkbul@Lbor)&>4QKHW zw3xCF8}UtKJIzP93BSa7{2i6KV?;5E@8YBQC-TS~ASxZQgQ(0#*vXc?ihA>Tern2y zcaDl0mQZi>D{8d@SQ8n6xZMq`ZxDs7w!FNM3YwFW7As77^eLHY^$6T0N>eg2Czhzn0!9=_WmPBDhCk}T*Db?W`e-w&U?e$TV#&-eL0&wQG=(U$#O;vDjq zwM9N_X}E?P@viGLj8T7wn&2Bo@GmO1iVbF)FoNZnKuz3>>NkoCcnZ~T4#T*F#Avs1 z7wcP&mkD;qp)xds8N7fB_yL~4N4Ocw z=oDjpYvx5A2CxASqZT}ayYW1xaM^7yq5@fQUBx2x->4lIh(a0r==v2k-yc*4N*PQH z7R9VmQO}EZ(ukU%6SbouR4R|72F&6ekJ&}kS=KU}zHdQgq|dDnVjcByoWxnT{k7`~ z>PUWt$-g>=Syel4Lb7i|sLMEl+i)6nN3P%z%;6UNf*R*#yKLSXaVI8FfsLd3O=BD{ zqvpAXNqk;O{zBR3JyO3rA5$w1}E`36-Io>l0M}0&2b@>hk_Tl4SvY z3i>rf`53@v)O=^Nye#lCgK=EL?O4fqa9ozgHta{G>>M7$1suUQ$e+~{l`d5ZmC<30 za#T~O9bY0^W#T%j{t)@f#$NHF0UuBkt)VW9hu@+GRG@a!>Us!wP@hEgpGVfQZi=1* z&V;YUlXB*Lk#OI7)BpMQJIl1_Kg2;w4<+Ng^fjcFZ9QBG+e^_gDnnjME2W>JIFytG zrOT=I*9G_SrW@Jer2P$^UT4g&xYlo>&M~bD&z}5!|66bVXYgc6Al(s9b@gU?^5f;V KO7mAE?cRUq9Bxej diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po index 3284775e28..cfe54341b8 100644 --- a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 # Harald Ersch, 2019 @@ -10,17 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" @@ -79,16 +77,12 @@ msgid "All the users." msgstr "Toți utilizatorii." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Group users" msgid "Total users" -msgstr "Utilizatori din grup" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Grupuri disponibile" +msgstr "" #: events.py:12 msgid "Group created" @@ -192,9 +186,7 @@ msgstr "nume de utilizator" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" -"Liste separate prin virgulă de chei primare de grup pentru a le atribui " -"acestui utilizator." +msgstr "Liste separate prin virgulă de chei primare de grup pentru a le atribui acestui utilizator." #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -227,11 +219,7 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "" -"Grupurile de utilizatori sunt unități organizaționale. Ele ar trebui să " -"reflecte unitățile organizaționale ale organizației dvs. Grupurile nu pot fi " -"utilizate pentru controlul accesului. Utilizați roluri pentru permisiuni și " -"control acces, adăugați grupuri la ele." +msgstr "Grupurile de utilizatori sunt unități organizaționale. Ele ar trebui să reflecte unitățile organizaționale ale organizației dvs. Grupurile nu pot fi utilizate pentru controlul accesului. Utilizați roluri pentru permisiuni și control acces, adăugați grupuri la ele." #: views.py:119 msgid "There are no user groups" @@ -253,14 +241,12 @@ msgstr "Utilizatorii din grupul: %s" #: views.py:173 #, python-format msgid "User delete request performed on %(count)d user" -msgstr "" -"Solicitarea de ștergere a utilizatorilor efectuată pe %(count)dutilizator " +msgstr "Solicitarea de ștergere a utilizatorilor efectuată pe %(count)dutilizator " #: views.py:175 #, python-format msgid "User delete request performed on %(count)d users" -msgstr "" -"Solicitarea de ștergere a utilizatorilor efectuată pe %(count)d utilizatori" +msgstr "Solicitarea de ștergere a utilizatorilor efectuată pe %(count)d utilizatori" #: views.py:183 msgid "Delete user" @@ -278,9 +264,7 @@ msgstr "Ștergeți utilizatorul: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super-utilizator și personalul ștergerea utilizator nu este permisă, " -"utilizați interfata de administrare pentru aceste cazuri." +msgstr "Super-utilizator și personalul ștergerea utilizator nu este permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:212 #, python-format @@ -321,7 +305,7 @@ msgstr "Grupurile utilizatorului: %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "Conturile de utilizator pot fi create din această vizualizare. După crearea unui cont de utilizator, vi se va solicita să setați o parolă pentru acesta." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo index 96d4b329eb8dd707c40518dfae502320565f2e83..bcc0d3be55738ecb3a52d87fc8d3a465ef285477 100644 GIT binary patch delta 21 ccmX>odr)?RGaHAIrGkN(m66eAZ?-ZH07sk!&j0`b delta 21 ccmX>odr)?RGaHAYse*yIm5JqMZ?-ZH07sw&)Bpeg diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po index 8198817f6d..7f3ec3a188 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" @@ -78,16 +75,12 @@ msgid "All the users." msgstr "Все пользователи." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Доступные пользователи" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Доступные группы" +msgstr "" #: events.py:12 msgid "Group created" @@ -270,9 +263,7 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Удаление суперпользователя и персонала не допускается, используйте " -"интерфейс администратора для этих случаев." +msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo index 07f537bb65212b869309e79729bdf02e2aab98a7..49d73c2da54bd75043d7a6e4efd3a3ae25ff6e28 100644 GIT binary patch delta 19 acmaFI@{VP~Ck`V^1p_lHBcqMKN*Do4=?5MF delta 19 acmaFI@{VP~Ck{hX1p{*{6U&XiN*Do4=m#SJ diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po index 2a2c2c0ca9..2de564fcba 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:82 events.py:8 permissions.py:8 msgid "User management" diff --git a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.mo index 722e696f43f9fbc51a2ccbce8852f6add51b0de1..ce0b2a1dce0293d3d51e392f9f8f118c8f15f17d 100644 GIT binary patch delta 21 ccmX>rb5>@rb5>@, 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-" -"edms/language/tr_TR/)\n" -"Language: tr_TR\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -76,16 +75,12 @@ msgid "All the users." msgstr "Tüm kullanıcılar." #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "Kullanılabilir kullanıcılar" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "Kullanılabilir gruplar" +msgstr "" #: events.py:12 msgid "Group created" @@ -193,8 +188,7 @@ msgstr "Bu kullanıcıya atamak için virgülle ayrılmış birincil gruplar lis #: serializers.py:64 msgid "List of group primary keys to which to add the user." -msgstr "" -"Kullanıcının hangi gruba ekleneceğini belirten birincil anahtarların listesi." +msgstr "Kullanıcının hangi gruba ekleneceğini belirten birincil anahtarların listesi." #: utils.py:8 msgid "Anonymous" @@ -267,9 +261,7 @@ msgstr "Kullanıcıyı sil: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Süper kullanıcı ve çalışanların silinmesine izin verilmiyor, bu durumlarda " -"admin arayüzünü kullanın." +msgstr "Süper kullanıcı ve çalışanların silinmesine izin verilmiyor, bu durumlarda admin arayüzünü kullanın." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo index 6b5624e2fbb099e43c68f722f489fac998f0b8fb..ff48a5eec381640a7bce80f740290add59b98ec2 100644 GIT binary patch delta 21 dcmcc1bC+ksRAvq%O9cZnD, 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -261,9 +260,7 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user and staff user deleting is not allowed, use the admin interface " -"for these cases." +msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." #: views.py:212 #, python-format diff --git a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.mo index 4f536180bf00f9ceeee86bff20be8f66964f823e..01c4e57414c5fbc15dcc6c2fe34b6f7fe1db1c64 100644 GIT binary patch delta 21 ccmcbta9Lr4I~RwMrGkN(m66eAe=Zg_07{Srl>h($ delta 21 ccmcbta9Lr4I~Rwcse*yIm5JqMe=Zg_07{evng9R* diff --git a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po index 07caf7f15f..b20d30be6c 100644 --- a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # yulin Gong <540538248@qq.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:21-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 events.py:8 permissions.py:8 @@ -76,16 +75,12 @@ msgid "All the users." msgstr "所有用户" #: dashboard_widgets.py:16 -#, fuzzy -#| msgid "Available users" msgid "Total users" -msgstr "可用用户" +msgstr "" #: dashboard_widgets.py:32 -#, fuzzy -#| msgid "Available groups" msgid "Total groups" -msgstr "可用的用户组" +msgstr "" #: events.py:12 msgid "Group created" @@ -222,9 +217,7 @@ msgid "" "User groups are organizational units. They should mirror the organizational " "units of your organization. Groups can't be used for access control. Use " "roles for permissions and access control, add groups to them." -msgstr "" -"用户组是组织单位。它们应反映你组织的组织单位。用户组不能用于访问控制。使用角" -"色进行权限和访问控制,并向其中添加用户组。" +msgstr "用户组是组织单位。它们应反映你组织的组织单位。用户组不能用于访问控制。使用角色进行权限和访问控制,并向其中添加用户组。" #: views.py:119 msgid "There are no user groups" From d48f2628a34499a9b3fefd6c7af35253e716f028 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:48:23 -0400 Subject: [PATCH 13/23] Add sources app metadata help text migration Signed-off-by: Roberto Rosario --- .../migrations/0021_auto_20190629_0648.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mayan/apps/sources/migrations/0021_auto_20190629_0648.py diff --git a/mayan/apps/sources/migrations/0021_auto_20190629_0648.py b/mayan/apps/sources/migrations/0021_auto_20190629_0648.py new file mode 100644 index 0000000000..e804cce4e0 --- /dev/null +++ b/mayan/apps/sources/migrations/0021_auto_20190629_0648.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-06-29 06:48 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('sources', '0020_auto_20181128_0752'), + ] + + operations = [ + migrations.AlterField( + model_name='emailbasemodel', + name='metadata_attachment_name', + field=models.CharField(default='metadata.yaml', help_text='Name of the attachment that will contains the metadata type names and value pairs to be assigned to the rest of the downloaded attachments.', max_length=128, verbose_name='Metadata attachment name'), + ), + ] From 4cf28af5cff8510c0d6501569ee9cd62c121586f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:48:52 -0400 Subject: [PATCH 14/23] Update release notes Signed-off-by: Roberto Rosario --- HISTORY.rst | 6 +++--- docs/releases/3.2.4.rst | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0c201ef1c6..b62da7e331 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,11 +1,11 @@ -3.2.4 (2019-06-XX) +3.2.4 (2019-06-29) ================== -* Support configurable GUnicorn timeouts. Defaults to +* Support configurable GUnicorn timeouts. Defaults to current value of 120 seconds. * Fix help text of the platformtemplate command. * Fix IMAP4 mailbox.store flags argument. Python's documentation incorrectly state it is named flag_list. Closes GitLab issue - #606. + #606. * Improve the workflow preview generation. Use polylines instead of splines. Add state actions to the preview. Highlight the initial state. diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index 25b0277f98..1dd4e3f4bb 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -1,7 +1,7 @@ Version 3.2.4 ============= -Released: June XX, 2019 +Released: June 29, 2019 Changes @@ -12,14 +12,14 @@ Changes - Fix help text of the platformtemplate command. - Fix IMAP4 mailbox.store flags argument. Python's documentation incorrectly state it is named flag_list. Closes GitLab issue - #606. Thanks to Samuel Aebi (@samuelaebi) for the report and + #606. Thanks to Samuel Aebi (@samuelaebi) for the report and debug information. -- Support configurable GUnicorn timeouts. Defaults to +- Support configurable GUnicorn timeouts. Defaults to current value of 120 seconds. - Fix help text of the platformtemplate command. - Fix IMAP4 mailbox.store flags argument. Python's documentation incorrectly state it is named flag_list. Closes GitLab issue - #606. + #606. - Improve the workflow preview generation. Use polylines instead of splines. Add state actions to the preview. Highlight the initial state. @@ -95,7 +95,7 @@ variables values show here with your respective settings. This step will refresh the supervisord configuration file with the new queues and the latest recommended layout:: - MAYAN_DATABASE_ENGINE=django.db.backends.postgresql MAYAN_DATABASE_NAME=mayan \ + sudo MAYAN_DATABASE_ENGINE=django.db.backends.postgresql MAYAN_DATABASE_NAME=mayan \ MAYAN_DATABASE_PASSWORD=mayanuserpass MAYAN_DATABASE_USER=mayan \ MAYAN_DATABASE_HOST=127.0.0.1 MAYAN_MEDIA_ROOT=/opt/mayan-edms/media \ /opt/mayan-edms/bin/mayan-edms.py platformtemplate supervisord > /etc/supervisor/conf.d/mayan.conf @@ -103,7 +103,7 @@ recommended layout:: Edit the supervisord configuration file and update any setting the template generator missed:: - vi /etc/supervisor/conf.d/mayan.conf + sudo vi /etc/supervisor/conf.d/mayan.conf Migrate existing database schema with:: From 8b2690c785652e28fb89bd661c8abbf769284196 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:50:23 -0400 Subject: [PATCH 15/23] Remove unused import Signed-off-by: Roberto Rosario --- mayan/apps/tags/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/tags/apps.py b/mayan/apps/tags/apps.py index 978dcc1308..c64811558a 100644 --- a/mayan/apps/tags/apps.py +++ b/mayan/apps/tags/apps.py @@ -23,7 +23,7 @@ from mayan.apps.navigation.classes import SourceColumn from .dependencies import * # NOQA from .events import ( - event_tag_attach, event_tag_created, event_tag_edited, event_tag_remove + event_tag_attach, event_tag_edited, event_tag_remove ) from .handlers import handler_index_document, handler_tag_pre_delete from .html_widgets import widget_document_tags From f5bbd484cd7c51091d96f4aa82c1bb9bab3f9655 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:50:51 -0400 Subject: [PATCH 16/23] Bump version to 3.2.4 Signed-off-by: Roberto Rosario --- docker/rootfs/version | 2 +- mayan/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/rootfs/version b/docker/rootfs/version index b347b11eac..351227fca3 100755 --- a/docker/rootfs/version +++ b/docker/rootfs/version @@ -1 +1 @@ -3.2.3 +3.2.4 diff --git a/mayan/__init__.py b/mayan/__init__.py index d64fa74a55..1b540820c9 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.2.3' -__build__ = 0x030203 -__build_string__ = 'v3.2.3_Fri Jun 21 00:01:37 2019 -0400' +__version__ = '3.2.4' +__build__ = 0x030204 +__build_string__ = 'v3.2.3-27-g4cf28af5cf_Sat Jun 29 02:48:52 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From 96d631a395f72c44c47aec28c52a8f91d7d453ac Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 29 Jun 2019 02:51:45 -0400 Subject: [PATCH 17/23] Update build string Signed-off-by: Roberto Rosario --- mayan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index 1b540820c9..02c2642a13 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.2.4' __build__ = 0x030204 -__build_string__ = 'v3.2.3-27-g4cf28af5cf_Sat Jun 29 02:48:52 2019 -0400' +__build_string__ = 'v3.2.4_Sat Jun 29 02:50:51 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From e1a63064dcb9491f20fcc5e98e8c90d4e4e59280 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 30 Jun 2019 09:51:22 -0400 Subject: [PATCH 18/23] Proof of concept of the workflow instance context Add support for workflow instance JSON context. Add support for two step workflow transition. Add support for dynamic form creation for transition execution. Signed-off-by: Roberto Rosario --- mayan/apps/document_states/apps.py | 33 ++++- mayan/apps/document_states/forms.py | 12 +- mayan/apps/document_states/icons.py | 10 ++ mayan/apps/document_states/links.py | 31 ++++- .../migrations/0014_auto_20190630_1331.py | 40 ++++++ mayan/apps/document_states/models.py | 127 +++++++++++++----- mayan/apps/document_states/urls.py | 120 +++++++++++------ .../views/workflow_instance_views.py | 108 +++++++++++++-- .../document_states/views/workflow_views.py | 115 +++++++++++++++- 9 files changed, 499 insertions(+), 97 deletions(-) create mode 100644 mayan/apps/document_states/migrations/0014_auto_20190630_1331.py diff --git a/mayan/apps/document_states/apps.py b/mayan/apps/document_states/apps.py index f7e02372d9..65186bb408 100644 --- a/mayan/apps/document_states/apps.py +++ b/mayan/apps/document_states/apps.py @@ -40,6 +40,10 @@ from .links import ( link_setup_workflow_state_edit, link_setup_workflow_transitions, link_setup_workflow_transition_create, link_setup_workflow_transition_delete, link_setup_workflow_transition_edit, + link_setup_workflow_transition_field_create, + link_setup_workflow_transition_field_delete, + link_setup_workflow_transition_field_edit, + link_setup_workflow_transition_field_list, link_tool_launch_all_workflows, link_workflow_instance_detail, link_workflow_instance_transition, link_workflow_runtime_proxy_document_list, link_workflow_runtime_proxy_list, link_workflow_preview, @@ -86,6 +90,7 @@ class DocumentStatesApp(MayanAppConfig): WorkflowStateAction = self.get_model('WorkflowStateAction') WorkflowStateRuntimeProxy = self.get_model('WorkflowStateRuntimeProxy') WorkflowTransition = self.get_model('WorkflowTransition') + WorkflowTransitionField = self.get_model('WorkflowTransitionField') WorkflowTransitionTriggerEvent = self.get_model( 'WorkflowTransitionTriggerEvent' ) @@ -257,6 +262,18 @@ class DocumentStatesApp(MayanAppConfig): ) ) + SourceColumn( + attribute='name', is_identifier=True, is_sortable=True, + source=WorkflowTransitionField + ) + SourceColumn( + attribute='label', is_sortable=True, source=WorkflowTransitionField + ) + SourceColumn( + attribute='required', is_sortable=True, source=WorkflowTransitionField, + widget=TwoStateWidget + ) + SourceColumn( source=WorkflowRuntimeProxy, label=_('Documents'), func=lambda context: context['object'].get_document_count( @@ -305,10 +322,18 @@ class DocumentStatesApp(MayanAppConfig): menu_object.bind_links( links=( link_setup_workflow_transition_edit, - link_workflow_transition_events, link_acl_list, + link_workflow_transition_events, + link_setup_workflow_transition_field_list, + link_acl_list, link_setup_workflow_transition_delete ), sources=(WorkflowTransition,) ) + menu_object.bind_links( + links=( + link_setup_workflow_transition_field_delete, + link_setup_workflow_transition_field_edit + ), sources=(WorkflowTransitionField,) + ) menu_object.bind_links( links=( link_workflow_instance_detail, @@ -342,6 +367,12 @@ class DocumentStatesApp(MayanAppConfig): 'document_states:setup_workflow_list' ) ) + menu_secondary.bind_links( + links=(link_setup_workflow_transition_field_create,), + sources=( + WorkflowTransition, + ) + ) menu_secondary.bind_links( links=(link_workflow_runtime_proxy_list,), sources=( diff --git a/mayan/apps/document_states/forms.py b/mayan/apps/document_states/forms.py index 971b17bd2d..dfb2e6fd65 100644 --- a/mayan/apps/document_states/forms.py +++ b/mayan/apps/document_states/forms.py @@ -165,11 +165,11 @@ WorkflowTransitionTriggerEventRelationshipFormSet = formset_factory( ) -class WorkflowInstanceTransitionForm(forms.Form): +class WorkflowInstanceTransitionSelectForm(forms.Form): def __init__(self, *args, **kwargs): user = kwargs.pop('user') workflow_instance = kwargs.pop('workflow_instance') - super(WorkflowInstanceTransitionForm, self).__init__(*args, **kwargs) + super(WorkflowInstanceTransitionSelectForm, self).__init__(*args, **kwargs) self.fields[ 'transition' ].queryset = workflow_instance.get_transition_choices(_user=user) @@ -177,14 +177,6 @@ class WorkflowInstanceTransitionForm(forms.Form): transition = forms.ModelChoiceField( label=_('Transition'), queryset=WorkflowTransition.objects.none() ) - comment = forms.CharField( - help_text=_('Optional comment to attach to the transition.'), - label=_('Comment'), required=False, widget=forms.widgets.Textarea( - attrs={ - 'rows': 3 - } - ) - ) class WorkflowPreviewForm(forms.Form): diff --git a/mayan/apps/document_states/icons.py b/mayan/apps/document_states/icons.py index 8ae3b8e990..db6c5b5925 100644 --- a/mayan/apps/document_states/icons.py +++ b/mayan/apps/document_states/icons.py @@ -76,6 +76,16 @@ icon_workflow_transition_delete = Icon(driver_name='fontawesome', symbol='times' icon_workflow_transition_edit = Icon( driver_name='fontawesome', symbol='pencil-alt' ) + +icon_workflow_transition_field = Icon(driver_name='fontawesome', symbol='code') +icon_workflow_transition_field_delete = Icon(driver_name='fontawesome', symbol='times') +icon_workflow_transition_field_edit = Icon(driver_name='fontawesome', symbol='pencil-alt') +icon_workflow_transition_field_create = Icon( + driver_name='fontawesome-dual', primary_symbol='code', + secondary_symbol='plus' +) +icon_workflow_transition_field_list = Icon(driver_name='fontawesome', symbol='code') + icon_workflow_transition_triggers = Icon( driver_name='fontawesome', symbol='bolt' ) diff --git a/mayan/apps/document_states/links.py b/mayan/apps/document_states/links.py index 3d23efec95..1404ff2644 100644 --- a/mayan/apps/document_states/links.py +++ b/mayan/apps/document_states/links.py @@ -129,6 +129,35 @@ link_workflow_transition_events = Link( text=_('Transition triggers'), view='document_states:setup_workflow_transition_events' ) + +# Workflow transition fields +link_setup_workflow_transition_field_create = Link( + args='resolved_object.pk', + icon_class_path='mayan.apps.document_states.icons.icon_workflow_transition_field', + permissions=(permission_workflow_edit,), text=_('Create field'), + view='document_states:setup_workflow_transition_field_create', +) +link_setup_workflow_transition_field_delete = Link( + args='resolved_object.pk', + icon_class_path='mayan.apps.document_states.icons.icon_workflow_transition_field_delete', + permissions=(permission_workflow_edit,), + tags='dangerous', text=_('Delete'), + view='document_states:setup_workflow_transition_field_delete', +) +link_setup_workflow_transition_field_edit = Link( + args='resolved_object.pk', + icon_class_path='mayan.apps.document_states.icons.icon_workflow_transition_field_edit', + permissions=(permission_workflow_edit,), + text=_('Edit'), view='document_states:setup_workflow_transition_field_edit', +) +link_setup_workflow_transition_field_list = Link( + args='resolved_object.pk', + icon_class_path='mayan.apps.document_states.icons.icon_workflow_transition_field_list', + permissions=(permission_workflow_edit,), + text=_('Fields'), + view='document_states:setup_workflow_transition_field_list', +) + link_workflow_preview = Link( args='resolved_object.pk', icon_class_path='mayan.apps.document_states.icons.icon_workflow_preview', @@ -159,7 +188,7 @@ link_workflow_instance_transition = Link( args='resolved_object.pk', icon_class_path='mayan.apps.document_states.icons.icon_workflow_instance_transition', text=_('Transition'), - view='document_states:workflow_instance_transition', + view='document_states:workflow_instance_transition_selection', ) # Runtime proxies diff --git a/mayan/apps/document_states/migrations/0014_auto_20190630_1331.py b/mayan/apps/document_states/migrations/0014_auto_20190630_1331.py new file mode 100644 index 0000000000..8f4e567f9a --- /dev/null +++ b/mayan/apps/document_states/migrations/0014_auto_20190630_1331.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-06-30 13:31 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('document_states', '0013_auto_20190423_0810'), + ] + + operations = [ + migrations.CreateModel( + name='WorkflowTransitionField', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=128, verbose_name='Internal name')), + ('label', models.CharField(max_length=128, verbose_name='Label')), + ('help_text', models.TextField(blank=True, verbose_name='Help text')), + ('required', models.BooleanField(default=False, verbose_name='Required')), + ('transition', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='fields', to='document_states.WorkflowTransition', verbose_name='Transition')), + ], + options={ + 'verbose_name': 'Workflow transition trigger event', + 'verbose_name_plural': 'Workflow transitions trigger events', + }, + ), + migrations.AddField( + model_name='workflowinstance', + name='context', + field=models.TextField(blank=True, verbose_name='Backend data'), + ), + migrations.AlterUniqueTogether( + name='workflowtransitionfield', + unique_together=set([('transition', 'name')]), + ), + ] diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index d006dcf6c3..7a4c6647bd 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -257,8 +257,8 @@ class WorkflowState(models.Model): def save(self, *args, **kwargs): # Solve issue #557 "Break workflows with invalid input" # without using a migration. - # Remove blank=True, remove this, and create a migration in the next - # minor version. + # TODO: Remove blank=True, remove this, and create a migration in the + # next minor version. try: self.completion = int(self.completion) @@ -363,6 +363,44 @@ class WorkflowTransition(models.Model): return self.label +@python_2_unicode_compatible +class WorkflowTransitionField(models.Model): + transition = models.ForeignKey( + on_delete=models.CASCADE, related_name='fields', + to=WorkflowTransition, verbose_name=_('Transition') + ) + name = models.CharField( + help_text=_( + 'The name that will be used to identify this field in other parts ' + 'of the workflow system.' + ), max_length=128, verbose_name=_('Internal name') + ) + label = models.CharField( + help_text=_( + 'The field name that will be shown on the user interface.' + ), max_length=128, verbose_name=_('Label')) + help_text = models.TextField( + blank=True, help_text=_( + 'An optional message that will help users better understand the ' + 'purpose of the field and data to provide.' + ), verbose_name=_('Help text') + ) + required = models.BooleanField( + default=False, help_text=_( + 'Whether this fields needs to be filled out or not to proceed.' + ), verbose_name=_('Required') + ) + #TODO: widget, widget kwargs + + class Meta: + unique_together = ('transition', 'name') + verbose_name = _('Workflow transition trigger event') + verbose_name_plural = _('Workflow transitions trigger events') + + def __str__(self): + return self.label + + @python_2_unicode_compatible class WorkflowTransitionTriggerEvent(models.Model): transition = models.ForeignKey( @@ -392,6 +430,9 @@ class WorkflowInstance(models.Model): on_delete=models.CASCADE, related_name='workflows', to=Document, verbose_name=_('Document') ) + context = models.TextField( + blank=True, verbose_name=_('Backend data') + ) class Meta: ordering = ('workflow',) @@ -402,15 +443,30 @@ class WorkflowInstance(models.Model): def __str__(self): return force_text(self.workflow) - def do_transition(self, transition, user=None, comment=None): - try: - if transition in self.get_current_state().origin_transitions.all(): - self.log_entries.create( - comment=comment or '', transition=transition, user=user - ) - except AttributeError: - # No initial state has been set for this workflow - pass + def do_transition(self, transition, extra_data=None, user=None, comment=None): + with transaction.atomic(): + try: + if transition in self.get_current_state().origin_transitions.all(): + self.log_entries.create( + comment=comment or '', transition=transition, user=user + ) + if extra_data: + data = self.loads() + data.update(extra_data) + self.dumps(data=data) + except AttributeError: + # No initial state has been set for this workflow + pass + + # TODO: execute transition event target = document, + # action_object = self + + def dumps(self, data): + """ + Serialize the context data. + """ + self.context = json.dumps(data) + self.save() def get_absolute_url(self): return reverse( @@ -420,10 +476,12 @@ class WorkflowInstance(models.Model): ) def get_context(self): - return { + context = { 'document': self.document, 'workflow': self.workflow, 'workflow_instance': self, } + context['workflow_instance_context'] = self.loads() + return context def get_current_state(self): """ @@ -489,6 +547,12 @@ class WorkflowInstance(models.Model): """ return WorkflowTransition.objects.none() + def loads(self): + """ + Deserialize the context data. + """ + return json.loads(self.context or '{}') + @python_2_unicode_compatible class WorkflowInstanceLogEntry(models.Model): @@ -529,31 +593,32 @@ class WorkflowInstanceLogEntry(models.Model): raise ValidationError(_('Not a valid transition choice.')) def save(self, *args, **kwargs): - result = super(WorkflowInstanceLogEntry, self).save(*args, **kwargs) - context = self.workflow_instance.get_context() - context.update( - { - 'entry_log': self - } - ) - - for action in self.transition.origin_state.exit_actions.filter(enabled=True): + with transaction.atomic(): + result = super(WorkflowInstanceLogEntry, self).save(*args, **kwargs) + context = self.workflow_instance.get_context() context.update( { - 'action': action, + 'entry_log': self } ) - action.execute(context=context) - for action in self.transition.destination_state.entry_actions.filter(enabled=True): - context.update( - { - 'action': action, - } - ) - action.execute(context=context) + for action in self.transition.origin_state.exit_actions.filter(enabled=True): + context.update( + { + 'action': action, + } + ) + action.execute(context=context) - return result + for action in self.transition.destination_state.entry_actions.filter(enabled=True): + context.update( + { + 'action': action, + } + ) + action.execute(context=context) + + return result class WorkflowRuntimeProxy(Workflow): diff --git a/mayan/apps/document_states/urls.py b/mayan/apps/document_states/urls.py index e139e3ff8a..49ccd4f19c 100644 --- a/mayan/apps/document_states/urls.py +++ b/mayan/apps/document_states/urls.py @@ -22,19 +22,86 @@ from .views import ( SetupWorkflowTransitionEditView, SetupWorkflowTransitionTriggerEventListView, ToolLaunchAllWorkflows, WorkflowDocumentListView, WorkflowInstanceDetailView, - WorkflowImageView, WorkflowInstanceTransitionView, WorkflowListView, + WorkflowImageView, WorkflowInstanceTransitionExecuteView, + WorkflowInstanceTransitionSelectView, WorkflowListView, WorkflowPreviewView, WorkflowStateDocumentListView, WorkflowStateListView, ) -from .views.workflow_views import SetupDocumentTypeWorkflowsView +from .views.workflow_views import ( + SetupDocumentTypeWorkflowsView, SetupWorkflowTransitionFieldCreateView, + SetupWorkflowTransitionFieldDeleteView, + SetupWorkflowTransitionFieldEditView, SetupWorkflowTransitionFieldListView +) urlpatterns_workflows = [ url( - regex=r'^document_type/(?P\d+)/workflows/$', + regex=r'^setup/workflows/$', view=SetupWorkflowListView.as_view(), + name='setup_workflow_list' + ), + url( + regex=r'^setup/workflows/create/$', view=SetupWorkflowCreateView.as_view(), + name='setup_workflow_create' + ), + url( + regex=r'^setup/workflows/(?P\d+)/delete/$', + view=SetupWorkflowDeleteView.as_view(), name='setup_workflow_delete' + ), + url( + regex=r'^setup/workflows/(?P\d+)/edit/$', + view=SetupWorkflowEditView.as_view(), name='setup_workflow_edit' + ), + url( + regex=r'^setup/document_types/(?P\d+)/workflows/$', view=SetupDocumentTypeWorkflowsView.as_view(), name='document_type_workflows' ), ] +urlpatterns_workflow_states = [ + url( + regex=r'^setup/workflow/(?P\d+)/states/$', + view=SetupWorkflowStateListView.as_view(), + name='setup_workflow_state_list' + ), + url( + regex=r'^setup/workflow/(?P\d+)/states/create/$', + view=SetupWorkflowStateCreateView.as_view(), + name='setup_workflow_state_create' + ), + url( + regex=r'^setup/workflow/state/(?P\d+)/delete/$', + view=SetupWorkflowStateDeleteView.as_view(), + name='setup_workflow_state_delete' + ), + url( + regex=r'^setup/workflow/state/(?P\d+)/edit/$', + view=SetupWorkflowStateEditView.as_view(), + name='setup_workflow_state_edit' + ), +] + +urlpatterns_workflow_transition_fields = [ + url( + regex=r'^setup/workflows/transitions/(?P\d+)/fields/create/$', + view=SetupWorkflowTransitionFieldCreateView.as_view(), + name='setup_workflow_transition_field_create' + ), + url( + regex=r'^setup/workflows/transitions/(?P\d+)/fields/$', + view=SetupWorkflowTransitionFieldListView.as_view(), + name='setup_workflow_transition_field_list' + ), + url( + regex=r'^setup/workflows/transitions/fields/(?P\d+)/delete/$', + view=SetupWorkflowTransitionFieldDeleteView.as_view(), + name='setup_workflow_transition_field_delete' + ), + url( + regex=r'^setup/workflows/transitions/fields/(?P\d+)/edit/$', + view=SetupWorkflowTransitionFieldEditView.as_view(), + name='setup_workflow_transition_field_edit' + ), +] + urlpatterns = [ url( regex=r'^document/(?P\d+)/workflows/$', @@ -47,25 +114,14 @@ urlpatterns = [ name='workflow_instance_detail' ), url( - regex=r'^document/workflows/(?P\d+)/transition/$', - view=WorkflowInstanceTransitionView.as_view(), - name='workflow_instance_transition' + regex=r'^document/workflows/(?P\d+)/transitions/select/$', + view=WorkflowInstanceTransitionSelectView.as_view(), + name='workflow_instance_transition_selection' ), url( - regex=r'^setup/all/$', view=SetupWorkflowListView.as_view(), - name='setup_workflow_list' - ), - url( - regex=r'^setup/create/$', view=SetupWorkflowCreateView.as_view(), - name='setup_workflow_create' - ), - url( - regex=r'^setup/workflow/(?P\d+)/edit/$', - view=SetupWorkflowEditView.as_view(), name='setup_workflow_edit' - ), - url( - regex=r'^setup/workflow/(?P\d+)/delete/$', - view=SetupWorkflowDeleteView.as_view(), name='setup_workflow_delete' + regex=r'^document/workflows/(?P\d+)/transitions/(?P\d+)/execute/$', + view=WorkflowInstanceTransitionExecuteView.as_view(), + name='workflow_instance_transition_execute' ), url( regex=r'^setup/workflow/(?P\d+)/documents/$', @@ -77,16 +133,6 @@ urlpatterns = [ view=SetupWorkflowDocumentTypesView.as_view(), name='setup_workflow_document_types' ), - url( - regex=r'^setup/workflow/(?P\d+)/states/$', - view=SetupWorkflowStateListView.as_view(), - name='setup_workflow_state_list' - ), - url( - regex=r'^setup/workflow/(?P\d+)/states/create/$', - view=SetupWorkflowStateCreateView.as_view(), - name='setup_workflow_state_create' - ), url( regex=r'^setup/workflow/(?P\d+)/transitions/$', view=SetupWorkflowTransitionListView.as_view(), @@ -98,20 +144,10 @@ urlpatterns = [ name='setup_workflow_transition_create' ), url( - regex=r'^setup/workflow/(?P\d+)/transitions/events/$', + regex=r'^setup/workflow/transitions/(?P\d+)/events/$', view=SetupWorkflowTransitionTriggerEventListView.as_view(), name='setup_workflow_transition_events' ), - url( - regex=r'^setup/workflow/state/(?P\d+)/delete/$', - view=SetupWorkflowStateDeleteView.as_view(), - name='setup_workflow_state_delete' - ), - url( - regex=r'^setup/workflow/state/(?P\d+)/edit/$', - view=SetupWorkflowStateEditView.as_view(), - name='setup_workflow_state_edit' - ), url( regex=r'^setup/workflow/state/(?P\d+)/actions/$', view=SetupWorkflowStateActionListView.as_view(), @@ -184,6 +220,8 @@ urlpatterns = [ ), ] urlpatterns.extend(urlpatterns_workflows) +urlpatterns.extend(urlpatterns_workflow_states) +urlpatterns.extend(urlpatterns_workflow_transition_fields) api_urls = [ url( diff --git a/mayan/apps/document_states/views/workflow_instance_views.py b/mayan/apps/document_states/views/workflow_instance_views.py index 66750fc468..f857049829 100644 --- a/mayan/apps/document_states/views/workflow_instance_views.py +++ b/mayan/apps/document_states/views/workflow_instance_views.py @@ -4,13 +4,16 @@ from django.contrib import messages from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 from django.template import RequestContext +from django.urls import reverse, reverse_lazy from django.utils.translation import ugettext_lazy as _ from mayan.apps.acls.models import AccessControlList +from mayan.apps.common.forms import DynamicForm from mayan.apps.common.generics import FormView, SingleObjectListView +from mayan.apps.common.mixins import ExternalObjectMixin from mayan.apps.documents.models import Document -from ..forms import WorkflowInstanceTransitionForm +from ..forms import WorkflowInstanceTransitionSelectForm from ..icons import icon_workflow_instance_detail, icon_workflow_list from ..links import link_workflow_instance_transition from ..models import WorkflowInstance @@ -18,7 +21,8 @@ from ..permissions import permission_workflow_view __all__ = ( 'DocumentWorkflowInstanceListView', 'WorkflowInstanceDetailView', - 'WorkflowInstanceTransitionView' + 'WorkflowInstanceTransitionSelectView', + 'WorkflowInstanceTransitionExecuteView' ) @@ -100,14 +104,17 @@ class WorkflowInstanceDetailView(SingleObjectListView): return get_object_or_404(klass=WorkflowInstance, pk=self.kwargs['pk']) -class WorkflowInstanceTransitionView(FormView): - form_class = WorkflowInstanceTransitionForm +class WorkflowInstanceTransitionExecuteView(FormView): + form_class = DynamicForm template_name = 'appearance/generic_form.html' def form_valid(self, form): + form_data = form.cleaned_data + comment = form_data.pop('comment') + self.get_workflow_instance().do_transition( - comment=form.cleaned_data['comment'], - transition=form.cleaned_data['transition'], user=self.request.user + comment=comment, extra_data=form_data, + transition=self.get_workflow_transition(), user=self.request.user, ) messages.success( self.request, _( @@ -122,19 +129,96 @@ class WorkflowInstanceTransitionView(FormView): 'object': self.get_workflow_instance().document, 'submit_label': _('Submit'), 'title': _( - 'Do transition for workflow: %s' - ) % self.get_workflow_instance(), + 'Execute transition "%(transition)s" for workflow: %(workflow)s' + ) % { + 'transition': self.get_workflow_transition(), + 'workflow': self.get_workflow_instance(), + }, 'workflow_instance': self.get_workflow_instance(), } def get_form_extra_kwargs(self): - return { - 'user': self.request.user, - 'workflow_instance': self.get_workflow_instance() + schema = { + 'fields': { + 'comment': { + 'label': _('Comment'), + 'class': 'django.forms.CharField', 'kwargs': { + 'help_text': _( + 'Optional comment to attach to the transition.' + ), + 'required': False, + } + } + }, + 'widgets': { + 'comment': { + 'class': 'django.forms.widgets.Textarea', + 'kwargs': { + 'attrs': { + 'rows': 3 + } + } + } + } } + for field in self.get_workflow_transition().fields.all(): + schema['fields'][field.name] = { + 'label': field.label, + 'class': 'django.forms.CharField', 'kwargs': { + } + } + + return {'schema': schema} + def get_success_url(self): return self.get_workflow_instance().get_absolute_url() def get_workflow_instance(self): - return get_object_or_404(klass=WorkflowInstance, pk=self.kwargs['pk']) + return get_object_or_404( + klass=WorkflowInstance, pk=self.kwargs['workflow_instance_pk'] + ) + + def get_workflow_transition(self): + return get_object_or_404( + klass=self.get_workflow_instance().get_transition_choices( + _user=self.request.user + ), pk=self.kwargs['workflow_transition_pk'] + ) + + +class WorkflowInstanceTransitionSelectView(ExternalObjectMixin, FormView): + external_object_class = WorkflowInstance + form_class = WorkflowInstanceTransitionSelectForm + template_name = 'appearance/generic_form.html' + + def form_valid(self, form): + return HttpResponseRedirect( + redirect_to=reverse( + viewname='document_states:workflow_instance_transition_execute', + kwargs={ + 'workflow_instance_pk': self.external_object.pk, + 'workflow_transition_pk': form.cleaned_data['transition'].pk + } + ) + ) + + def get_extra_context(self): + return { + 'navigation_object_list': ('object', 'workflow_instance'), + 'object': self.external_object.document, + 'submit_label': _('Select'), + 'title': _( + 'Select transition for workflow: %s' + ) % self.external_object, + 'workflow_instance': self.external_object, + } + + def get_form_extra_kwargs(self): + return { + 'user': self.request.user, + 'workflow_instance': self.external_object + } + + #def get_workflow_instance(self): + # return get_object_or_404(klass=WorkflowInstance, pk=self.kwargs['pk']) diff --git a/mayan/apps/document_states/views/workflow_views.py b/mayan/apps/document_states/views/workflow_views.py index 423134e0b1..b28970e932 100644 --- a/mayan/apps/document_states/views/workflow_views.py +++ b/mayan/apps/document_states/views/workflow_views.py @@ -39,7 +39,8 @@ from ..links import ( link_setup_workflow_transition_create ) from ..models import ( - Workflow, WorkflowState, WorkflowStateAction, WorkflowTransition + Workflow, WorkflowState, WorkflowStateAction, WorkflowTransition, + WorkflowTransitionField ) from ..permissions import ( permission_workflow_create, permission_workflow_delete, @@ -732,6 +733,118 @@ class SetupWorkflowTransitionTriggerEventListView(ExternalObjectMixin, FormView) ) +# Transition fields + +class SetupWorkflowTransitionFieldCreateView(ExternalObjectMixin, SingleObjectCreateView): + external_object_class = WorkflowTransition + external_object_permission = permission_workflow_edit + fields = ('name', 'label', 'help_text', 'required') + #object_permission = permission_workflow_edit + + def get_extra_context(self): + return { + 'navigation_object_list': ('transition', 'workflow'), + 'transition': self.external_object, + 'title': _( + 'Create a field for workflow transition: %s' + ) % self.external_object, + 'workflow': self.external_object.workflow + } + + def get_instance_extra_data(self): + return { + 'transition': self.external_object, + } + + def get_queryset(self): + return self.external_object.fields.all() + + def get_post_action_redirect(self): + return reverse( + viewname='document_states:setup_workflow_transition_field_list', + kwargs={'pk': self.external_object.pk} + ) + + +class SetupWorkflowTransitionFieldDeleteView(SingleObjectDeleteView): + model = WorkflowTransitionField + object_permission = permission_workflow_edit + + def get_extra_context(self): + return { + 'navigation_object_list': ( + 'object', 'workflow_transition', 'workflow' + ), + 'object': self.object, + 'title': _('Delete workflow transition field: %s') % self.object, + 'workflow': self.object.transition.workflow, + 'workflow_transition': self.object.transition, + } + + def get_post_action_redirect(self): + return reverse( + viewname='document_states:setup_workflow_transition_field_list', + kwargs={'pk': self.object.transition.pk} + ) + + +class SetupWorkflowTransitionFieldEditView(SingleObjectEditView): + fields = ('name', 'label', 'help_text', 'required',) + model = WorkflowTransitionField + object_permission = permission_workflow_edit + + def get_extra_context(self): + return { + 'navigation_object_list': ( + 'object', 'workflow_transition', 'workflow' + ), + 'object': self.object, + 'title': _('Edit workflow transition field: %s') % self.object, + 'workflow': self.object.transition.workflow, + 'workflow_transition': self.object.transition, + } + + def get_post_action_redirect(self): + return reverse( + viewname='document_states:setup_workflow_transition_field_list', + kwargs={'pk': self.object.transition.pk} + ) + + +class SetupWorkflowTransitionFieldListView(ExternalObjectMixin, SingleObjectListView): + external_object_class = WorkflowTransition + external_object_permission = permission_workflow_edit + + def get_extra_context(self): + return { + 'hide_object': True, + 'navigation_object_list': ('object', 'workflow'), + #'no_results_icon': icon_workflow_transition_action, + #'no_results_main_link': link_setup_workflow_transition_action_selection.resolve( + # context=RequestContext( + # request=self.request, dict_={ + # 'object': self.get_workflow_transition() + # } + # ) + #), + #'no_results_text': _( + # 'Workflow state actions are macros that get executed when ' + # 'documents enters or leaves the state in which they reside.' + #), + #'no_results_title': _( + # 'There are no actions for this workflow state' + #), + 'object': self.external_object, + 'title': _( + 'Fields for workflow transition: %s' + ) % self.external_object, + 'workflow': self.external_object.workflow, + } + + def get_source_queryset(self): + return self.external_object.fields.all() + + class ToolLaunchAllWorkflows(ConfirmView): extra_context = { 'title': _('Launch all workflows?'), From c9fd8b02e3b805ac6720eb5b8455fb0ee2bbf959 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 01:12:02 -0400 Subject: [PATCH 19/23] Add field type selection Signed-off-by: Roberto Rosario --- mayan/apps/document_states/apps.py | 17 ++- mayan/apps/document_states/forms.py | 1 + mayan/apps/document_states/icons.py | 32 +++-- mayan/apps/document_states/literals.py | 12 ++ ...630_1331.py => 0014_auto_20190701_0454.py} | 16 ++- mayan/apps/document_states/models.py | 39 +++--- .../tests/test_workflow_transition_views.py | 124 ++++++++++++++++++ .../views/workflow_instance_views.py | 8 +- .../document_states/views/workflow_views.py | 42 +++--- 9 files changed, 234 insertions(+), 57 deletions(-) rename mayan/apps/document_states/migrations/{0014_auto_20190630_1331.py => 0014_auto_20190701_0454.py} (55%) diff --git a/mayan/apps/document_states/apps.py b/mayan/apps/document_states/apps.py index 65186bb408..2c2888bade 100644 --- a/mayan/apps/document_states/apps.py +++ b/mayan/apps/document_states/apps.py @@ -157,6 +157,9 @@ class DocumentStatesApp(MayanAppConfig): ModelPermission.register_inheritance( model=WorkflowTransition, related='workflow', ) + ModelPermission.register_inheritance( + model=WorkflowTransitionField, related='transition', + ) ModelPermission.register_inheritance( model=WorkflowTransitionTriggerEvent, related='transition__workflow', @@ -206,16 +209,20 @@ class DocumentStatesApp(MayanAppConfig): attribute='datetime' ) SourceColumn( - source=WorkflowInstanceLogEntry, label=_('User'), attribute='user' + source=WorkflowInstanceLogEntry, attribute='user' ) SourceColumn( - source=WorkflowInstanceLogEntry, label=_('Transition'), + source=WorkflowInstanceLogEntry, attribute='transition' ) SourceColumn( - source=WorkflowInstanceLogEntry, label=_('Comment'), + source=WorkflowInstanceLogEntry, attribute='comment' ) + SourceColumn( + source=WorkflowInstanceLogEntry, + attribute='extra_data' + ) SourceColumn( attribute='label', is_sortable=True, source=WorkflowState @@ -269,6 +276,10 @@ class DocumentStatesApp(MayanAppConfig): SourceColumn( attribute='label', is_sortable=True, source=WorkflowTransitionField ) + SourceColumn( + attribute='get_field_type_display', label=_('Type'), + source=WorkflowTransitionField + ) SourceColumn( attribute='required', is_sortable=True, source=WorkflowTransitionField, widget=TwoStateWidget diff --git a/mayan/apps/document_states/forms.py b/mayan/apps/document_states/forms.py index dfb2e6fd65..1e10ea9a14 100644 --- a/mayan/apps/document_states/forms.py +++ b/mayan/apps/document_states/forms.py @@ -175,6 +175,7 @@ class WorkflowInstanceTransitionSelectForm(forms.Form): ].queryset = workflow_instance.get_transition_choices(_user=user) transition = forms.ModelChoiceField( + help_text=_('Select a transition to execute in the next step.'), label=_('Transition'), queryset=WorkflowTransition.objects.none() ) diff --git a/mayan/apps/document_states/icons.py b/mayan/apps/document_states/icons.py index db6c5b5925..5c54da1aee 100644 --- a/mayan/apps/document_states/icons.py +++ b/mayan/apps/document_states/icons.py @@ -26,7 +26,9 @@ icon_workflow_list = Icon(driver_name='fontawesome', symbol='sitemap') icon_workflow_preview = Icon(driver_name='fontawesome', symbol='eye') -icon_workflow_instance_detail = Icon(driver_name='fontawesome', symbol='sitemap') +icon_workflow_instance_detail = Icon( + driver_name='fontawesome', symbol='sitemap' +) icon_workflow_instance_transition = Icon( driver_name='fontawesome', symbol='arrows-alt-h' ) @@ -58,8 +60,12 @@ icon_workflow_state_delete = Icon(driver_name='fontawesome', symbol='times') icon_workflow_state_edit = Icon(driver_name='fontawesome', symbol='pencil-alt') icon_workflow_state_action = Icon(driver_name='fontawesome', symbol='code') -icon_workflow_state_action_delete = Icon(driver_name='fontawesome', symbol='times') -icon_workflow_state_action_edit = Icon(driver_name='fontawesome', symbol='pencil-alt') +icon_workflow_state_action_delete = Icon( + driver_name='fontawesome', symbol='times' +) +icon_workflow_state_action_edit = Icon( + driver_name='fontawesome', symbol='pencil-alt' +) icon_workflow_state_action_selection = Icon( driver_name='fontawesome-dual', primary_symbol='code', secondary_symbol='plus' @@ -72,19 +78,27 @@ icon_workflow_transition_create = Icon( driver_name='fontawesome-dual', primary_symbol='arrows-alt-h', secondary_symbol='plus' ) -icon_workflow_transition_delete = Icon(driver_name='fontawesome', symbol='times') +icon_workflow_transition_delete = Icon( + driver_name='fontawesome', symbol='times' +) icon_workflow_transition_edit = Icon( driver_name='fontawesome', symbol='pencil-alt' ) -icon_workflow_transition_field = Icon(driver_name='fontawesome', symbol='code') -icon_workflow_transition_field_delete = Icon(driver_name='fontawesome', symbol='times') -icon_workflow_transition_field_edit = Icon(driver_name='fontawesome', symbol='pencil-alt') +icon_workflow_transition_field = Icon(driver_name='fontawesome', symbol='table') +icon_workflow_transition_field_delete = Icon( + driver_name='fontawesome', symbol='times' +) +icon_workflow_transition_field_edit = Icon( + driver_name='fontawesome', symbol='pencil-alt' +) icon_workflow_transition_field_create = Icon( - driver_name='fontawesome-dual', primary_symbol='code', + driver_name='fontawesome-dual', primary_symbol='table', secondary_symbol='plus' ) -icon_workflow_transition_field_list = Icon(driver_name='fontawesome', symbol='code') +icon_workflow_transition_field_list = Icon( + driver_name='fontawesome', symbol='table' +) icon_workflow_transition_triggers = Icon( driver_name='fontawesome', symbol='bolt' diff --git a/mayan/apps/document_states/literals.py b/mayan/apps/document_states/literals.py index 79fc51f828..e18064ae0e 100644 --- a/mayan/apps/document_states/literals.py +++ b/mayan/apps/document_states/literals.py @@ -9,3 +9,15 @@ WORKFLOW_ACTION_WHEN_CHOICES = ( (WORKFLOW_ACTION_ON_ENTRY, _('On entry')), (WORKFLOW_ACTION_ON_EXIT, _('On exit')), ) + +FIELD_TYPE_CHOICE_CHAR = 1 +FIELD_TYPE_CHOICE_INTEGER = 2 +FIELD_TYPE_CHOICES = ( + (FIELD_TYPE_CHOICE_CHAR, _('Character')), + (FIELD_TYPE_CHOICE_INTEGER, _('Number (Integer)')), +) + +FIELD_TYPE_MAPPING = { + FIELD_TYPE_CHOICE_CHAR: 'django.forms.CharField', + FIELD_TYPE_CHOICE_INTEGER: 'django.forms.IntegerField', +} diff --git a/mayan/apps/document_states/migrations/0014_auto_20190630_1331.py b/mayan/apps/document_states/migrations/0014_auto_20190701_0454.py similarity index 55% rename from mayan/apps/document_states/migrations/0014_auto_20190630_1331.py rename to mayan/apps/document_states/migrations/0014_auto_20190701_0454.py index 8f4e567f9a..6ede77fcd0 100644 --- a/mayan/apps/document_states/migrations/0014_auto_20190630_1331.py +++ b/mayan/apps/document_states/migrations/0014_auto_20190701_0454.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.11.20 on 2019-06-30 13:31 +# Generated by Django 1.11.20 on 2019-07-01 04:54 from __future__ import unicode_literals from django.db import migrations, models @@ -17,10 +17,11 @@ class Migration(migrations.Migration): name='WorkflowTransitionField', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=128, verbose_name='Internal name')), - ('label', models.CharField(max_length=128, verbose_name='Label')), - ('help_text', models.TextField(blank=True, verbose_name='Help text')), - ('required', models.BooleanField(default=False, verbose_name='Required')), + ('field_type', models.PositiveIntegerField(choices=[(1, 'Character'), (2, 'Number (Integer)')], verbose_name='Type')), + ('name', models.CharField(help_text='The name that will be used to identify this field in other parts of the workflow system.', max_length=128, verbose_name='Internal name')), + ('label', models.CharField(help_text='The field name that will be shown on the user interface.', max_length=128, verbose_name='Label')), + ('help_text', models.TextField(blank=True, help_text='An optional message that will help users better understand the purpose of the field and data to provide.', verbose_name='Help text')), + ('required', models.BooleanField(default=False, help_text='Whether this fields needs to be filled out or not to proceed.', verbose_name='Required')), ('transition', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='fields', to='document_states.WorkflowTransition', verbose_name='Transition')), ], options={ @@ -33,6 +34,11 @@ class Migration(migrations.Migration): name='context', field=models.TextField(blank=True, verbose_name='Backend data'), ), + migrations.AddField( + model_name='workflowinstancelogentry', + name='extra_data', + field=models.TextField(blank=True, verbose_name='Extra data'), + ), migrations.AlterUniqueTogether( name='workflowtransitionfield', unique_together=set([('transition', 'name')]), diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 7a4c6647bd..60e83adc06 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -23,8 +23,8 @@ from mayan.apps.events.models import StoredEventType from .error_logs import error_log_state_actions from .events import event_workflow_created, event_workflow_edited from .literals import ( - WORKFLOW_ACTION_WHEN_CHOICES, WORKFLOW_ACTION_ON_ENTRY, - WORKFLOW_ACTION_ON_EXIT + FIELD_TYPE_CHOICES, WORKFLOW_ACTION_WHEN_CHOICES, + WORKFLOW_ACTION_ON_ENTRY, WORKFLOW_ACTION_ON_EXIT ) from .managers import WorkflowManager from .permissions import permission_workflow_transition @@ -369,6 +369,9 @@ class WorkflowTransitionField(models.Model): on_delete=models.CASCADE, related_name='fields', to=WorkflowTransition, verbose_name=_('Transition') ) + field_type = models.PositiveIntegerField( + choices=FIELD_TYPE_CHOICES, verbose_name=_('Type') + ) name = models.CharField( help_text=_( 'The name that will be used to identify this field in other parts ' @@ -390,7 +393,6 @@ class WorkflowTransitionField(models.Model): 'Whether this fields needs to be filled out or not to proceed.' ), verbose_name=_('Required') ) - #TODO: widget, widget kwargs class Meta: unique_together = ('transition', 'name') @@ -431,7 +433,7 @@ class WorkflowInstance(models.Model): verbose_name=_('Document') ) context = models.TextField( - blank=True, verbose_name=_('Backend data') + blank=True, verbose_name=_('Context') ) class Meta: @@ -447,25 +449,25 @@ class WorkflowInstance(models.Model): with transaction.atomic(): try: if transition in self.get_current_state().origin_transitions.all(): - self.log_entries.create( - comment=comment or '', transition=transition, user=user - ) if extra_data: - data = self.loads() - data.update(extra_data) - self.dumps(data=data) + context = self.loads() + context.update(extra_data) + self.dumps(context=context) + + self.log_entries.create( + comment=comment or '', + extra_data=json.dumps(extra_data or {}), + transition=transition, user=user + ) except AttributeError: # No initial state has been set for this workflow pass - # TODO: execute transition event target = document, - # action_object = self - - def dumps(self, data): + def dumps(self, context): """ Serialize the context data. """ - self.context = json.dumps(data) + self.context = json.dumps(context) self.save() def get_absolute_url(self): @@ -579,6 +581,7 @@ class WorkflowInstanceLogEntry(models.Model): to=settings.AUTH_USER_MODEL, verbose_name=_('User') ) comment = models.TextField(blank=True, verbose_name=_('Comment')) + extra_data = models.TextField(blank=True, verbose_name=_('Extra data')) class Meta: ordering = ('datetime',) @@ -592,6 +595,12 @@ class WorkflowInstanceLogEntry(models.Model): if self.transition not in self.workflow_instance.get_transition_choices(_user=self.user): raise ValidationError(_('Not a valid transition choice.')) + def loads(self): + """ + Deserialize the context data. + """ + return json.loads(self.extra_data or '{}') + def save(self, *args, **kwargs): with transaction.atomic(): result = super(WorkflowInstanceLogEntry, self).save(*args, **kwargs) diff --git a/mayan/apps/document_states/tests/test_workflow_transition_views.py b/mayan/apps/document_states/tests/test_workflow_transition_views.py index 1eb8dfb133..4a7e66f837 100644 --- a/mayan/apps/document_states/tests/test_workflow_transition_views.py +++ b/mayan/apps/document_states/tests/test_workflow_transition_views.py @@ -16,6 +16,10 @@ from .mixins import ( WorkflowTestMixin, WorkflowViewTestMixin, WorkflowTransitionViewTestMixin ) +TEST_WORKFLOW_TRANSITION_FIELD_NAME = 'test_workflow_transition_field' +TEST_WORKFLOW_TRANSITION_FIELD_LABEL = 'test workflow transition field' +TEST_WORKFLOW_TRANSITION_FIELD_HELP_TEXT = 'test workflow transition field help test' + class WorkflowTransitionViewTestCase( WorkflowTestMixin, WorkflowViewTestMixin, WorkflowTransitionViewTestMixin, @@ -232,3 +236,123 @@ class WorkflowTransitionEventViewTestCase( response = self._request_test_workflow_transition_event_list_view() self.assertEqual(response.status_code, 200) + + +class WorkflowTransitionFieldViewTestCase( + WorkflowTestMixin, WorkflowTransitionViewTestMixin, GenericViewTestCase +): + def setUp(self): + super(WorkflowTransitionFieldViewTestCase, self).setUp() + self._create_test_workflow() + self._create_test_workflow_states() + self._create_test_workflow_transition() + + def _create_test_workflow_transition_field(self): + self.test_workflow_transition_field = self.test_workflow_transition.fields.create( + name=TEST_WORKFLOW_TRANSITION_FIELD_NAME, + label=TEST_WORKFLOW_TRANSITION_FIELD_LABEL, + help_text=TEST_WORKFLOW_TRANSITION_FIELD_HELP_TEXT + ) + + def _request_test_workflow_transition_field_list_view(self): + return self.get( + viewname='document_states:setup_workflow_transition_field_list', + kwargs={'pk': self.test_workflow_transition.pk} + ) + + def test_workflow_transition_field_list_view_no_permission(self): + self._create_test_workflow_transition_field() + + response = self._request_test_workflow_transition_field_list_view() + self.assertNotContains( + response=response, + text=self.test_workflow_transition_field.label, + status_code=404 + ) + + def test_workflow_transition_field_list_view_with_access(self): + self._create_test_workflow_transition_field() + + self.grant_access( + obj=self.test_workflow, permission=permission_workflow_edit + ) + + response = self._request_test_workflow_transition_field_list_view() + self.assertContains( + response=response, + text=self.test_workflow_transition_field.label, + status_code=200 + ) + + def _request_workflow_transition_field_create_view(self): + return self.post( + viewname='document_states:setup_workflow_transition_field_create', + kwargs={'pk': self.test_workflow_transition.pk}, + data={ + 'name': TEST_WORKFLOW_TRANSITION_FIELD_NAME, + 'label': TEST_WORKFLOW_TRANSITION_FIELD_LABEL, + 'help_text': TEST_WORKFLOW_TRANSITION_FIELD_HELP_TEXT + } + ) + + def test_workflow_transition_field_create_view_no_permission(self): + workflow_transition_field_count = self.test_workflow_transition.fields.count() + + response = self._request_workflow_transition_field_create_view() + self.assertEqual(response.status_code, 404) + + self.assertEqual( + self.test_workflow_transition.fields.count(), + workflow_transition_field_count + ) + + def test_workflow_transition_field_create_view_with_access(self): + workflow_transition_field_count = self.test_workflow_transition.fields.count() + + self.grant_access( + obj=self.test_workflow, permission=permission_workflow_edit + ) + + response = self._request_workflow_transition_field_create_view() + self.assertEqual(response.status_code, 302) + + self.assertEqual( + self.test_workflow_transition.fields.count(), + workflow_transition_field_count + 1 + ) + + def _request_workflow_transition_field_delete_view(self): + return self.post( + viewname='document_states:setup_workflow_transition_field_delete', + kwargs={'pk': self.test_workflow_transition_field.pk}, + ) + + def test_workflow_transition_field_delete_view_no_permission(self): + self._create_test_workflow_transition_field() + + workflow_transition_field_count = self.test_workflow_transition.fields.count() + + response = self._request_workflow_transition_field_delete_view() + self.assertEqual(response.status_code, 404) + + self.assertEqual( + self.test_workflow_transition.fields.count(), + workflow_transition_field_count + ) + + def test_workflow_transition_field_delete_view_with_access(self): + self._create_test_workflow_transition_field() + + workflow_transition_field_count = self.test_workflow_transition.fields.count() + + self.grant_access( + obj=self.test_workflow, permission=permission_workflow_edit + ) + + response = self._request_workflow_transition_field_delete_view() + self.assertEqual(response.status_code, 302) + + self.assertEqual( + self.test_workflow_transition.fields.count(), + workflow_transition_field_count - 1 + ) diff --git a/mayan/apps/document_states/views/workflow_instance_views.py b/mayan/apps/document_states/views/workflow_instance_views.py index f857049829..0ff1e8493d 100644 --- a/mayan/apps/document_states/views/workflow_instance_views.py +++ b/mayan/apps/document_states/views/workflow_instance_views.py @@ -4,7 +4,7 @@ from django.contrib import messages from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 from django.template import RequestContext -from django.urls import reverse, reverse_lazy +from django.urls import reverse from django.utils.translation import ugettext_lazy as _ from mayan.apps.acls.models import AccessControlList @@ -16,6 +16,7 @@ from mayan.apps.documents.models import Document from ..forms import WorkflowInstanceTransitionSelectForm from ..icons import icon_workflow_instance_detail, icon_workflow_list from ..links import link_workflow_instance_transition +from ..literals import FIELD_TYPE_MAPPING from ..models import WorkflowInstance from ..permissions import permission_workflow_view @@ -165,7 +166,7 @@ class WorkflowInstanceTransitionExecuteView(FormView): for field in self.get_workflow_transition().fields.all(): schema['fields'][field.name] = { 'label': field.label, - 'class': 'django.forms.CharField', 'kwargs': { + 'class': FIELD_TYPE_MAPPING[field.field_type], 'kwargs': { } } @@ -219,6 +220,3 @@ class WorkflowInstanceTransitionSelectView(ExternalObjectMixin, FormView): 'user': self.request.user, 'workflow_instance': self.external_object } - - #def get_workflow_instance(self): - # return get_object_or_404(klass=WorkflowInstance, pk=self.kwargs['pk']) diff --git a/mayan/apps/document_states/views/workflow_views.py b/mayan/apps/document_states/views/workflow_views.py index b28970e932..34d845458a 100644 --- a/mayan/apps/document_states/views/workflow_views.py +++ b/mayan/apps/document_states/views/workflow_views.py @@ -31,12 +31,13 @@ from ..forms import ( ) from ..icons import ( icon_workflow_list, icon_workflow_state, icon_workflow_state_action, - icon_workflow_transition + icon_workflow_transition, icon_workflow_transition_field ) from ..links import ( link_setup_workflow_create, link_setup_workflow_state_create, link_setup_workflow_state_action_selection, - link_setup_workflow_transition_create + link_setup_workflow_transition_create, + link_setup_workflow_transition_field_create, ) from ..models import ( Workflow, WorkflowState, WorkflowStateAction, WorkflowTransition, @@ -738,8 +739,7 @@ class SetupWorkflowTransitionTriggerEventListView(ExternalObjectMixin, FormView) class SetupWorkflowTransitionFieldCreateView(ExternalObjectMixin, SingleObjectCreateView): external_object_class = WorkflowTransition external_object_permission = permission_workflow_edit - fields = ('name', 'label', 'help_text', 'required') - #object_permission = permission_workflow_edit + fields = ('name', 'label', 'field_type', 'help_text', 'required') def get_extra_context(self): return { @@ -789,7 +789,7 @@ class SetupWorkflowTransitionFieldDeleteView(SingleObjectDeleteView): class SetupWorkflowTransitionFieldEditView(SingleObjectEditView): - fields = ('name', 'label', 'help_text', 'required',) + fields = ('name', 'label', 'field_type', 'help_text', 'required',) model = WorkflowTransitionField object_permission = permission_workflow_edit @@ -819,21 +819,23 @@ class SetupWorkflowTransitionFieldListView(ExternalObjectMixin, SingleObjectList return { 'hide_object': True, 'navigation_object_list': ('object', 'workflow'), - #'no_results_icon': icon_workflow_transition_action, - #'no_results_main_link': link_setup_workflow_transition_action_selection.resolve( - # context=RequestContext( - # request=self.request, dict_={ - # 'object': self.get_workflow_transition() - # } - # ) - #), - #'no_results_text': _( - # 'Workflow state actions are macros that get executed when ' - # 'documents enters or leaves the state in which they reside.' - #), - #'no_results_title': _( - # 'There are no actions for this workflow state' - #), + 'no_results_icon': icon_workflow_transition_field, + 'no_results_main_link': link_setup_workflow_transition_field_create.resolve( + context=RequestContext( + request=self.request, dict_={ + 'object': self.external_object + } + ) + ), + 'no_results_text': _( + 'Workflow transition fields allow adding data to the ' + 'workflow\'s context. This additional context data can then ' + 'be used by other elements of the workflow system like the ' + 'workflow state actions.' + ), + 'no_results_title': _( + 'There are no fields for this workflow transition' + ), 'object': self.external_object, 'title': _( 'Fields for workflow transition: %s' From e73be6bbab038a18b96df9eaa24a8096a2a9b67a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 01:12:31 -0400 Subject: [PATCH 20/23] Don't error out if the settings are set to blank Signed-off-by: Roberto Rosario --- mayan/settings/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 4ce64295cb..f2f3888ac2 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -382,10 +382,10 @@ for app in INSTALLED_APPS: ) -for APP in COMMON_EXTRA_APPS: +for APP in (COMMON_EXTRA_APPS or ()): INSTALLED_APPS = INSTALLED_APPS + (APP,) INSTALLED_APPS = [ - APP for APP in INSTALLED_APPS if APP not in COMMON_DISABLED_APPS + APP for APP in INSTALLED_APPS if APP not in (COMMON_DISABLED_APPS or ()) ] From c628de9ede7f571db0f74fcbe3eca21ba00991db Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 09:41:06 -0400 Subject: [PATCH 21/23] Improve appearance of the object error list view Add icon to the object error list link. Signed-off-by: Roberto Rosario --- mayan/apps/common/icons.py | 7 +++++-- mayan/apps/common/links.py | 11 +++-------- mayan/apps/common/views.py | 10 +++++++++- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/mayan/apps/common/icons.py b/mayan/apps/common/icons.py index fc72d63d70..ad021e2500 100644 --- a/mayan/apps/common/icons.py +++ b/mayan/apps/common/icons.py @@ -35,8 +35,11 @@ icon_menu_about = Icon( icon_menu_user = Icon( driver_name='fontawesome', symbol='user-circle' ) -icon_object_error_list_with_icon = Icon( - driver_name='fontawesome', symbol='lock' +icon_object_errors = Icon( + driver_name='fontawesome', symbol='exclamation-triangle' +) +icon_object_error_list = Icon( + driver_name='fontawesome', symbol='exclamation-triangle' ) icon_ok = Icon( driver_name='fontawesome', symbol='check' diff --git a/mayan/apps/common/links.py b/mayan/apps/common/links.py index 25a74bf903..dc58f19ca4 100644 --- a/mayan/apps/common/links.py +++ b/mayan/apps/common/links.py @@ -8,8 +8,8 @@ from mayan.apps.navigation.classes import Link from .icons import ( icon_about, icon_current_user_locale_profile_details, icon_current_user_locale_profile_edit, icon_documentation, - icon_forum, icon_license, icon_object_error_list_with_icon, - icon_setup, icon_source_code, icon_support, icon_tools + icon_forum, icon_license, icon_setup, icon_source_code, icon_support, + icon_tools ) from .permissions_runtime import permission_error_log_view @@ -51,6 +51,7 @@ link_documentation = Link( ) link_object_error_list = Link( kwargs=get_kwargs_factory('resolved_object'), + icon_class_path='mayan.apps.common.icons.icon_object_error_list', permissions=(permission_error_log_view,), text=_('Errors'), view='common:object_error_list', ) @@ -59,12 +60,6 @@ link_object_error_list_clear = Link( permissions=(permission_error_log_view,), text=_('Clear all'), view='common:object_error_list_clear', ) -link_object_error_list_with_icon = Link( - kwargs=get_kwargs_factory('resolved_object'), - icon_class=icon_object_error_list_with_icon, - permissions=(permission_error_log_view,), text=_('Errors'), - view='common:error_list', -) link_forum = Link( icon_class=icon_forum, tags='new_window', text=_('Forum'), url='https://forum.mayan-edms.com' diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index 426109fe1b..30f16cc0f4 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -21,7 +21,7 @@ from .forms import ( from .generics import ( ConfirmView, SingleObjectEditView, SingleObjectListView, SimpleView ) -from .icons import icon_setup +from .icons import icon_object_errors, icon_setup from .menus import menu_tools, menu_setup from .permissions_runtime import permission_error_log_view from .settings import setting_home_view @@ -155,6 +155,14 @@ class ObjectErrorLogEntryListView(SingleObjectListView): {'name': _('Result'), 'attribute': 'result'}, ), 'hide_object': True, + 'no_results_icon': icon_object_errors, + 'no_results_text': _( + 'This view displays the error log of different object. ' + 'An empty list is a good thing.' + ), + 'no_results_title': _( + 'There are no error log entries' + ), 'object': self.get_object(), 'title': _('Error log entries for: %s' % self.get_object()), } From 303e34299af7d383598db98ca02df19ca798d5f7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 09:41:45 -0400 Subject: [PATCH 22/23] Add a JSON and YAML validator to the common app Signed-off-by: Roberto Rosario --- mayan/apps/common/validators.py | 57 +++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/mayan/apps/common/validators.py b/mayan/apps/common/validators.py index 84ff982615..97a4db3326 100644 --- a/mayan/apps/common/validators.py +++ b/mayan/apps/common/validators.py @@ -1,9 +1,18 @@ from __future__ import unicode_literals +import json import re +import yaml +try: + from yaml import CSafeLoader as SafeLoader +except ImportError: + from yaml import SafeLoader + +from django.core.exceptions import ValidationError from django.core.validators import RegexValidator from django.utils import six +from django.utils.deconstruct import deconstructible from django.utils.functional import SimpleLazyObject from django.utils.translation import ugettext_lazy as _ @@ -23,6 +32,54 @@ def _lazy_re_compile(regex, flags=0): return SimpleLazyObject(_compile) +@deconstructible +class JSONValidator(object): + """ + Validates that the input is JSON compliant. + """ + def __call__(self, value): + value = value.strip() + try: + json.loads(stream=value) + except ValueError: + raise ValidationError( + _('Enter a valid JSON value.'), + code='invalid' + ) + + def __eq__(self, other): + return ( + isinstance(other, JSONValidator) + ) + + def __ne__(self, other): + return not (self == other) + + +@deconstructible +class YAMLValidator(object): + """ + Validates that the input is YAML compliant. + """ + def __call__(self, value): + value = value.strip() + try: + yaml.load(stream=value, Loader=SafeLoader) + except yaml.error.YAMLError: + raise ValidationError( + _('Enter a valid YAML value.'), + code='invalid' + ) + + def __eq__(self, other): + return ( + isinstance(other, YAMLValidator) + ) + + def __ne__(self, other): + return not (self == other) + + internal_name_re = _lazy_re_compile(r'^[a-zA-Z0-9_]+\Z') validate_internal_name = RegexValidator( internal_name_re, _( From 572690e2bca1d79fb1019e5aa3ef56990a000a5c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 09:53:23 -0400 Subject: [PATCH 23/23] Finish workflow context implementation Improve workflow instance detail view. Add workflow transition field widget support. Fix workflow transition field required support. Update tests. Signed-off-by: Roberto Rosario --- mayan/apps/document_states/apps.py | 33 ++++++++++++---- mayan/apps/document_states/html_widgets.py | 39 +++++++++++++++++++ mayan/apps/document_states/icons.py | 1 - mayan/apps/document_states/literals.py | 25 ++++++++---- .../migrations/0015_auto_20190701_1311.py | 31 +++++++++++++++ mayan/apps/document_states/models.py | 31 ++++++++++++++- .../templates/document_states/extra_data.html | 7 ++++ mayan/apps/document_states/tests/mixins.py | 7 ++-- .../tests/test_workflow_transition_views.py | 6 ++- .../views/workflow_instance_views.py | 12 ++++-- .../document_states/views/workflow_views.py | 11 ++++-- 11 files changed, 174 insertions(+), 29 deletions(-) create mode 100644 mayan/apps/document_states/html_widgets.py create mode 100644 mayan/apps/document_states/migrations/0015_auto_20190701_1311.py create mode 100644 mayan/apps/document_states/templates/document_states/extra_data.html diff --git a/mayan/apps/document_states/apps.py b/mayan/apps/document_states/apps.py index 2c2888bade..11b6606517 100644 --- a/mayan/apps/document_states/apps.py +++ b/mayan/apps/document_states/apps.py @@ -27,6 +27,7 @@ from .dependencies import * # NOQA from .handlers import ( handler_index_document, handler_launch_workflow, handler_trigger_transition ) +from .html_widgets import widget_transition_events, WorkflowLogExtraDataWidget from .links import ( link_document_workflow_instance_list, link_setup_document_type_workflows, link_setup_workflow_document_types, link_setup_workflow_create, @@ -54,7 +55,6 @@ from .permissions import ( permission_workflow_delete, permission_workflow_edit, permission_workflow_transition, permission_workflow_view ) -from .widgets import widget_transition_events class DocumentStatesApp(MayanAppConfig): @@ -206,22 +206,31 @@ class DocumentStatesApp(MayanAppConfig): SourceColumn( source=WorkflowInstanceLogEntry, label=_('Date and time'), - attribute='datetime' + attribute='datetime', is_sortable=True ) SourceColumn( - source=WorkflowInstanceLogEntry, attribute='user' + source=WorkflowInstanceLogEntry, attribute='user', is_sortable=True ) SourceColumn( source=WorkflowInstanceLogEntry, - attribute='transition' + attribute='transition__origin_state', is_sortable=True ) SourceColumn( source=WorkflowInstanceLogEntry, - attribute='comment' + attribute='transition', is_sortable=True ) SourceColumn( source=WorkflowInstanceLogEntry, - attribute='extra_data' + attribute='transition__destination_state', is_sortable=True + ) + SourceColumn( + source=WorkflowInstanceLogEntry, + attribute='comment', is_sortable=True + ) + SourceColumn( + source=WorkflowInstanceLogEntry, + attribute='get_extra_data', label=_('Additional details'), + widget=WorkflowLogExtraDataWidget ) SourceColumn( @@ -281,8 +290,16 @@ class DocumentStatesApp(MayanAppConfig): source=WorkflowTransitionField ) SourceColumn( - attribute='required', is_sortable=True, source=WorkflowTransitionField, - widget=TwoStateWidget + attribute='required', is_sortable=True, + source=WorkflowTransitionField, widget=TwoStateWidget + ) + SourceColumn( + attribute='get_widget_display', label=_('Widget'), + is_sortable=False, source=WorkflowTransitionField + ) + SourceColumn( + attribute='widget_kwargs', is_sortable=True, + source=WorkflowTransitionField ) SourceColumn( diff --git a/mayan/apps/document_states/html_widgets.py b/mayan/apps/document_states/html_widgets.py new file mode 100644 index 0000000000..ac518160a5 --- /dev/null +++ b/mayan/apps/document_states/html_widgets.py @@ -0,0 +1,39 @@ +from __future__ import unicode_literals + +from django import forms +from django.template.loader import render_to_string +from django.urls import reverse +from django.utils.html import format_html_join, mark_safe + + +def widget_transition_events(transition): + return format_html_join( + sep='\n', format_string='
{}
', args_generator=( + ( + transition_trigger.event_type.label, + ) for transition_trigger in transition.trigger_events.all() + ) + ) + + +def widget_workflow_diagram(workflow): + return mark_safe( + ''.format( + reverse( + viewname='document_states:workflow_image', kwargs={ + 'pk': workflow.pk + } + ) + ) + ) + + +class WorkflowLogExtraDataWidget(object): + template_name = 'document_states/extra_data.html' + + def render(self, name=None, value=None): + return render_to_string( + template_name=self.template_name, context={ + 'value': value + } + ) diff --git a/mayan/apps/document_states/icons.py b/mayan/apps/document_states/icons.py index 5c54da1aee..f30a9fdbcb 100644 --- a/mayan/apps/document_states/icons.py +++ b/mayan/apps/document_states/icons.py @@ -3,7 +3,6 @@ from __future__ import absolute_import, unicode_literals from mayan.apps.appearance.classes import Icon from mayan.apps.documents.icons import icon_document_type - icon_workflow = Icon(driver_name='fontawesome', symbol='sitemap') icon_document_type_workflow_list = icon_workflow diff --git a/mayan/apps/document_states/literals.py b/mayan/apps/document_states/literals.py index e18064ae0e..84242f9ab0 100644 --- a/mayan/apps/document_states/literals.py +++ b/mayan/apps/document_states/literals.py @@ -2,14 +2,6 @@ from __future__ import unicode_literals from django.utils.translation import ugettext_lazy as _ -WORKFLOW_ACTION_ON_ENTRY = 1 -WORKFLOW_ACTION_ON_EXIT = 2 - -WORKFLOW_ACTION_WHEN_CHOICES = ( - (WORKFLOW_ACTION_ON_ENTRY, _('On entry')), - (WORKFLOW_ACTION_ON_EXIT, _('On exit')), -) - FIELD_TYPE_CHOICE_CHAR = 1 FIELD_TYPE_CHOICE_INTEGER = 2 FIELD_TYPE_CHOICES = ( @@ -21,3 +13,20 @@ FIELD_TYPE_MAPPING = { FIELD_TYPE_CHOICE_CHAR: 'django.forms.CharField', FIELD_TYPE_CHOICE_INTEGER: 'django.forms.IntegerField', } + +WIDGET_CLASS_TEXTAREA = 1 +WIDGET_CLASS_CHOICES = ( + (WIDGET_CLASS_TEXTAREA, _('Text area')), +) + +WIDGET_CLASS_MAPPING = { + WIDGET_CLASS_TEXTAREA: 'django.forms.widgets.Textarea', +} + +WORKFLOW_ACTION_ON_ENTRY = 1 +WORKFLOW_ACTION_ON_EXIT = 2 + +WORKFLOW_ACTION_WHEN_CHOICES = ( + (WORKFLOW_ACTION_ON_ENTRY, _('On entry')), + (WORKFLOW_ACTION_ON_EXIT, _('On exit')), +) diff --git a/mayan/apps/document_states/migrations/0015_auto_20190701_1311.py b/mayan/apps/document_states/migrations/0015_auto_20190701_1311.py new file mode 100644 index 0000000000..baef5fc886 --- /dev/null +++ b/mayan/apps/document_states/migrations/0015_auto_20190701_1311.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-07-01 13:11 +from __future__ import unicode_literals + +from django.db import migrations, models +import mayan.apps.common.validators + + +class Migration(migrations.Migration): + + dependencies = [ + ('document_states', '0014_auto_20190701_0454'), + ] + + operations = [ + migrations.AddField( + model_name='workflowtransitionfield', + name='widget', + field=models.PositiveIntegerField(blank=True, choices=[(1, 'Text area')], help_text='An optional class to change the default presentation of the field.', null=True, verbose_name='Widget class'), + ), + migrations.AddField( + model_name='workflowtransitionfield', + name='widget_kwargs', + field=models.TextField(blank=True, help_text='A group of keyword arguments to customize the widget. Use YAML format.', validators=[mayan.apps.common.validators.YAMLValidator()], verbose_name='Widget keyword arguments'), + ), + migrations.AlterField( + model_name='workflowinstance', + name='context', + field=models.TextField(blank=True, verbose_name='Context'), + ), + ] diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 60e83adc06..87628d470a 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -4,6 +4,11 @@ import json import logging from graphviz import Digraph +import yaml +try: + from yaml import CSafeLoader as SafeLoader +except ImportError: + from yaml import SafeLoader from django.conf import settings from django.core.exceptions import PermissionDenied, ValidationError @@ -15,7 +20,7 @@ from django.utils.module_loading import import_string from django.utils.translation import ugettext_lazy as _ from mayan.apps.acls.models import AccessControlList -from mayan.apps.common.validators import validate_internal_name +from mayan.apps.common.validators import YAMLValidator, validate_internal_name from mayan.apps.documents.models import Document, DocumentType from mayan.apps.documents.permissions import permission_document_view from mayan.apps.events.models import StoredEventType @@ -23,7 +28,7 @@ from mayan.apps.events.models import StoredEventType from .error_logs import error_log_state_actions from .events import event_workflow_created, event_workflow_edited from .literals import ( - FIELD_TYPE_CHOICES, WORKFLOW_ACTION_WHEN_CHOICES, + FIELD_TYPE_CHOICES, WIDGET_CLASS_CHOICES, WORKFLOW_ACTION_WHEN_CHOICES, WORKFLOW_ACTION_ON_ENTRY, WORKFLOW_ACTION_ON_EXIT ) from .managers import WorkflowManager @@ -393,6 +398,18 @@ class WorkflowTransitionField(models.Model): 'Whether this fields needs to be filled out or not to proceed.' ), verbose_name=_('Required') ) + widget = models.PositiveIntegerField( + blank=True, choices=WIDGET_CLASS_CHOICES, help_text=_( + 'An optional class to change the default presentation of the field.' + ), null=True, verbose_name=_('Widget class') + ) + widget_kwargs = models.TextField( + blank=True, help_text=_( + 'A group of keyword arguments to customize the widget. ' + 'Use YAML format.' + ), validators=[YAMLValidator()], + verbose_name=_('Widget keyword arguments') + ) class Meta: unique_together = ('transition', 'name') @@ -402,6 +419,9 @@ class WorkflowTransitionField(models.Model): def __str__(self): return self.label + def get_widget_kwargs(self): + return yaml.load(stream=self.widget_kwargs, Loader=SafeLoader) + @python_2_unicode_compatible class WorkflowTransitionTriggerEvent(models.Model): @@ -595,6 +615,13 @@ class WorkflowInstanceLogEntry(models.Model): if self.transition not in self.workflow_instance.get_transition_choices(_user=self.user): raise ValidationError(_('Not a valid transition choice.')) + def get_extra_data(self): + result = {} + for key, value in self.loads().items(): + result[self.transition.fields.get(name=key).label] = value + + return result + def loads(self): """ Deserialize the context data. diff --git a/mayan/apps/document_states/templates/document_states/extra_data.html b/mayan/apps/document_states/templates/document_states/extra_data.html new file mode 100644 index 0000000000..94ed6b96c2 --- /dev/null +++ b/mayan/apps/document_states/templates/document_states/extra_data.html @@ -0,0 +1,7 @@ +{% if value %} +
    + {% for key, value in value.items %} +
  • {{ key }}: {{ value }}
  • + {% endfor %} +
+{% endif %} diff --git a/mayan/apps/document_states/tests/mixins.py b/mayan/apps/document_states/tests/mixins.py index 76a1865ed4..f8ea985a1c 100644 --- a/mayan/apps/document_states/tests/mixins.py +++ b/mayan/apps/document_states/tests/mixins.py @@ -152,9 +152,10 @@ class WorkflowTransitionViewTestMixin(object): def _request_test_workflow_transition(self): return self.post( - viewname='document_states:workflow_instance_transition', - kwargs={'pk': self.test_workflow_instance.pk}, data={ - 'transition': self.test_workflow_transition.pk, + viewname='document_states:workflow_instance_transition_execute', + kwargs={ + 'workflow_instance_pk': self.test_workflow_instance.pk, + 'workflow_transition_pk': self.test_workflow_transition.pk, } ) diff --git a/mayan/apps/document_states/tests/test_workflow_transition_views.py b/mayan/apps/document_states/tests/test_workflow_transition_views.py index 4a7e66f837..2446cecd9b 100644 --- a/mayan/apps/document_states/tests/test_workflow_transition_views.py +++ b/mayan/apps/document_states/tests/test_workflow_transition_views.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals from mayan.apps.common.tests import GenericViewTestCase from mayan.apps.documents.tests import GenericDocumentViewTestCase +from ..literals import FIELD_TYPE_CHOICE_CHAR from ..models import WorkflowTransition from ..permissions import ( permission_workflow_edit, permission_workflow_view, @@ -19,6 +20,7 @@ from .mixins import ( TEST_WORKFLOW_TRANSITION_FIELD_NAME = 'test_workflow_transition_field' TEST_WORKFLOW_TRANSITION_FIELD_LABEL = 'test workflow transition field' TEST_WORKFLOW_TRANSITION_FIELD_HELP_TEXT = 'test workflow transition field help test' +TEST_WORKFLOW_TRANSITION_FIELD_TYPE = FIELD_TYPE_CHOICE_CHAR class WorkflowTransitionViewTestCase( @@ -164,7 +166,7 @@ class WorkflowTransitionDocumentViewTestCase( permission. """ response = self._request_test_workflow_transition() - self.assertEqual(response.status_code, 200) + self.assertEqual(response.status_code, 404) # Workflow should remain in the same initial state self.assertEqual( @@ -249,6 +251,7 @@ class WorkflowTransitionFieldViewTestCase( def _create_test_workflow_transition_field(self): self.test_workflow_transition_field = self.test_workflow_transition.fields.create( + field_type=TEST_WORKFLOW_TRANSITION_FIELD_TYPE, name=TEST_WORKFLOW_TRANSITION_FIELD_NAME, label=TEST_WORKFLOW_TRANSITION_FIELD_LABEL, help_text=TEST_WORKFLOW_TRANSITION_FIELD_HELP_TEXT @@ -289,6 +292,7 @@ class WorkflowTransitionFieldViewTestCase( viewname='document_states:setup_workflow_transition_field_create', kwargs={'pk': self.test_workflow_transition.pk}, data={ + 'field_type': TEST_WORKFLOW_TRANSITION_FIELD_TYPE, 'name': TEST_WORKFLOW_TRANSITION_FIELD_NAME, 'label': TEST_WORKFLOW_TRANSITION_FIELD_LABEL, 'help_text': TEST_WORKFLOW_TRANSITION_FIELD_HELP_TEXT diff --git a/mayan/apps/document_states/views/workflow_instance_views.py b/mayan/apps/document_states/views/workflow_instance_views.py index 0ff1e8493d..bed57fdcbc 100644 --- a/mayan/apps/document_states/views/workflow_instance_views.py +++ b/mayan/apps/document_states/views/workflow_instance_views.py @@ -16,7 +16,7 @@ from mayan.apps.documents.models import Document from ..forms import WorkflowInstanceTransitionSelectForm from ..icons import icon_workflow_instance_detail, icon_workflow_list from ..links import link_workflow_instance_transition -from ..literals import FIELD_TYPE_MAPPING +from ..literals import FIELD_TYPE_MAPPING, WIDGET_CLASS_MAPPING from ..models import WorkflowInstance from ..permissions import permission_workflow_view @@ -165,10 +165,16 @@ class WorkflowInstanceTransitionExecuteView(FormView): for field in self.get_workflow_transition().fields.all(): schema['fields'][field.name] = { + 'class': FIELD_TYPE_MAPPING[field.field_type], + 'help_text': field.help_text, 'label': field.label, - 'class': FIELD_TYPE_MAPPING[field.field_type], 'kwargs': { - } + 'required': field.required, } + if field.widget: + schema['widgets'][field.name] = { + 'class': WIDGET_CLASS_MAPPING[field.widget], + 'kwargs': field.get_widget_kwargs() + } return {'schema': schema} diff --git a/mayan/apps/document_states/views/workflow_views.py b/mayan/apps/document_states/views/workflow_views.py index 34d845458a..d69c0ad774 100644 --- a/mayan/apps/document_states/views/workflow_views.py +++ b/mayan/apps/document_states/views/workflow_views.py @@ -739,8 +739,10 @@ class SetupWorkflowTransitionTriggerEventListView(ExternalObjectMixin, FormView) class SetupWorkflowTransitionFieldCreateView(ExternalObjectMixin, SingleObjectCreateView): external_object_class = WorkflowTransition external_object_permission = permission_workflow_edit - fields = ('name', 'label', 'field_type', 'help_text', 'required') - + fields = ( + 'name', 'label', 'field_type', 'help_text', 'required', 'widget', + 'widget_kwargs' + ) def get_extra_context(self): return { 'navigation_object_list': ('transition', 'workflow'), @@ -789,7 +791,10 @@ class SetupWorkflowTransitionFieldDeleteView(SingleObjectDeleteView): class SetupWorkflowTransitionFieldEditView(SingleObjectEditView): - fields = ('name', 'label', 'field_type', 'help_text', 'required',) + fields = ( + 'name', 'label', 'field_type', 'help_text', 'required', 'widget', + 'widget_kwargs' + ) model = WorkflowTransitionField object_permission = permission_workflow_edit