From f9e539f25c1ce41fec16fdd3ad29ce8b36b19f58 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 01:12:31 -0400 Subject: [PATCH 01/21] 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 3a3f2783d9..3ec88a5322 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -380,10 +380,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 a8fcc862f1fcec5b175bdec2ee9512d3d56721ca Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 1 Jul 2019 15:45:15 -0400 Subject: [PATCH 02/21] Don't register the create event to the instance Signed-off-by: Roberto Rosario --- mayan/apps/linking/apps.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mayan/apps/linking/apps.py b/mayan/apps/linking/apps.py index 57d4ea76ad..426a4eccaa 100644 --- a/mayan/apps/linking/apps.py +++ b/mayan/apps/linking/apps.py @@ -57,9 +57,7 @@ class LinkingApp(MayanAppConfig): SmartLinkCondition = self.get_model(model_name='SmartLinkCondition') ModelEventType.register( - event_types=( - event_smart_link_created, event_smart_link_edited - ), model=SmartLink + event_types=(event_smart_link_edited,), model=SmartLink ) ModelPermission.register( From 68966e4ad0b87a888b0a1ce9c5a6cce5fec1c61c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 2 Jul 2019 14:34:54 -0400 Subject: [PATCH 03/21] Update troubleshooting topic Signed-off-by: Roberto Rosario --- docs/topics/troubleshooting.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/topics/troubleshooting.rst b/docs/topics/troubleshooting.rst index d3ea0880e3..c8498acddc 100644 --- a/docs/topics/troubleshooting.rst +++ b/docs/topics/troubleshooting.rst @@ -168,3 +168,16 @@ files to a temporary directory on the same partition as the watchfolder first. Then move the files to the watchfolder. The move will be executed as an atomic operation and will prevent the files to be uploaded in the middle of the copying process. + +************ +Dependencies +************ + +Error: ``unable to execute 'x86_64-linux-gnu-gcc': No such file or directory`` +============================================================================== + +This happens when using the ``MAYAN_APT_INSTALLS`` feature. It means that the +``GCC`` package is required to compile the packages specified with +``MAYAN_APT_INSTALLS``. + +Solution: Include ``gcc`` in the list of packages specified with ``MAYAN_APT_INSTALLS``. From 1fe45e26133e74f6dcf508e0d5e9acfb9e330a5b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 2 Jul 2019 14:47:12 -0400 Subject: [PATCH 04/21] Add data migration to the file metadata app Synchronizes the document type settings model of existing document types. Signed-off-by: Roberto Rosario --- .../migrations/0002_documenttypesettings.py | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 mayan/apps/file_metadata/migrations/0002_documenttypesettings.py diff --git a/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py b/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py new file mode 100644 index 0000000000..fd0918c330 --- /dev/null +++ b/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py @@ -0,0 +1,53 @@ +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +def operation_create_file_metadata_setting_for_existing_document_types(apps, schema_editor): + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + DocumentTypeSettings = apps.get_model( + app_label='file_metadata', model_name='DocumentTypeSettings' + ) + + for document_type in DocumentType.objects.using(schema_editor.connection.alias).all(): + try: + DocumentTypeSettings.objects.using( + schema_editor.connection.alias + ).get_or_create(document_type=document_type) + except DocumentTypeSettings.DoesNotExist: + pass + + +def operation_delete_file_metadata_setting_for_existing_document_types(apps, schema_editor): + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + DocumentTypeSettings = apps.get_model( + app_label='file_metadata', model_name='DocumentTypeSettings' + ) + + for document_type in DocumentType.objects.using(schema_editor.connection.alias).all(): + try: + DocumentTypeSettings.objects.using( + schema_editor.connection.alias + ).get(document_type=document_type).delete() + except DocumentTypeSettings.DoesNotExist: + pass + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0047_auto_20180917_0737'), + ('file_metadata', '0001_initial'), + ] + + operations = [ + migrations.RunPython( + code=operation_create_file_metadata_setting_for_existing_document_types, + reverse_code=operation_delete_file_metadata_setting_for_existing_document_types, + ) + ] From 5aa38868671478166df4c7c316768bded34c6f7f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 2 Jul 2019 21:24:12 -0400 Subject: [PATCH 05/21] Fix cabinet upload wizard step Signed-off-by: Roberto Rosario --- mayan/apps/cabinets/tests/test_wizard_steps.py | 13 +++++++++++-- mayan/apps/cabinets/wizard_steps.py | 7 ++++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/mayan/apps/cabinets/tests/test_wizard_steps.py b/mayan/apps/cabinets/tests/test_wizard_steps.py index 5fa5e471c1..d9feb3502d 100644 --- a/mayan/apps/cabinets/tests/test_wizard_steps.py +++ b/mayan/apps/cabinets/tests/test_wizard_steps.py @@ -1,5 +1,7 @@ from __future__ import unicode_literals +from django.utils.encoding import force_text + from mayan.apps.documents.models import Document from mayan.apps.documents.permissions import permission_document_create from mayan.apps.documents.tests import ( @@ -11,6 +13,7 @@ from mayan.apps.sources.tests.literals import ( ) from mayan.apps.sources.wizards import WizardStep +from ..models import Cabinet from ..wizard_steps import WizardStepCabinets from .mixins import CabinetTestMixin @@ -38,11 +41,14 @@ class CabinetDocumentUploadTestCase(CabinetTestMixin, GenericDocumentViewTestCas }, data={ 'document_type_id': self.test_document_type.pk, 'source-file': file_object, - 'cabinets': self.test_cabinet.pk + 'cabinets': ','.join( + map(force_text, Cabinet.objects.values_list('pk', flat=True)) + ) } ) def test_upload_interactive_view_with_access(self): + self._create_test_cabinet() self._create_test_cabinet() self.grant_access( obj=self.test_document_type, permission=permission_document_create @@ -51,7 +57,10 @@ class CabinetDocumentUploadTestCase(CabinetTestMixin, GenericDocumentViewTestCas self.assertEqual(response.status_code, 302) self.assertTrue( - self.test_cabinet in Document.objects.first().cabinets.all() + self.test_cabinets[0] in Document.objects.first().cabinets.all() + ) + self.assertTrue( + self.test_cabinets[1] in Document.objects.first().cabinets.all() ) def _request_wizard_view(self): diff --git a/mayan/apps/cabinets/wizard_steps.py b/mayan/apps/cabinets/wizard_steps.py index 230ad96564..eaa1f78965 100644 --- a/mayan/apps/cabinets/wizard_steps.py +++ b/mayan/apps/cabinets/wizard_steps.py @@ -51,7 +51,12 @@ class WizardStepCabinets(WizardStep): furl_instance = furl(querystring) Cabinet = apps.get_model(app_label='cabinets', model_name='Cabinet') - for cabinet in Cabinet.objects.filter(pk__in=furl_instance.args.getlist('cabinets')): + cabinet_id_list = furl_instance.args.get('cabinets', '') + + if cabinet_id_list: + cabinet_id_list = cabinet_id_list.split(',') + + for cabinet in Cabinet.objects.filter(pk__in=cabinet_id_list): cabinet.documents.add(document) From 1377ff0504ba8d3a7a51d2fe26af568afcff0d5a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 3 Jul 2019 11:10:35 -0400 Subject: [PATCH 06/21] Add class method to detect setting changes Signed-off-by: Roberto Rosario --- mayan/apps/smart_settings/classes.py | 17 +++++++++++++++++ .../templatetags/smart_settings_tags.py | 6 ++++++ 2 files changed, 23 insertions(+) diff --git a/mayan/apps/smart_settings/classes.py b/mayan/apps/smart_settings/classes.py index d5cc477095..c60d43187f 100644 --- a/mayan/apps/smart_settings/classes.py +++ b/mayan/apps/smart_settings/classes.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals import errno +import hashlib from importlib import import_module import logging import os @@ -78,6 +79,7 @@ class Namespace(object): @python_2_unicode_compatible class Setting(object): _registry = {} + _cache_hash = None @staticmethod def deserialize_value(value): @@ -108,6 +110,15 @@ class Setting(object): return result + @classmethod + def check_changed(cls): + if not cls._cache_hash: + cls._cache_hash = cls.get_hash() + + print("!!!@@", cls._cache_hash, cls.get_hash()) + + return cls._cache_hash != cls.get_hash() + @classmethod def dump_data(cls, filter_term=None, namespace=None): dictionary = {} @@ -129,6 +140,12 @@ class Setting(object): def get_all(cls): return sorted(cls._registry.values(), key=lambda x: x.global_name) + @classmethod + def get_hash(cls): + return force_text( + hashlib.sha256(cls.dump_data()).hexdigest() + ) + @classmethod def save_configuration(cls, path=settings.CONFIGURATION_FILEPATH): try: diff --git a/mayan/apps/smart_settings/templatetags/smart_settings_tags.py b/mayan/apps/smart_settings/templatetags/smart_settings_tags.py index 38f7743c0a..9268bd69ba 100644 --- a/mayan/apps/smart_settings/templatetags/smart_settings_tags.py +++ b/mayan/apps/smart_settings/templatetags/smart_settings_tags.py @@ -10,3 +10,9 @@ register = Library() @register.simple_tag def smart_setting(global_name): return Setting.get(global_name=global_name).value + + +@register.simple_tag +def smart_settings_check_changes(): + return Setting.check_changed() + From 2af03eeca88f5de1dd793c7d4671f5565899be78 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 00:28:01 -0400 Subject: [PATCH 07/21] Fix cabinet and tags upload wizard steps Steps were missing some entries. Closes GitLab issue #632. Thanks to Matthias Urhahn (@d4rken) for the report. Signed-off-by: Roberto Rosario --- HISTORY.rst | 11 +++ docs/releases/3.2.5.rst | 99 +++++++++++++++++++ docs/releases/index.rst | 1 + .../apps/cabinets/tests/test_wizard_steps.py | 6 +- mayan/apps/cabinets/wizard_steps.py | 10 +- mayan/apps/common/http.py | 36 +++++++ mayan/apps/common/utils.py | 51 ---------- mayan/apps/metadata/api.py | 17 ++-- .../apps/metadata/tests/test_wizard_steps.py | 15 +-- mayan/apps/sources/views.py | 9 +- mayan/apps/tags/tests/test_wizard_steps.py | 4 +- mayan/apps/tags/wizard_steps.py | 9 +- 12 files changed, 174 insertions(+), 94 deletions(-) create mode 100644 docs/releases/3.2.5.rst create mode 100644 mayan/apps/common/http.py diff --git a/HISTORY.rst b/HISTORY.rst index b62da7e331..1b77e729c7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,14 @@ +3.2.5 (2019-07-XX) +================== +* Don't error out if the EXTRA_APPS or the DISABLED_APPS settings + are set to blank. +* Update troubleshooting documentation topic. +* Add data migration to the file metadata app. Synchronizes the + document type settings model of existing document types. +* Fix cabinet and tags upload wizard steps missing some entries. + GitLab issue #632. Thanks to Matthias Urhahn (@d4rken) for the + report. + 3.2.4 (2019-06-29) ================== * Support configurable GUnicorn timeouts. Defaults to diff --git a/docs/releases/3.2.5.rst b/docs/releases/3.2.5.rst new file mode 100644 index 0000000000..0fd13140b5 --- /dev/null +++ b/docs/releases/3.2.5.rst @@ -0,0 +1,99 @@ +Version 3.2.4 +============= + +Released: July XX, 2019 + + +Changes +------- + +Removals +-------- + +- None + + +Upgrading from a previous version +--------------------------------- + +If installed via Python's PIP +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Remove deprecated requirements:: + + $ curl https://gitlab.com/mayan-edms/mayan-edms/raw/master/removals.txt | pip uninstall -r /dev/stdin + +Type in the console:: + + $ pip install mayan-edms==3.2.55555 + +the requirements will also be updated automatically. + + +Using Git +^^^^^^^^^ + +If you installed Mayan EDMS by cloning the Git repository issue the commands:: + + $ git reset --hard HEAD + $ git pull + +otherwise download the compressed archived and uncompress it overriding the +existing installation. + +Remove deprecated requirements:: + + $ pip uninstall -y -r removals.txt + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + + +Common steps +^^^^^^^^^^^^ + +Perform these steps after updating the code from either step above. + +Make a backup of your supervisord file:: + + sudo cp /etc/supervisor/conf.d/mayan.conf /etc/supervisor/conf.d/mayan.conf.bck + +Update the supervisord configuration file. Replace the environment +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:: + + 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 + +Edit the supervisord configuration file and update any setting the template +generator missed:: + + sudo vi /etc/supervisor/conf.d/mayan.conf + +Migrate existing database schema with:: + + $ mayan-edms.py performupgrade + +Add new static media:: + + $ mayan-edms.py preparestatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +----------------------------- + +- None + + +Bugs fixed or issues closed +--------------------------- + +- :gitlab-issue:`632` Tags get lost when uploading through the webui + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index f1a003eb4f..80bdb19c1e 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -20,6 +20,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 3.2.5 3.2.4 3.2.3 3.2.2 diff --git a/mayan/apps/cabinets/tests/test_wizard_steps.py b/mayan/apps/cabinets/tests/test_wizard_steps.py index d9feb3502d..bcdc7f30ce 100644 --- a/mayan/apps/cabinets/tests/test_wizard_steps.py +++ b/mayan/apps/cabinets/tests/test_wizard_steps.py @@ -1,7 +1,5 @@ from __future__ import unicode_literals -from django.utils.encoding import force_text - from mayan.apps.documents.models import Document from mayan.apps.documents.permissions import permission_document_create from mayan.apps.documents.tests import ( @@ -41,9 +39,7 @@ class CabinetDocumentUploadTestCase(CabinetTestMixin, GenericDocumentViewTestCas }, data={ 'document_type_id': self.test_document_type.pk, 'source-file': file_object, - 'cabinets': ','.join( - map(force_text, Cabinet.objects.values_list('pk', flat=True)) - ) + 'cabinets': Cabinet.objects.values_list('pk', flat=True) } ) diff --git a/mayan/apps/cabinets/wizard_steps.py b/mayan/apps/cabinets/wizard_steps.py index eaa1f78965..502db7aeb2 100644 --- a/mayan/apps/cabinets/wizard_steps.py +++ b/mayan/apps/cabinets/wizard_steps.py @@ -1,11 +1,10 @@ from __future__ import unicode_literals -from furl import furl - from django.apps import apps from django.utils.encoding import force_text from django.utils.translation import ugettext_lazy as _ +from mayan.apps.common.http import URL from mayan.apps.sources.wizards import WizardStep from .forms import CabinetListForm @@ -48,13 +47,8 @@ class WizardStepCabinets(WizardStep): @classmethod def step_post_upload_process(cls, document, querystring=None): - furl_instance = furl(querystring) Cabinet = apps.get_model(app_label='cabinets', model_name='Cabinet') - - cabinet_id_list = furl_instance.args.get('cabinets', '') - - if cabinet_id_list: - cabinet_id_list = cabinet_id_list.split(',') + cabinet_id_list = URL(query_string=querystring).args.getlist('cabinets') for cabinet in Cabinet.objects.filter(pk__in=cabinet_id_list): cabinet.documents.add(document) diff --git a/mayan/apps/common/http.py b/mayan/apps/common/http.py new file mode 100644 index 0000000000..f353dfb99a --- /dev/null +++ b/mayan/apps/common/http.py @@ -0,0 +1,36 @@ +from __future__ import unicode_literals + +from django.http import QueryDict +from django.utils.encoding import force_bytes + + +class URL(object): + def __init__(self, path=None, query_string=None): + self._path = path + self._query_string = query_string + kwargs = {'mutable': True} + if query_string: + kwargs['query_string'] = query_string.encode('utf-8') + + self._args = QueryDict(**kwargs) + + @property + def args(self): + return self._args + + def to_string(self): + if self._args.keys(): + query = force_bytes( + '?{}'.format(self._args.urlencode()) + ) + else: + query = '' + + if self._path: + path = self._path + else: + path = '' + + result = force_bytes('{}{}'.format(path, query)) + + return result diff --git a/mayan/apps/common/utils.py b/mayan/apps/common/utils.py index 58683c662f..2d76f17d43 100644 --- a/mayan/apps/common/utils.py +++ b/mayan/apps/common/utils.py @@ -8,10 +8,6 @@ from django.core.exceptions import FieldDoesNotExist from django.db.models.constants import LOOKUP_SEP from django.urls import resolve as django_resolve from django.urls.base import get_script_prefix -from django.utils.datastructures import MultiValueDict -from django.utils.http import ( - urlencode as django_urlencode, urlquote as django_urlquote -) from django.utils.six.moves import reduce as reduce_function from mayan.apps.common.compat import dict_type, dictionary_type @@ -150,50 +146,3 @@ def return_related(instance, related_field): using double underscore. """ return reduce_function(getattr, related_field.split('__'), instance) - - -def urlquote(link=None, get=None): - """ - This method does both: urlquote() and urlencode() - - urlqoute(): Quote special characters in 'link' - - urlencode(): Map dictionary to query string key=value&... - - HTML escaping is not done. - - Example: - - urlquote('/wiki/Python_(programming_language)') - --> '/wiki/Python_%28programming_language%29' - urlquote('/mypath/', {'key': 'value'}) - --> '/mypath/?key=value' - urlquote('/mypath/', {'key': ['value1', 'value2']}) - --> '/mypath/?key=value1&key=value2' - urlquote({'key': ['value1', 'value2']}) - --> 'key=value1&key=value2' - """ - if get is None: - get = [] - - assert link or get - if isinstance(link, dict): - # urlqoute({'key': 'value', 'key2': 'value2'}) --> - # key=value&key2=value2 - assert not get, get - get = link - link = '' - assert isinstance(get, dict), 'wrong type "%s", dict required' % type(get) - # assert not (link.startswith('http://') or link.startswith('https://')), - # 'This method should only quote the url path. - # It should not start with http(s):// (%s)' % ( - # link) - if get: - # http://code.djangoproject.com/ticket/9089 - if isinstance(get, MultiValueDict): - get = get.lists() - if link: - link = '%s?' % django_urlquote(link) - return '%s%s' % (link, django_urlencode(get, doseq=True)) - else: - return django_urlquote(link) diff --git a/mayan/apps/metadata/api.py b/mayan/apps/metadata/api.py index c70c6acad8..b2fb34d385 100644 --- a/mayan/apps/metadata/api.py +++ b/mayan/apps/metadata/api.py @@ -1,9 +1,8 @@ from __future__ import unicode_literals -from furl import furl - from django.shortcuts import get_object_or_404 -from django.utils.encoding import force_bytes + +from mayan.apps.common.http import URL from .models import DocumentMetadata, MetadataType @@ -19,7 +18,7 @@ def decode_metadata_from_querystring(querystring=None): metadata_list = [] if querystring: # Match out of order metadata_type ids with metadata values from request - for key, value in furl(force_bytes(querystring)).args.items(): + for key, value in URL(query_string=querystring).args.items(): if 'metadata' in key: index, element = key[8:].split('_') metadata_dict[element][index] = value @@ -27,10 +26,12 @@ def decode_metadata_from_querystring(querystring=None): # Convert the nested dictionary into a list of id+values dictionaries for order, identifier in metadata_dict['id'].items(): if order in metadata_dict['value'].keys(): - metadata_list.append({ - 'id': identifier, - 'value': metadata_dict['value'][order] - }) + metadata_list.append( + { + 'id': identifier, + 'value': metadata_dict['value'][order] + } + ) return metadata_list diff --git a/mayan/apps/metadata/tests/test_wizard_steps.py b/mayan/apps/metadata/tests/test_wizard_steps.py index 396c2cf514..e6b7644c3e 100644 --- a/mayan/apps/metadata/tests/test_wizard_steps.py +++ b/mayan/apps/metadata/tests/test_wizard_steps.py @@ -1,9 +1,8 @@ from __future__ import unicode_literals -from furl import furl - from django.urls import reverse +from mayan.apps.common.http import URL from mayan.apps.documents.models import Document from mayan.apps.documents.permissions import permission_document_create from mayan.apps.documents.tests import ( @@ -35,7 +34,9 @@ class DocumentUploadMetadataTestCase(MetadataTypeTestMixin, GenericDocumentViewT ) def test_upload_interactive_with_unicode_metadata(self): - url = furl(reverse(viewname='sources:upload_interactive')) + url = URL( + path=reverse(viewname='sources:upload_interactive') + ) url.args['metadata0_id'] = self.test_metadata_type.pk url.args['metadata0_value'] = TEST_METADATA_VALUE_UNICODE @@ -46,7 +47,7 @@ class DocumentUploadMetadataTestCase(MetadataTypeTestMixin, GenericDocumentViewT # Upload the test document with open(TEST_SMALL_DOCUMENT_PATH, mode='rb') as file_descriptor: response = self.post( - path=url, data={ + path=url.to_string(), data={ 'document-language': 'eng', 'source-file': file_descriptor, 'document_type_id': self.test_document_type.pk, } @@ -60,7 +61,9 @@ class DocumentUploadMetadataTestCase(MetadataTypeTestMixin, GenericDocumentViewT ) def test_upload_interactive_with_ampersand_metadata(self): - url = furl(reverse(viewname='sources:upload_interactive')) + url = URL( + path=reverse(viewname='sources:upload_interactive') + ) url.args['metadata0_id'] = self.test_metadata_type.pk url.args['metadata0_value'] = TEST_METADATA_VALUE_WITH_AMPERSAND @@ -70,7 +73,7 @@ class DocumentUploadMetadataTestCase(MetadataTypeTestMixin, GenericDocumentViewT # Upload the test document with open(TEST_SMALL_DOCUMENT_PATH, mode='rb') as file_descriptor: response = self.post( - path=url, data={ + path=url.to_string(), data={ 'document-language': 'eng', 'source-file': file_descriptor, 'document_type_id': self.test_document_type.pk, } diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 0e5395bfd0..167877354f 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -2,8 +2,6 @@ from __future__ import absolute_import, unicode_literals import logging -from furl import furl - from django.contrib import messages from django.http import HttpResponseRedirect, JsonResponse from django.shortcuts import get_object_or_404 @@ -257,9 +255,8 @@ class UploadInteractiveView(UploadBaseView): except Exception as exception: messages.error(message=exception, request=self.request) - querystring = furl() - querystring.args.update(self.request.GET) - querystring.args.update(self.request.POST) + querystring = self.request.GET.copy() + querystring.update(self.request.POST) try: task_source_handle_upload.apply_async( @@ -271,7 +268,7 @@ class UploadInteractiveView(UploadBaseView): filename=force_text(shared_uploaded_file) ), language=forms['document_form'].cleaned_data.get('language'), - querystring=querystring.tostr(), + querystring=querystring.urlencode(), shared_uploaded_file_id=shared_uploaded_file.pk, source_id=self.source.pk, user_id=user_id, diff --git a/mayan/apps/tags/tests/test_wizard_steps.py b/mayan/apps/tags/tests/test_wizard_steps.py index d844bc78d9..a241b9725d 100644 --- a/mayan/apps/tags/tests/test_wizard_steps.py +++ b/mayan/apps/tags/tests/test_wizard_steps.py @@ -33,9 +33,7 @@ class TaggedDocumentUploadTestCase(TagTestMixin, GenericDocumentViewTestCase): }, data={ 'document_type_id': self.test_document_type.pk, 'source-file': file_object, - 'tags': ','.join( - map(str, Tag.objects.values_list('pk', flat=True)) - ) + 'tags': Tag.objects.values_list('pk', flat=True) } ) diff --git a/mayan/apps/tags/wizard_steps.py b/mayan/apps/tags/wizard_steps.py index 8026a2a60b..440638c75c 100644 --- a/mayan/apps/tags/wizard_steps.py +++ b/mayan/apps/tags/wizard_steps.py @@ -1,11 +1,10 @@ from __future__ import unicode_literals -from furl import furl - from django.apps import apps from django.utils.encoding import force_text from django.utils.translation import ugettext_lazy as _ +from mayan.apps.common.http import URL from mayan.apps.sources.wizards import WizardStep from .forms import TagMultipleSelectionForm @@ -46,13 +45,9 @@ class WizardStepTags(WizardStep): @classmethod def step_post_upload_process(cls, document, querystring=None): - furl_instance = furl(querystring) Tag = apps.get_model(app_label='tags', model_name='Tag') - tag_id_list = furl_instance.args.get('tags', '') - - if tag_id_list: - tag_id_list = tag_id_list.split(',') + tag_id_list = URL(query_string=querystring).args.getlist('tags') for tag in Tag.objects.filter(pk__in=tag_id_list): tag.documents.add(document) From 1ae5b8c4202934f37a7931c41b14bc449b9a023c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 00:47:36 -0400 Subject: [PATCH 08/21] Update release notes Signed-off-by: Roberto Rosario --- docs/releases/3.2.5.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/releases/3.2.5.rst b/docs/releases/3.2.5.rst index 0fd13140b5..799aa35ad2 100644 --- a/docs/releases/3.2.5.rst +++ b/docs/releases/3.2.5.rst @@ -1,4 +1,4 @@ -Version 3.2.4 +Version 3.2.5 ============= Released: July XX, 2019 @@ -94,6 +94,7 @@ Backward incompatible changes Bugs fixed or issues closed --------------------------- +- :gitlab-issue:`629` Cannot Upgrade to 3.2.X Docker Image - :gitlab-issue:`632` Tags get lost when uploading through the webui .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ From 79020743901b6b879bc02626ba4f8a390737c2e1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 00:58:50 -0400 Subject: [PATCH 09/21] Add alert when settings are changed Signed-off-by: Roberto Rosario --- mayan/apps/appearance/templates/appearance/base.html | 8 ++++++++ mayan/apps/smart_settings/classes.py | 2 -- .../smart_settings/templatetags/smart_settings_tags.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 3e04061e2c..09228b5fb5 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -34,6 +34,14 @@ {% endif %} {% block messages %} {% endblock %} + + {% smart_settings_check_changed as settings_changed %} + {% if settings_changed %} +
+ +

{% trans 'Warning' %} {% trans 'Settings updated, restart your installation for changes to take proper effect.' %}

+
+ {% endif %} diff --git a/mayan/apps/smart_settings/classes.py b/mayan/apps/smart_settings/classes.py index c60d43187f..ccedbd5083 100644 --- a/mayan/apps/smart_settings/classes.py +++ b/mayan/apps/smart_settings/classes.py @@ -115,8 +115,6 @@ class Setting(object): if not cls._cache_hash: cls._cache_hash = cls.get_hash() - print("!!!@@", cls._cache_hash, cls.get_hash()) - return cls._cache_hash != cls.get_hash() @classmethod diff --git a/mayan/apps/smart_settings/templatetags/smart_settings_tags.py b/mayan/apps/smart_settings/templatetags/smart_settings_tags.py index 9268bd69ba..6ef94c12f3 100644 --- a/mayan/apps/smart_settings/templatetags/smart_settings_tags.py +++ b/mayan/apps/smart_settings/templatetags/smart_settings_tags.py @@ -13,6 +13,6 @@ def smart_setting(global_name): @register.simple_tag -def smart_settings_check_changes(): +def smart_settings_check_changed(): return Setting.check_changed() From fba6d3b1016271c6ff94f3a2c7e449a923d94f17 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 01:02:53 -0400 Subject: [PATCH 10/21] Update release notes Signed-off-by: Roberto Rosario --- HISTORY.rst | 3 +++ docs/releases/3.2.5.rst | 15 ++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1b77e729c7..272d06b1e3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,6 +8,9 @@ * Fix cabinet and tags upload wizard steps missing some entries. GitLab issue #632. Thanks to Matthias Urhahn (@d4rken) for the report. +* Add alert when settings are changed and util the installation + is restarted. GitLab issue #605. Thanks to + Vikas Kedia (@vikaskedia) to the report. 3.2.4 (2019-06-29) ================== diff --git a/docs/releases/3.2.5.rst b/docs/releases/3.2.5.rst index 799aa35ad2..4bfc90146b 100644 --- a/docs/releases/3.2.5.rst +++ b/docs/releases/3.2.5.rst @@ -7,6 +7,18 @@ Released: July XX, 2019 Changes ------- +- Don't error out if the EXTRA_APPS or the DISABLED_APPS settings + are set to blank. +- Update troubleshooting documentation topic. +- Add data migration to the file metadata app. Synchronizes the + document type settings model of existing document types. +- Fix cabinet and tags upload wizard steps missing some entries. + GitLab issue #632. Thanks to Matthias Urhahn (@d4rken) for the + report. +- Add alert when settings are changed and util the installation + is restarted. GitLab issue #605. Thanks to + Vikas Kedia (@vikaskedia) to the report. + Removals -------- @@ -25,7 +37,7 @@ Remove deprecated requirements:: Type in the console:: - $ pip install mayan-edms==3.2.55555 + $ pip install mayan-edms==3.2.5 the requirements will also be updated automatically. @@ -94,6 +106,7 @@ Backward incompatible changes Bugs fixed or issues closed --------------------------- +- :gitlab-issue:`605` Project title fluctuates between default value and new value [Video] - :gitlab-issue:`629` Cannot Upgrade to 3.2.X Docker Image - :gitlab-issue:`632` Tags get lost when uploading through the webui From 4de13f23b7121cf7f1e65da1340c5d5e3ee8933f Mon Sep 17 00:00:00 2001 From: David Miguel Date: Fri, 5 Jul 2019 05:18:26 +0000 Subject: [PATCH 11/21] Pt locale msg --- .../apps/acls/locale/pt/LC_MESSAGES/django.mo | Bin 721 -> 4795 bytes .../apps/acls/locale/pt/LC_MESSAGES/django.po | 68 ++- .../locale/pt/LC_MESSAGES/django.mo | Bin 1223 -> 4370 bytes .../locale/pt/LC_MESSAGES/django.po | 71 ++- .../locale/pt/LC_MESSAGES/django.mo | Bin 1335 -> 3422 bytes .../locale/pt/LC_MESSAGES/django.po | 45 +- .../autoadmin/locale/pt/LC_MESSAGES/django.mo | Bin 854 -> 2293 bytes .../autoadmin/locale/pt/LC_MESSAGES/django.po | 26 +- .../cabinets/locale/pt/LC_MESSAGES/django.mo | Bin 713 -> 5742 bytes .../cabinets/locale/pt/LC_MESSAGES/django.po | 95 ++-- .../checkouts/locale/pt/LC_MESSAGES/django.mo | Bin 505 -> 4254 bytes .../checkouts/locale/pt/LC_MESSAGES/django.po | 94 +-- .../common/locale/pt/LC_MESSAGES/django.mo | Bin 1264 -> 27572 bytes .../common/locale/pt/LC_MESSAGES/django.po | 286 +++++++--- .../converter/locale/pt/LC_MESSAGES/django.mo | Bin 627 -> 4180 bytes .../converter/locale/pt/LC_MESSAGES/django.po | 76 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 382 -> 510 bytes .../locale/pt/LC_MESSAGES/django.po | 8 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 711 -> 6823 bytes .../locale/pt/LC_MESSAGES/django.po | 126 +++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 2271 -> 5255 bytes .../locale/pt/LC_MESSAGES/django.po | 75 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 961 -> 1941 bytes .../locale/pt/LC_MESSAGES/django.po | 26 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 1936 -> 8036 bytes .../locale/pt/LC_MESSAGES/django.po | 127 +++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 766 -> 4505 bytes .../locale/pt/LC_MESSAGES/django.po | 86 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 1046 -> 6387 bytes .../locale/pt/LC_MESSAGES/django.po | 119 ++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 810 -> 17992 bytes .../locale/pt/LC_MESSAGES/django.po | 322 ++++++----- .../documents/locale/pt/LC_MESSAGES/django.mo | Bin 4600 -> 32385 bytes .../documents/locale/pt/LC_MESSAGES/django.po | 535 +++++++++--------- .../locale/pt/LC_MESSAGES/django.mo | Bin 555 -> 1517 bytes .../locale/pt/LC_MESSAGES/django.po | 24 +- .../events/locale/pt/LC_MESSAGES/django.mo | Bin 895 -> 3178 bytes .../events/locale/pt/LC_MESSAGES/django.po | 68 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 574 -> 5777 bytes .../locale/pt/LC_MESSAGES/django.po | 92 +-- .../linking/locale/pt/LC_MESSAGES/django.mo | Bin 2721 -> 6674 bytes .../linking/locale/pt/LC_MESSAGES/django.po | 76 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 451 -> 1014 bytes .../locale/pt/LC_MESSAGES/django.po | 16 +- .../mailer/locale/pt/LC_MESSAGES/django.mo | Bin 1432 -> 9181 bytes .../mailer/locale/pt/LC_MESSAGES/django.po | 148 ++--- .../locale/pt/LC_MESSAGES/django.mo | Bin 980 -> 1806 bytes .../locale/pt/LC_MESSAGES/django.po | 24 +- .../metadata/locale/pt/LC_MESSAGES/django.mo | Bin 2295 -> 11724 bytes .../metadata/locale/pt/LC_MESSAGES/django.po | 165 +++--- .../apps/motd/locale/pt/LC_MESSAGES/django.mo | Bin 548 -> 2186 bytes .../apps/motd/locale/pt/LC_MESSAGES/django.po | 42 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 417 -> 547 bytes .../locale/pt/LC_MESSAGES/django.po | 6 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.mo | Bin 783 -> 3975 bytes .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 74 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 995 -> 3503 bytes .../locale/pt/LC_MESSAGES/django.po | 52 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 621 -> 1912 bytes .../locale/pt/LC_MESSAGES/django.po | 34 +- .../storage/locale/pt/LC_MESSAGES/django.mo | Bin 463 -> 672 bytes .../storage/locale/pt/LC_MESSAGES/django.po | 4 +- .../apps/tags/locale/pt/LC_MESSAGES/django.mo | Bin 1321 -> 6055 bytes .../apps/tags/locale/pt/LC_MESSAGES/django.po | 110 ++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 524 -> 1546 bytes .../locale/pt/LC_MESSAGES/django.po | 38 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 2352 -> 5434 bytes .../locale/pt/LC_MESSAGES/django.po | 74 +-- 68 files changed, 1751 insertions(+), 1481 deletions(-) diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.mo index 982de1ae2dfa0678427ca40bdcb77a6ff705b263..350821fd5543ef27bbc3ba880a52714610068924 100644 GIT binary patch literal 4795 zcmbuBON<;x8OJ*i^H{(naR>wmlnusShncZW9Go#eEZ%iku$|R<9pwNLwcRx{W%qPV zy1Hj~;gSOfE=ULoa^OM~B=8{z9=RnFVs1!qLx>9}AK-)#hlrf`eN{b=jW-Svt(pG! zqxyUNzejz4d+7cjCmg5vf0}=OUy@t^UwaQHj$ghvNj?PL2A9BB!5sV@ct6rF{1nP`?D?C2HLwWufCz0C%#lNqEkAoVN?|;zT|D<{Ud+=*K|0}o#9(y3l8-NnG8WexN z2VMt%2yTFPz)kSngK^#WL5bUopy>Gx_$2sRgZ~DFuTu{t$qDcY@H5~y!E@kuL3#fx z5Vryc!0Zqog@}8s9Y=@C!6b!gW|_2{^GxIFYy-6q|_v~lGoz%7x+uAK}9$u-pR_PD=ICG zu1prLO=hQ;zS2eJRnL`bB~6X@>XIv}(&g%k^_AkKvR-L5Dotv=QA1M=T&7gzRN5@8 zy(yKBAM@C4-!y6El`T{?Fv{=w$_(40*C#6*>*~hl6*Y3UsBF;}F~~OM(0XrOAs>|{ z*OgrJP6RZPr`mEci&r}Xn+}w%f_YV?(}Bs_YHNVCq5;TkuV+eAuzaASF{v(GVN;!} z9arA!)F)K*Ue&l&FqNmL@Z&wj&+e&AwTszr} zE;PY!?%tXco1}FjC+IyXDwZL6ZZ63v9`i1SjJNM@HD(~x$1}lpbmPY5y92#Naq^mf z;X+mi<-ygcKG`C8Q$pTd5Z;zO*{-c#y}q<*My{+{ zSAE}Rt*_R7-`a9rwY2d}3kt0)Z>`e6y6WudGf%ZnKiN8SPM!X8_lfh5pXOM)qJ7oc zq8L3Jf;7ubw{1$|w&}bstz$vauXW$Fwu~Nj)dtGyer@381lu#a z?bHoBW&F1648_it$%ej@H*z|os%F7jJA`Zk?a66OC*=t+gVh^oo90o!_?A%-*gVRZAOrUFy7b*_A`zRmCXW`io~T zsCaqtWTB2;RA-hiEG5##($eb8g-hAKr`O*03yM3{2X5adWfRvbGt*t&$@PjfF}M6h zHMy;v?C2(QWNPlz^EF!|{59K`=5Aecbt#kdDNJp4!isbpU4KB zVG+CP^EGKWg21prXjQXwHAOLb*(vGB?Dvyj$j#(uVJi#vHWnDMSIb=DM3V8<8kgr&}qCGBu-9?Z_vvr)pR zCZEQW+gK{qQ`9QV5pjgjffQ=s(u~*`#kbrmEj1OViv1y;GqEr7R>q4sT}*S4oC=X^ zCWmq8^vN|hhC~@Fgv(hLE>u!*K7M41!TyR2kJpr46lPx<61r>v| zNYUbT6cDL2Wtc(wghs@676Tge%)AOS2-}iapi?I3c5+FIXkJ6o)(QxorMo1f^o6Oa zcW7db!2MOZkYKdH(1YKp%}A3T+ajgZ<9H(8MZUtcGQZuQXqTHpO5%mIl!a-9Y*{Sh y;Mn58(*D0cTM&@eH}8=-*FxJMov6uK>!l$yVUJlb3tSV%K;1orGNgz+s`J115U~9K delta 360 zcmXwzKWhR(5XDF1Ut$r0rNuSk=MXiOg`}`bbDV=LthaD;5v%wqQpHlR7D*MXEYwEu z3#75LmehH(>cDT`usiR~{?w28>F;yylTam418?9F%z)Mo0Mgx{m4P4)J3x(I$1I{AQ#cI|M`DIWoj1o0l zU7=cSC9FyMQJ k(>~NxM;&WMCJqxH6($-6%Pnp5%|b8l@n+$>KHuN}0c5*IhX4Qo diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 56a7e901ba..8a7c28fc30 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 "" @@ -27,19 +27,19 @@ msgstr "Listas de controlo de acesso" #: events.py:12 msgid "ACL created" -msgstr "" +msgstr "ACL criado" #: events.py:15 msgid "ACL edited" -msgstr "" +msgstr "ACL editado" #: forms.py:15 models.py:49 msgid "Role" -msgstr "" +msgstr "Função" #: links.py:34 msgid "New ACL" -msgstr "" +msgstr "Novo ACL" #: links.py:39 msgid "Delete" @@ -52,25 +52,25 @@ msgstr "Permissões" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "" +msgstr "Objeto \"%s\" não é um modelo e não pode ser verificado para acesso." #: managers.py:236 #, python-format msgid "Insufficient access for: %s" -msgstr "" +msgstr "Permissões insuficientes para aceder a: %s" #: models.py:57 msgid "Access entry" -msgstr "" +msgstr "Acesso" #: models.py:58 msgid "Access entries" -msgstr "" +msgstr "Acessos" #: models.py:62 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" -msgstr "" +msgstr "Funções \"%(role)s\" de permissões para \"%(object)s\"." #: permissions.py:10 msgid "Edit ACLs" @@ -84,69 +84,76 @@ msgstr "Ver ACL's" msgid "" "API URL pointing to the list of permissions for this access control list." msgstr "" +"URL da API que aponta para a lista de permissões para essa 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 "" +"URL da API que aponta para uma permissão em relação à lista de controle de acesso" +"que está ligado. Este URL é diferente do URL do fluxo de trabalho canônico." #: serializers.py:91 msgid "Primary key of the new permission to grant to the access control list." -msgstr "" +msgstr "Chave primária da nova permissão para conceder à lista de controle de acesso." #: serializers.py:115 serializers.py:191 #, python-format msgid "No such permission: %s" -msgstr "" +msgstr "Nenhuma permissão: %s" #: serializers.py:130 msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." msgstr "" +"Lista separada por vírgula de chaves primárias de permissão para conceder a essa lista " +"de controle de acesso." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "" +msgstr "Chaves primárias da função à qual essa lista de controle de acesso se vincula." #: views.py:62 #, python-format msgid "New access control lists for: %s" -msgstr "" +msgstr "Novas listas de controle de acesso para: %s" #: views.py:100 #, python-format msgid "Delete ACL: %s" -msgstr "" +msgstr "Excluir ACL: %s" #: views.py:147 msgid "There are no ACLs for this object" -msgstr "" +msgstr "Não há ACLs para este objeto" #: views.py:150 msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." msgstr "" +"ACL significa Access Control List (Lista de Controlo de Acceso), é o metedo pelo qual se controla " +"o acceso do utilizador a objectos pelo sistema." #: views.py:154 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "Lista de Controlo de Accesos for: %s" #: views.py:170 msgid "Granted permissions" -msgstr "" +msgstr "Permissões concedidas" #: views.py:171 msgid "Available permissions" -msgstr "" +msgstr "Permissões disponíveis" #: views.py:215 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"." -msgstr "" +msgstr "Funções \"%(role)s\" de permissões para \"%(object)s\"." #: views.py:224 msgid "" @@ -155,23 +162,27 @@ msgid "" "to be removed from the parent object's ACL or from them role via the Setup " "menu." msgstr "" +"As permissões desativadas são herdadas de um objeto pai ou são concedidas diretamente " +"para a função e não pode ser removido dessa exibição. Permissões herdadas precisam " +"para ser removido da ACL do objeto pai ou da função deles através do menu Setup." #: workflow_actions.py:26 msgid "Object type" -msgstr "" +msgstr "Tipo de objeto" #: workflow_actions.py:29 msgid "Type of the object for which the access will be modified." -msgstr "" +msgstr "Tipo do objeto para o qual o acesso será modificado." #: workflow_actions.py:35 msgid "Object ID" -msgstr "" +msgstr "ID do objeto" #: workflow_actions.py:38 msgid "" "Numeric identifier of the object for which the access will be modified." msgstr "" +"Identificador numérico do objeto para o qual o acesso será modificado." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -179,25 +190,26 @@ msgstr "Funções" #: workflow_actions.py:45 workflow_actions.py:160 msgid "Roles whose access will be modified." -msgstr "" +msgstr "Funções 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 para conceder/revogar para/da função para o objeto selecionado acima." #: workflow_actions.py:60 msgid "Grant access" -msgstr "" +msgstr "Conceder acesso" #: workflow_actions.py:143 msgid "Revoke access" -msgstr "" +msgstr "Revogar acesso" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Conceder acesso ao documento" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Revogar acesso ao documento" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.mo index ffed6509322f7b883d5798c7ea8f382b47d38403..bb92ba42456d953108e9a9f541d189f53838fe98 100644 GIT binary patch literal 4370 zcmb`JU5q6~6@Uv}LF%Zj2^A7=Ip2OpMV75~9flBGE{U1|Lkg51RO9GzK4h@xd20#-QV^3bx!~BhJD{s9E-G%(7u0_Qb*yzw{zh*v`?wezJY8GI*v8D0l}4X=m4 zhcf=p@Midr>G$iH{QW%N1ZDi4a24JS-v&PqW!x7bs;jTT_rPz!Ti`R(_b)-2_ZRTP z@K^9%@J~=|^LNOUYCoO64CkOc{|JhHKZWmuzl4v&SKxc$0!m506^ID+(3BfcO#CFg z8$J!C-#4L*`wm2edLH)h$&2u_Jl}#*ehV+aXW&Vc6#M-Riu_lhtoIU>bzXxrM4uZW zB2)?G`w)u!FTqv#btv=y2HpT)nSTEZ6hHhEiu|h(%B{Kf8J~(}S0M64|H1VzY0kf+8 zG&v;B)r@|fe5W)S>Yo24_!rNYid?V|3OXmjl=ePH&AuX|+emA+?;NHn?| ztktGM?7&v7=-(I}3KQe<{w~8!t8Y!9hdrNK zxv6?K?AI}k3cI{N1yjYY59N{$KAB`^7Z-Bdn>)P!{`=L)-3!(vZM#g@s9W-Oubs4sx=Y78*j8{^U!GmU5^ep2 z)s@A(rYLmkTiv(CKo70XOr?7^-S%2VRyw{;Y9&j~S5d7D1{lFqnN=%TO-vP;;sJHU zqR-@o$m!NaG17Ikdfkk8K7MTdbkn<;S!V6}qVPlfzod?MpCTq4OzwszWqoy2CMnd> zzRk`}N2Z|<=QKvE2p808Y?#7Go1Sr%=EO~Qs7qhkD#f-sTKH(yF%$b8Z$hqCkvZ!4 z^J*2tuMBOZqk3=>hPV>%+FY&W40c^-gIcR%-R-)}@kS49C|!(=86JMLw#>VV$JO+H zU9{E@Sw|G969!LrnMAFd^RBE*UDYN2*S@Q>J_gK^4H4_($)Up!9jkK}2Zb4lW8{m~ zTaL9fo1(2A@tiu?SQjaBTUoVXdN|T2=BcY(ow9{(b`1|qBmxST*(%y4b=quMb(#)Y z(sywaw&;=hvaBnYnZ}eh1Ru6PO&@#+ql238Y@`MIx!Oi7qz5u{=IbJF=12ENg|<3f zcS@JkX5R*TJGEw4$LO$GZ*LdY-4wF3`RIJ@v8LO>2pRtM0!rdE?pk0 z9y_(xJ{#5JxSl9dPnb{<|LQ3l)l+Pw+*h|J-N#qjR+5c&hg`G3)F+dXzAzC2+Ujf* zhEwPh=E6vy@FrK{Di?_5jY(>4t>vxhtV_E#Tt8!s58rtZLYQsUGCSUYa3d}tIX$;gY=<} zOFQ~5=|P&=DC%H}mhADkq^m*m7?X5p8EtW-0^SEg{e$?3MM7*fL~YRTBi^1N=8LE!(ai6%%2p+dkikU=qJ*}4*?aivBRAEcnN))&8OQj87m*Z!tm(4LhZT zmD(Un#8V`U9A7pbPU9C+T{Hv8SjkW-=|v$cr`1xrsz+?quS>NtezxZ-qbm_ak&y5- zxl!bo@kQB=QJjuW|7E2n)ztEzpiX8~Vq44RkW$*_zr(RQsiC4Y0liZ? zr(u9D{Orl5v`q!&XTmtq52J^73^nEAMw#)or6(Sy(T3`~M27IDdsmAOu|5 q!~$lBv3A?Vw29MQQ98*l{Me8jrLr~_eB;tefXHvd_(lHV)qerQ1iJbF delta 492 zcmX}oF-XHu5P;!VO%qeww5VVOr-D-_DJtq>>EPxf*g4ivg3@4GMWGPgoPD^tITS>3 zC@x((WauV>dq-DS7s3Bx@!r;P7wuinYVH^e;GHhf^yDrvL7kcp`b@~aTBjFivwi7%9C=Sgfz-< zc`hMeVwOyk@&zUAKa$Hx$^DZHN-cBbGD%b$9X}Ja+N$QZ8s3TiG*@)jDjECkxu?IZ zE$hGw+kVi}b$h%2XrHE>YTS!oz5fQ&DeIn7F?Y}0@W|Ec`I;#$@q>OY?Bs&O&~Lh( JxF7m~`UP;MKvMt! diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index 63782262bc..386cefc106 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 "" @@ -19,59 +19,59 @@ msgstr "" #: apps.py:12 settings.py:9 msgid "Appearance" -msgstr "" +msgstr "aparência" #: dependencies.py:10 msgid "Lato font" -msgstr "" +msgstr "Fonte Lato" #: dependencies.py:14 msgid "Bootstrap" -msgstr "" +msgstr "Bootstrap" #: dependencies.py:18 msgid "Bootswatch" -msgstr "" +msgstr "Bootswatch" #: dependencies.py:32 msgid "Fancybox" -msgstr "" +msgstr "Fancybox" #: dependencies.py:36 msgid "FontAwesome" -msgstr "" +msgstr "FontAwesome" #: dependencies.py:40 msgid "jQuery" -msgstr "" +msgstr "jQuery" #: dependencies.py:43 msgid "JQuery Form" -msgstr "" +msgstr "JQuery Form" #: dependencies.py:47 msgid "jQuery Lazy Load" -msgstr "" +msgstr "jQuery Lazy Load" #: dependencies.py:51 msgid "JQuery Match Height" -msgstr "" +msgstr "JQuery Match Height" #: dependencies.py:55 msgid "Select 2" -msgstr "" +msgstr "Select 2" #: dependencies.py:59 msgid "Toastr" -msgstr "" +msgstr "Toastr" #: dependencies.py:62 msgid "URI.js" -msgstr "" +msgstr "URI.js" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "" +msgstr "Número máximo de characteres que serão mostrados como título de vista." #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -91,17 +91,19 @@ msgstr "Desculpe, mas a página solicitada não foi encontrada." #: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52 msgid "Server error" -msgstr "" +msgstr "Erro 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 "" +"Ocorreu um erro. Foi reportado a administração do sit por email e vai ser " +"corrigido brevemente. Obrigado pela sua Paciência" #: templates/appearance/about.html:10 msgid "About" -msgstr "" +msgstr "Sobre" #: templates/appearance/about.html:77 #, python-format @@ -110,6 +112,9 @@ msgid "" " %(setting_project_title)s is based on %(project_title)s\n" " " msgstr "" +"\n" +" %(setting_project_title)s e baseado no %(project_title)s\n" +" " #: templates/appearance/about.html:82 msgid "Version" @@ -122,7 +127,7 @@ msgstr "" #: templates/appearance/about.html:97 msgid "Released under the license:" -msgstr "" +msgstr "lançado sobre a licença" #: templates/appearance/about.html:103 #, python-format @@ -131,6 +136,9 @@ msgid "" " %(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 é gratuito e software de fonte aberta oferecido por por Roberto Rosario e contribuidores.\n" +" " #: templates/appearance/about.html:109 #, python-format @@ -139,6 +147,9 @@ msgid "" " 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" +" Foi um grande esforço para fazer %(project_title)s como característica-rico como é. Necessitamos toda ajuda que conseguirmos!\n" +" " #: templates/appearance/about.html:115 #, python-format @@ -183,7 +194,7 @@ msgstr "" #: templates/appearance/base.html:32 msgid "Warning" -msgstr "" +msgstr "Aviso" #: templates/appearance/base.html:51 #: templates/appearance/generic_list_items_subtemplate.html:104 @@ -193,11 +204,11 @@ msgstr "Ações" #: templates/appearance/base.html:53 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" -msgstr "" +msgstr "Alternar o menu suspenso" #: templates/appearance/generic_confirm.html:14 msgid "Are you sure?" -msgstr "" +msgstr "Tem a certeza?" #: templates/appearance/generic_confirm.html:34 msgid "Yes" @@ -238,6 +249,8 @@ msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" msgstr "" +"Total de (%(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 @@ -245,7 +258,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:22 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Total: %(total)s" #: templates/appearance/generic_list_subtemplate.html:55 msgid "Identifier" @@ -253,19 +266,19 @@ msgstr "Identificador" #: templates/appearance/home.html:10 msgid "Dashboard" -msgstr "" +msgstr "Painel de controle" #: templates/appearance/home.html:26 msgid "Getting started" -msgstr "" +msgstr "Iniciar" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Antes de poder usar todas as funcionalidades Mayan EDMS necessita de fazer o seguinte:" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" -msgstr "" +msgstr "Alternar de navegação" #: templates/appearance/no_results.html:18 msgid "No results" @@ -273,15 +286,15 @@ msgstr "Sem resultados" #: templates/appearance/root.html:57 msgid "Close" -msgstr "" +msgstr "Fechar" #: templates/appearance/root.html:65 msgid "Server communication error" -msgstr "" +msgstr "Erro de comunicação com o servidor" #: templates/appearance/root.html:67 msgid "Check you network connection and try again in a few moments." -msgstr "" +msgstr "Verifique sua ligação de rede e tente novamente em alguns instantes." #: templatetags/appearance_tags.py:17 msgid "None" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo index 2180567f90fc42bc020a295d11a1c5f56d757cbb..3fbd810f978bcab6cb1f55ecbf4b10ae14e9aa43 100644 GIT binary patch literal 3422 zcmb`JO>7-U9l(bY3NeM!QlNZQ6IW4fHT!Ibek3o7ikrAn)Vj88ClXxHcz53Oklmff z&aCa^0tg8Z5>h3ExMFdrkf>Ct>ZL*m>79TRH!f}O+z{6u`up$hTYoecBvx^LZ)bP@ z-~a#Y2aliot>Su$zi;vP$fuNAgdahh3~@`;Q3E0wE@2i z<@p=%Gw>}a&)Yy8AkXr{AG9l5BM1OAHv7se;_WXb2$GqcphSs`Zc@-f79`O zDEpqlsdac2UWUJb_u+exf9iRh6+2fUrmGEzN$L)iIQ;2Z%mlcv5d<3Qc;WvqN2nr($mG0%lUOvrTf z+8kTYg6JIRjfr@IjLHt1rP37klD36$xw=tT74A0c$7YDwu~lo$D{EDSla&oNioLT? z^sejqiwmM@G0YQ%1uL&F2K9=s#<+6N*T=zlNxkOBu5ABD5;|D$byVx-&=qx|qbsa7 ztvPA#(z~+|&2QPl7P~~Yu=6_Iv+3Pkf2a>!o?{z^mOA(2FiYxo0+J>knwj!wof_#ZPP23mTSoWL$hdtqVQxn27w>tI3B)8FC z&^N^0Ca<|G@9JGk4MoUuZHBcevp#17{ko49 z9VVWxyOFawkqbISP=eIpqT9Cvbt39&+Y+5w__p1+B-CoV-Yr}NX=+0l)p`F)TQYr_ zNQVq~kNCFf6~jU_qtTh->nrVaGhC9_8mmoKkWnYzj!bI1E}=df>rt|EqGiM>SDLhS z=X)osQSX^Rm@U=OTc6+Sa+?wH%Kwl!CbzQW4$Vsw4fVRYXG*bcF0WXtY5c|EylB0YC`dF5)d{6ezwyk35B_}rCem$~L%Ga)8Bl_^7R zqGy0?d8(UyZ~0&<=Xs$V*R)8oV@)yCn<%Ttl&IAUdofOiOG^g_2ZJaQ+{hjdsHCN; z-CHdcVrOErA}r;doTW)zTAW+IwZ3-j&dOkUPDTo)lkD7^U~II9acPp%PuC<86HjUSBBn zh3k4{@!Fh>T=X+>r*BUG;MHnQVofEry=P9}QCpSKUf0p(?!L(+Y!}0sce0buPd^L# z)I-ZwX051eRO`&NT6KvbdiqBh22{6Wz0u5kkoGF0=_j$6!yInLFp2|4ebP#q%dLx< zAL!Mf{RD;Y+Mol9h>vILW%h($%;z$*m7TunOA7K0g=et&Gfq|LYn(pcLzNBtpnIm_y5X3jNIXz;0 z8F7LLR3`aY2Z1xAdZ{6iEAR?Km z65=-BWXY7+QcaH}Jv1$8;N;W$CgB~ncPKS^7bob-{DKIm4OYG@OMqiJ4G-^xsLc1QqAP762gJTbcj zt}DioxzE_8ek28z6mMS=Dc=)PPi^8U6j6LajV<>b(NxSIJu>^gx}-BVb{r$5%O>)P zpl3m9$}|#My|K#|!M<(MN-~Y4ni6O&#~Ne=J}26Aid9x4Y5HDB>zt{~9S^%ZeDAZZ zZg%C`NK$K!Kg}V;8CvmXTh3iq%oOh0B4NhctncK0Mzj;;bxQSQzdxukFuyr@Fq|^> z98=oY;*@-sFnDEp@D1T6hNG$}3;B{cKBms@??(!PICiBV*ZTRQ88s9$ox{P!v{^mw UGR`~K)hHU7`f_~HZGNCW2G}ziZ2$lO delta 408 zcmXZXy-LGS6u|M*FKcUxR6$TW#G&ZmqJs~hlSM>GH(jnaq!%)ob$WqerLM!)|^Zis`o;3hz@Z{w25!RHn$`)kE>|sH?f8X zxQ+dyzQGylJDkPGqJF{w^$RXzt1PmCYZ#PdB7Hh72Hq-dF>_=7uGujUWxA)g$R z>;n|qivqmH5!wrWv5RdMacA~p4YbX!w~yp#;abkw$`7TVwI;bv%;jaCcZVtre0QXb zxrpLHdRsZ_>_>qPg&d6&IV@(x8=su(, 2015 msgid "" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:25 settings.py:9 msgid "Authentication" -msgstr "" +msgstr "Autenticação" #: forms.py:17 msgid "Email" @@ -32,13 +32,15 @@ msgstr "Senha" #: forms.py:22 forms.py:73 msgid "Remember me" -msgstr "" +msgstr "Recordar-me" #: forms.py:25 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" +"Por favor, digite um e-mail e senha corretos. Observe que o campo de senha faz " +"distinção entre maiúsculas e minúsculas" #: forms.py:27 msgid "This account is inactive." @@ -54,19 +56,23 @@ msgstr "Alterar senha" #: links.py:32 links.py:39 msgid "Set password" -msgstr "" +msgstr "Definir senha" #: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" +"Controla o mecanismo usado para o utilizador autenticado. As opções são: " +"nome de utilizador, endereço de correio eletrónico" #: settings.py:20 msgid "" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged" " in. Value is time in seconds." msgstr "" +"O tempo máximo que um usuário clicar na caixa de seleção \"Recordar-me \" " +"permanecerá conectado. O valor é o tempo em segundos." #: templates/authentication/login.html:11 msgid "Login" @@ -75,11 +81,11 @@ msgstr "Iniciar a sessão" #: templates/authentication/login.html:26 #: templates/authentication/login.html:34 msgid "Sign in" -msgstr "" +msgstr "Entrar" #: templates/authentication/login.html:39 msgid "Forgot your password?" -msgstr "" +msgstr "Esqueceu sua senha?" #: templates/authentication/password_reset_complete.html:8 #: templates/authentication/password_reset_confirm.html:8 @@ -88,15 +94,15 @@ msgstr "" #: templates/authentication/password_reset_form.html:8 #: templates/authentication/password_reset_form.html:20 msgid "Password reset" -msgstr "" +msgstr "Reiniciar a senha" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "" +msgstr "Reinicio de senha concluída! Clique no ligação abaixo para fazer o entrar." #: templates/authentication/password_reset_complete.html:17 msgid "Login page" -msgstr "" +msgstr "Página de entrada" #: templates/authentication/password_reset_confirm.html:29 #: templates/authentication/password_reset_form.html:29 views.py:154 @@ -105,7 +111,7 @@ msgstr "Submeter" #: templates/authentication/password_reset_done.html:15 msgid "Password reset email sent!" -msgstr "" +msgstr "Correio electronico para reinicio de senha enviado" #: views.py:74 msgid "Your password has been successfully changed." @@ -117,39 +123,42 @@ msgstr "Alteração da senha do utilizador atual" #: views.py:89 msgid "Changing the password is not allowed for this account." -msgstr "" +msgstr "A alteração da senha não é permitida para esta conta." #: views.py:145 #, python-format msgid "Password change request performed on %(count)d user" -msgstr "" +msgstr "Solicitação de alteração de senha executada em %(count)d utilizadores" #: views.py:147 #, python-format msgid "Password change request performed on %(count)d users" -msgstr "" +msgstr "Solicitação de alteração de senha executada em %(count)d utilizadores" #: views.py:156 msgid "Change user password" msgid_plural "Change users passwords" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Alterar senha do utilizador" +msgstr[1] "Alterar senhas do utilizadores" #: views.py:166 #, python-format msgid "Change password for user: %s" -msgstr "" +msgstr "Alterar senha para o utilizador: %s" #: views.py:186 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 msgid "Successful password reset for user: %s." -msgstr "" +msgstr "Redefinição de senha bem-sucedida para o utilizar: %s" #: views.py:202 #, python-format diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.mo index 4016b63004589cc3bb1dc81a88e6b3f0d91c342d..dcbc5536a9fdb59c6ed7237b7a72aafdc38c8fe1 100644 GIT binary patch literal 2293 zcmbVN%WfP+6fH=?V|Xe;VgZY534)E?Gvi>88QTfAV}q4A9@%3f1js6P-|4BSyJ}KZ z?FSMI7VKD(9UBBvWF+_kb|e0Q6@nE%z=};c)jhTc85T)NRj2EDZ=JgL^lz6h-V-P< zqP~jy4eHC``!O^qhrlO+N5IR#FMuxrzXrB}$G|b*-@x*W$A!3pegu39*a5x){1kW{ z_$BZN_zQ3Wc>O}P{&V04`riY0fPVq+;mn&Cg}8+NA81|y{t27}UU))?Pk;?z1Nap% z%>N9$0{j&i_B{Z;2E2qzECJsHT3`tj66NGx7B(nHIXfp) zu8Wmis;ouxuxfOA?e%dE0~2n(F&q)A$~sS8I$XRS~{$hxdG5W|9)RX&6d(4_rwU4%Br6i?q)xOF&WmhMhA8wJ;f$}|yL8vmi zE=~`)Q{a8OA@X`)R%z!!b$HIRpg;uP;n?qbY|QmQLViZZSuYfd!id)wnbN) z)9*&jnP_^3nlr8DJCjY6+AZmP)WJhIST(jq>rxk-N!n7`zNC4jW$Z!7WN$aGW_GPf zT$p?h$)%m@@?jlhUYjZ{;6R-gNQbDyGKafxu1E_8Z{t1h`>xe!92^|f|FySajgwXx z+wj=r8q;sRJv-Cr`^H3VeQkZ^?DEs~W^LJMkHm;NM}6GN^Pz9_GpY1k$YSf*FKl;K zquH}{!OJe&Xhp{+!CSOwc2D_JM_bhQwRTomnMJF{=B`D$Uv}NX)j6s@7sfS>EztDD zTulTAq$oqD6qv#N!FLdxkXwUqLvn?8L(s@XChRDYBVu%Z?Q&3~uDV-r1db9We38sN z@_{6TNB1N&DRhb)*Oo|9jHYl`5AI8<*24~B2JgiPI0%vsf|S?cswjP09x48~hk!Bm8lYH(XGxXuMg_iIB7;UFn6wTezWC#Y!qCwt~l1J8J4A z?MDJ$++bu1lAJ1$0#V2S_#cc0O^T3Rnfgp7#==D4vtqeaus{Zj#UVqFu(wWIOkEtU z5U&|n)i5x1%K6|Js$@%>8FbRXer0llbdU}>IpW?U*caQUw;LtuKh$aodb6(r>t{g+ zPR3}*#DgEma?E>N;MW#(YH*w?gQz>tVX0mb=8&zWbRo?}b%c!N9yAb}D#^k-pGC?4 N3s#8By}_||;vX=D&`$sW delta 184 zcmew=c#W<8o)F7a1|VPsVi_QI0b+I_&H-W&=m6pXAnpWW0U*8w#2i5U8i>___zMtE zWd!O4;us)%6B7f2G?3D=Y%-JovuOhWw7VK= diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po index 0cc95b3b00..73fd3597cf 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 "" @@ -23,17 +23,19 @@ msgstr "" #: apps.py:16 settings.py:9 msgid "Auto administrator" -msgstr "" +msgstr "Administração automática" #: auth/allauth.py:54 msgid "" "Welcome Admin! You have been given superuser privileges. Use them with " "caution." msgstr "" +"Bem vindo Administrador! Você recebeu privilégios de super-utilizador. Use-os com " +"cautela" #: models.py:15 msgid "Account" -msgstr "" +msgstr "Conta" #: models.py:18 msgid "Password" @@ -45,21 +47,23 @@ msgstr "" #: models.py:27 msgid "Autoadmin properties" -msgstr "" +msgstr "Propriadades da administração automática" #: settings.py:14 msgid "Sets the email of the automatically created super user account." -msgstr "" +msgstr "Define o email da conta de super-utilizador criada automaticamente" #: settings.py:20 msgid "" "The password of the automatically created super user account. If it is equal" " to None, the password is randomly generated." msgstr "" +"A senha da conta de super-utilizador criada automaticamente. Se for igual a " +"nada, a senha é gerada aleatoriamente" #: settings.py:27 msgid "The username of the automatically created super user account." -msgstr "" +msgstr "O nome de utilizador da conta de super-utilizador criada automaticamente" #: templates/autoadmin/credentials.html:11 msgid "First time login" @@ -71,20 +75,22 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" +"Você acabou de instalar %(project_title)s, " +"parabéns" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" -msgstr "" +msgstr "Entrar usando as seguintes credenciais" #: templates/autoadmin/credentials.html:18 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Utilizador: %(account)s" #: templates/autoadmin/credentials.html:19 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Correio electronico: %(email)s" #: templates/autoadmin/credentials.html:20 #, python-format diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.mo index 4a402f058340e6afbbf34fc5328cbe98df153a03..452b49b992fd844a4478f836609ba7b04eedb2aa 100644 GIT binary patch literal 5742 zcmbW5OKhB16~}L(rCCleiHeM7W;0_I&C0n11)0 zacorx@mTO!u%HWsgp#m8MT$U_hiJvhSt21e2nmTDu&7kAWPt>~bHC>}O-cCVJOBCa z z$oVxm555k*8{E$#k$VDUiMmj{e*yde@0UTQs;`0X2fqzI1YQH*1O5U$4&DSi;QjB& z&wU&ey*EJq)XRKKfxiQxK>ZyQIj@1D_rF0@R1*_QJpw)iz7yOHz7ISEJ_()$W!)7} z&igI!G4Ok!==n47DeyH=c$`AWDex%xVelK^$H1%LY49c}`#W1n&`WqHc6A`$sD}B#TLSk_=MOCcky}xUe71w3(pK~FHK?ts;g<*98I3bbMT+S zg*@T|^6a6B9pn-JP?J+p(zD^E*hF^P>GdG%>#QF*Jvp@+*symgG%GfA44E*srnjN( zmB3}Lt&S}%=x5KL(Ssz2vmjp6S)z^ZCEa0U<4gy!PHkwiAcs#G5D?w~C?Xo15 z1wq!<%d(e<0eZpes!e5a);Fy3OX4IBx+bgzGnvhMJ!y6Cu1U8`_9^yoW25etk=U;5 z(2i{A=T&da>*&dRaV-o*o*!D5>48mGlQgnDjZ%|S-DDVN)Ab>|th-;feLLR6P@Txh zDltE;L%&#elQ=W*TXOAmlIjGy(o%ixhAYJiD8?=gsyrE{oViCk8``c=UK?l>Ku@yT zG^cd6%fqW1B} zb#8SSh8ykMiQvwcQ3ZFdk5$Wgv!!w3qs(0`D@?4tQ@r`gTJikW;UJaDk%>3T^Wu#2 zy&&@+WuK>3ddm){&PW_pX9|z#_JgoTsH?`?YSD~>H6JfKYOxMv+KjNDSqZIL97ZeL z@rFZjLnKbZW1&la>Dy|Fdr2HMaZl$PpZC74a;O~AjS=C>;U+tG9Q+E=|IgYt+}NpQ zuB+rF(fC#+wHXX-T=<~4y-bCWRq_gc72|&78LZ<|%osnCY-}{hHuAC3sinJcs)l`) zWG8^^`STYR&Mi)yw}T|jT4&u_&}$tZuDRAS`DtS5Twss~>oJoTuoyl0_X6E)CIJ|#mkj+d_oLx9OUn@V?o}D;BFvo9O%Nql<%IuYF zW)PCFn^+2msR>)B$lR`@ zs*k`zV0CXy`b`+(BX zBud0vzobA)q$CQuc!WvoZ`DNY%Og|mC?$uVUFYV6J3}kaRLw9ccVd+2cSD5=y3Wqt{9cBj7V)m@mk*c#Os>%bh{jHK3)YXz;_kRc) z*KaxLB~G0#Y@p6@_eDiwK=Y&ns^iEP8ARTO{A8$;VTNx@sZ}kk57yR%U_-_z>1wR? zZc%bk6ku3R3Mq=~m7w6O7A7YeQdu-d8IlcY!Y@NioKkTa)DR`=yDE&Mlvn9M4Y z+q6{Wk(7W`fJCNB)HX>zhPsSM8jqc|mUH{HvDh7IB@9PRMek&B=`Y(jdc&o48Hm1l zG{Ebsi|tw9_fL>9T=I>XsQs{C4pqOm!?r$0u@~9G>oCD;5cUxza%*wahITEFqiRt! z@1u7$Opb8moIH9l{z_z1f7@#_>)5+taUt2JTuh}HXsZ_qKc%;o*zl5V$H_}Q!Ugx_ zj$(W*suAJuT8gle|91g$>P%6|8KdkRPDSb18@ql*7SpDiTGyr0Ad2|3Cvy=mKM#je zJZAicb53H6nwR@~D{+PMjm&0{, YEAR. -# +# # Translators: # Roberto Rosario, 2017 # Emerson Soares , 2017 # Manuela Silva , 2017 -# +# #, fuzzy msgid "" msgstr "" @@ -26,23 +26,23 @@ msgstr "" #: 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 "" +msgstr "Gabinetes" #: links.py:30 links.py:44 msgid "Remove from cabinets" -msgstr "" +msgstr "Remover dos gabinetes" #: links.py:35 links.py:40 msgid "Add to cabinets" -msgstr "" +msgstr "Adicionar aos gabinetes" #: links.py:63 msgid "Add new level" -msgstr "" +msgstr "Adicionar novo nível" #: links.py:69 views.py:45 msgid "Create cabinet" -msgstr "" +msgstr "Criar novo gabinete" #: links.py:75 msgid "Delete" @@ -54,7 +54,7 @@ msgstr "Editar" #: links.py:88 msgid "All" -msgstr "" +msgstr "Todos" #: links.py:92 msgid "Details" @@ -70,142 +70,149 @@ msgstr "Documentos" #: models.py:46 models.py:135 serializers.py:138 msgid "Cabinet" -msgstr "" +msgstr "Gabinete" #: models.py:136 serializers.py:139 msgid "Parent and Label" -msgstr "" +msgstr "Pai e None" #: models.py:143 serializers.py:145 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." -msgstr "" +msgstr "%(model_name)s com este %(field_labels)s já existe." #: models.py:160 msgid "Document cabinet" -msgstr "" +msgstr "Gabinete de documentos" #: models.py:161 msgid "Document cabinets" -msgstr "" +msgstr "Gabinetes de documentos" #: permissions.py:12 msgid "Add documents to cabinets" -msgstr "" +msgstr "Adicione documentos aos gabinetes" #: permissions.py:15 msgid "Create cabinets" -msgstr "" +msgstr "Criar gabinetes" #: permissions.py:18 msgid "Delete cabinets" -msgstr "" +msgstr "Remover gabinetes" #: permissions.py:21 msgid "Edit cabinets" -msgstr "" +msgstr "Editar gabinetes" #: permissions.py:24 msgid "Remove documents from cabinets" -msgstr "" +msgstr "Remover documentos dos gabinetes" #: permissions.py:27 msgid "View cabinets" -msgstr "" +msgstr "Ver gabinetes" #: serializers.py:19 msgid "List of children cabinets." -msgstr "" +msgstr "Lista de filhos dos gabinetes" #: serializers.py:22 msgid "Number of documents on this cabinet level." -msgstr "" +msgstr "Número de documentos neste nível de gabinete" #: serializers.py:26 msgid "The name of this cabinet level appended to the names of its ancestors." -msgstr "" +msgstr "O nome deste gabinete nível acrescentado aos nomes de seus antepassados" #: serializers.py:32 msgid "" "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" +"URL da API mostrando os documentos da lista dentro deste gabinete" #: serializers.py:68 serializers.py:179 msgid "Comma separated list of document primary keys to add to this cabinet." -msgstr "" +msgstr "Lista separada por vírgulas de chaves primárias do documento para adicionar a este gabinete." #: serializers.py:158 msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" +"URL da API que aponta para um documento em relação ao gabinete que o armazena. " +"Este URL é diferente do URL do documento canônico." #: templates/cabinets/cabinet_details.html:17 msgid "Navigation:" -msgstr "" +msgstr "Navegação" #: views.py:60 #, python-format msgid "Add new level to: %s" -msgstr "" +msgstr "Adicionar novo nível para: %s" #: views.py:87 #, python-format msgid "Delete the cabinet: %s?" -msgstr "" +msgstr "Excluir o gabinete: %s?" #: views.py:122 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 "" +"Os níveis de gabinete podem conter documentos ou outros subníveis do gabinete. " +"Para adicionar documentos a um gabinete, selecione a exibição do gabinete de uma exibição de documento" #: views.py:126 msgid "This cabinet level is empty" -msgstr "" +msgstr "Este nível de gabinete está vazio" #: views.py:129 #, python-format msgid "Details of cabinet: %s" -msgstr "" +msgstr "Detalhes do gabinete: %s" #: views.py:149 #, python-format msgid "Edit cabinet: %s" -msgstr "" +msgstr "Editar gabinete: %s" #: views.py:169 msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." msgstr "" +"Os gabinetes são um método de vários níveis para organizar documentos. " +"Cada gabinete pode conter documentos, bem como outros gabinetes de nível inferior." #: views.py:173 msgid "No cabinets available" -msgstr "" +msgstr "Não há gabinetes disponíveis" #: views.py:205 msgid "Documents can be added to many cabinets." -msgstr "" +msgstr "Documentos podem ser adicionados a muitos gabinetes" #: views.py:208 msgid "This document is not in any cabinet" -msgstr "" +msgstr "Este documento pode ser adicionado a muitos gabinetes." #: views.py:211 #, python-format msgid "Cabinets containing document: %s" -msgstr "" +msgstr "Gabinetes contendo documento: %s" #: views.py:223 #, python-format msgid "Add to cabinet request performed on %(count)d document" -msgstr "" +msgstr "Adicionar à solicitação de gabinete executada nos documentos %(count)d" #: views.py:226 #, python-format msgid "Add to cabinet request performed on %(count)d documents" -msgstr "" +msgstr "Adicionar à solicitação do gabinete executada em documentos %(count)d" #: views.py:233 msgid "Add" @@ -214,31 +221,31 @@ msgstr "Adicionar" #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" -msgstr "" +msgstr "Adicionar document \"%s\" a gabinetes" #: views.py:259 msgid "Cabinets to which the selected documents will be added." -msgstr "" +msgstr "Gabinetes aos quais os documentos selecionados serão adicionados" #: views.py:288 #, python-format msgid "Document: %(document)s is already in cabinet: %(cabinet)s." -msgstr "" +msgstr "Documento: %(document)s já está no gabinete: %(cabinet)s." #: views.py:300 #, python-format msgid "Document: %(document)s added to cabinet: %(cabinet)s successfully." -msgstr "" +msgstr "Documentos: %(document)s adicionados ao gabinete: %(cabinet)s com sucesso." #: views.py:313 #, python-format msgid "Remove from cabinet request performed on %(count)d document" -msgstr "" +msgstr "Remover da solicitação de gabinete executada no documento %(count)d" #: views.py:316 #, python-format msgid "Remove from cabinet request performed on %(count)d documents" -msgstr "" +msgstr "Remover da solicitação de gabinete executada nos documentos %(count)d" #: views.py:323 msgid "Remove" @@ -246,14 +253,14 @@ msgstr "Remover" #: views.py:349 msgid "Cabinets from which the selected documents will be removed." -msgstr "" +msgstr "Gabinetes dos quais os documentos selecionados serão removidos." #: views.py:377 #, python-format msgid "Document: %(document)s is not in cabinet: %(cabinet)s." -msgstr "" +msgstr "Documento: %(document)s não está em gabinete: %(cabinet)s." #: views.py:389 #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." -msgstr "" +msgstr "Documento: %(document)s removido do gabinete: %(cabinet)s." diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo index 2d93cce0d34f7987a4c8ffc4aa6a66fec0edda32..5fc74bbbc2c361292ebaaf1b75ccd3faf2d811b1 100644 GIT binary patch literal 4254 zcmai$O^6&t6vs=WCXVqVF@D6TscgPBCOxye8Z{Hw5VMH}-OZZp269lSovxj!Y$VCJ}5h8+K^yWdY{$F=bcg<$hW@mp>)vsQ? zuc|kf)?f8H!!w4@o%o!;g0Vy3L#yx)&tq3HwjVqS-VVM9-Uhx6t^+>?*Mr}HcYr^E zYr(%jl3R5(V?*F3@K*3)kmP6caSOZ|CKS6`F8-vC~R@hz)B=-3$5qH^3_~J`d9R4?vj2z5}b^k03(F z*1&j5!S&!ta2?o0Zd%~|7=K&I>{yLpaEy0=+5I#~`7$8o;boBQdl$S1`~=(q z{+7?LMbb!a2&DD(e0&Vtj&Tzl2VViN2QPx;=Z_#vVSj^EKUd=ABDfjE6nhgSJKhEH z$3D-;7r}=x{uP8vYzvZ1`|Jicf=`0mzy*-(dKIKNz6X;0ry%M53M9Ep;AU_Yl0o^~ z3Q{~C07>suKDHpm;U$pjbs401e+JU}FF~Y${Q_3O-$C+k<4svUwt)%8!ywX;)(nu^ zPyTgLUU=&QRXOx#dK~H1PsS!O8ct8 zCNz(<9&+94MzyAx^EM!Lqwthn@SlKmHYG#&Y(GXw?c5>j46ds#toU8SQz9gZV8h{Ximzg5P(j{ zVq=9(N{vWvd9vA&73!(l$|{+1PI+1x?6Mi-PMIuI(m%kaH2z9eyd^pk8S1x^O{a-w z)3FLgyu=seQhF)5_fVEt$L1=VH8N(Wq+zFY!hPjOJ8_rAs;Q#Bq#z9aMN;L1+`at9 znU3{o*|6SG-#eMzadkc^mPEu4PfVVu9G7h!TW``dmG3>0G>tc->%203%sVbSimpU& z0+n6oV6m>=^%+k;33eVsq?6v4$b)3ex7|DACCBzaXz|he}z4nh{!5m_-H%m zLNaV?-WIXoG2JY@EFaBfm~|kXb)aVwDPk_8j)IWH3FwHl9d+N)3@KCdIG-`^hydEV zXS*Lslix(XFpfavY~f7z4uFPis=|k|VlwMWgj^h#gBO zGTWmD+HGVtLy7m?8{ieW*%QTUoPC^G!^F7BZK0tk4=k^ za8!MNDA~dOF7m~F>74Nn#np_UL$TYI1V|jM=$DL(DbG#(X#akUsu`5 z?lS63b78yhJH}GY`q(WmfnLF^jB&5m2@0!ZQ&bd~3zbzdhrNBp4I>PG_7urQR8M0E zoCEk$-uX_TvbNW&IaozUFk|Ex{psFkZOOD+AF>z;*+?3m+wM4_73$}y3hNShsmO1V<8aU>13KIn{jdULoZ z(ups+n{&0~6-0Inm{!?rx`|1zoIH)FGW0__SyM7<^_Aob>!@LSt zv5r45n9fo!j+Cugs{-{b;vBOR3dcz|y61Qn9{KElJ6JT%G^O~B)mL9>$Nb+YWjEqK D2%ppY delta 158 zcmbQI_>;N*o)F7a1|VPoVi_Q|0b*7ljsap2C;(z6AT9)AkeU)8W(ML)AWmmwV5kMs zAn~U_HW!e71*AdpUx73bfdPmQQUfxF!7ra7v^cehAu_d?A)sh;7H1lxh~MGGK+%%S QoXo1kl>8!w;LKbG0HJIbf&c&j diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index e5eeebbba1..3080c4ea6b 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 "" @@ -19,35 +19,35 @@ msgstr "" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" -msgstr "" +msgstr "Verificação" #: dashboard_widgets.py:16 msgid "Checked out documents" -msgstr "" +msgstr "Documentos com verificação" #: events.py:10 msgid "Document automatically checked in" -msgstr "" +msgstr "Documento verificado automaticamente" #: events.py:14 msgid "Document checked in" -msgstr "" +msgstr "Documento verificado em" #: events.py:17 msgid "Document checked out" -msgstr "" +msgstr "Documento retirado" #: events.py:20 msgid "Document forcefully checked in" -msgstr "" +msgstr "Documento com verificação forçada" #: exceptions.py:27 views.py:108 msgid "Document already checked out." -msgstr "" +msgstr "Documento já verificado." #: forms.py:28 msgid "Document status" -msgstr "" +msgstr "Status do documento" #: forms.py:39 models.py:41 views.py:148 msgid "User" @@ -55,15 +55,15 @@ msgstr "Utilizador" #: forms.py:43 msgid "Check out time" -msgstr "" +msgstr "Verificado em" #: forms.py:48 msgid "Check out expiration" -msgstr "" +msgstr "Verificar a expiração" #: forms.py:53 msgid "New versions allowed?" -msgstr "" +msgstr "Novas versões permitidas?" #: forms.py:54 msgid "Yes" @@ -75,95 +75,95 @@ msgstr "Não" #: links.py:41 msgid "Check out document" -msgstr "" +msgstr "Verificar o documento" #: links.py:47 msgid "Check in document" -msgstr "" +msgstr "Verificar no documento" #: links.py:52 msgid "Check in/out" -msgstr "" +msgstr "Verificar entrada/saida" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Verificado" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "Verificar entrada/disponível" #: models.py:28 models.py:110 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:31 msgid "Check out date and time" -msgstr "" +msgstr "Verificar data e hora" #: models.py:35 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Quantidade de tempo para reter o documento em minutos." #: models.py:37 msgid "Check out expiration date and time" -msgstr "" +msgstr "Verificar a data e hora de vencimento" #: models.py:46 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Não permitir que nova versão deste documento seja enviada." #: models.py:48 msgid "Block new version upload" -msgstr "" +msgstr "Bloquear envio de nova versão" #: models.py:55 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "documento" #: models.py:56 msgid "Document checkouts" -msgstr "" +msgstr "verificação documentos" #: models.py:64 msgid "Check out expiration date and time must be in the future." -msgstr "" +msgstr "Data e hora de verificação de vencimento deve ser no futuro" #: models.py:116 msgid "New version block" -msgstr "" +msgstr "Nova versão bloqueada" #: models.py:117 msgid "New version blocks" -msgstr "" +msgstr "Nova versão bloqueia" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Verificar documentos" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Forçar a verificação de documentos" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Verificar documentos" #: permissions.py:19 msgid "Check out details view" -msgstr "" +msgstr "Verificar documentos, vista de detalhe" #: queues.py:13 msgid "Checkouts periodic" -msgstr "" +msgstr "Verificar periodicamente" #: queues.py:17 msgid "Check expired checkouts" -msgstr "" +msgstr "Verificar validações expiradas" #: serializers.py:26 msgid "Primary key of the document to be checked out." -msgstr "" +msgstr "Chave primária do documento a ser verificado." #: views.py:37 #, python-format @@ -171,15 +171,17 @@ msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" +"Você não fez a verificação de documentos originalmente neste documento. " +"Forçar a verificação de documento: %s?" #: views.py:41 #, python-format msgid "Check in the document: %s?" -msgstr "" +msgstr "Validadar documento: %s?" #: views.py:74 msgid "Document has not been checked out." -msgstr "" +msgstr "O documento não foi verificado" #: views.py:80 #, python-format @@ -189,40 +191,42 @@ msgstr "" #: views.py:114 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Documento \"%s\" verificado com sucesso" #: views.py:123 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Verificar documento: %s" #: views.py:154 msgid "Checkout time and date" -msgstr "" +msgstr "Verificado em dia e hora" #: views.py:160 msgid "Checkout expiration" -msgstr "" +msgstr "Válido até" #: views.py:168 msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." msgstr "" +"A verificação de um documento bloqueia determinadas operações do " +"documento por um período de tempo predeterminado." #: views.py:172 msgid "No documents have been checked out" -msgstr "" +msgstr "Nenhum documento foi verificado" #: views.py:173 msgid "Documents checked out" -msgstr "" +msgstr "Documentos verificados" #: views.py:188 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Detalhes de verificação do documento: %s" #: widgets.py:25 msgid "Period" -msgstr "" +msgstr "Período" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index a9ddfde7063f24151bed416fd32da26a05c082be..24e53ec093833e557e9f8a1969fac5ba99d3ebb0 100644 GIT binary patch literal 27572 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 NrlC?1byf^6{x4gar0oCz delta 748 zcmY+By=xRf7>D08(In?ba#14UDSHS}QfMJa+9MJW4nLxTf**{xb2?#nM`kxEv?79;Uv`l7CZ_M!ToR%vTs9r zO!Rf3N9bZ|HHb^Q>kz$17UvByvae&9~~e%I7ZbJR_!=X9X%I}X*@DL8|^ zEY=I>;4wa|z{7AIs<9_EpFus~IaHySP+#CRJP1EQHM#|xa2w)Jrb#uRJ$uRj0{!YX zt$J0Tcoch>sDT+$pG*%Qg$m4)YKRA@exI7rn@P7{IG^RxjbmBz*}#Q##3;6jEvzgB zYrxsI9hkMGkY$(HYRF7#rRVxK%We5_q0{q`sg8?sI{SresDY zu0Ep5tXRAMZ;V`F(_F52pX72ix8cqEGp^C<4mXGItlD#ZI!q|9FP~VrXyPz@;W5#_ zXI=29q&A9uG#D*Zu7;bYY~P$Oo3}dCm50LD9zyxboSw5GaD%KcC>Abp4@~TX`~{jp BfUN)k diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 5380f7b28a..7b23c27c03 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 @@ -22,31 +22,31 @@ msgstr "" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" -msgstr "" +msgstr "Comum" #: classes.py:126 msgid "Available attributes: \n" -msgstr "" +msgstr "Atributos disponíveis: \n" #: classes.py:166 msgid "Available fields: \n" -msgstr "" +msgstr "Campos disponíveis: \n" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "" +msgstr "Usado para permitir a tradução off-line das sequências de texto do código." #: dependencies.py:401 msgid "Provides style checking." -msgstr "" +msgstr "Fornece verificação de estilo." #: dependencies.py:406 msgid "Command line environment with autocompletion." -msgstr "" +msgstr "Ambiente de linha de comando com autocompletar." #: dependencies.py:411 msgid "Checks proper formatting of the README file." -msgstr "" +msgstr "Verifica a formatação adequada do arquivo README." #: forms.py:27 msgid "Selection" @@ -62,6 +62,9 @@ msgid "" "the selection is complete, click the button below or double click the list " "to activate the action." msgstr "" +"Selecione as entradas a serem removidas. Mantenha a tecla \"ctrl\" para selecionar várias " +"entradas. Quando a seleção estiver completa, clique no botão abaixo ou clique duas " +"vezes na lista para efectuar a ação" #: generics.py:154 msgid "" @@ -69,10 +72,13 @@ msgid "" "the selection is complete, click the button below or double click the list " "to activate the action." msgstr "" +"Selecione as entradas a serem acrescentadas. Mantenha a tecla \"ctrl\" para selecionar várias " +"entradas. Quando a seleção estiver completa, clique no botão abaixo ou clique duas " +"vezes na lista para efectuar a ação" #: generics.py:287 msgid "Add all" -msgstr "" +msgstr "Adicionar todos" #: generics.py:296 msgid "Add" @@ -80,7 +86,7 @@ msgstr "Adicionar" #: generics.py:306 msgid "Remove all" -msgstr "" +msgstr "Remover todos" #: generics.py:315 msgid "Remove" @@ -89,65 +95,65 @@ msgstr "Remover" #: generics.py:521 #, python-format msgid "Duplicate data error: %(error)s" -msgstr "" +msgstr "Erro, dados duplicados: %(error)s" #: generics.py:543 #, python-format msgid "%(object)s not created, error: %(error)s" -msgstr "" +msgstr "%(object)s não criado, erro: %(error)s" #: generics.py:556 #, python-format msgid "%(object)s created successfully." -msgstr "" +msgstr "%(object)s criado com sucesso." #: generics.py:595 #, python-format msgid "%(object)s not deleted, error: %(error)s." -msgstr "" +msgstr "%(object)s não removido, erro: %(error)s" #: generics.py:604 #, python-format msgid "%(object)s deleted successfully." -msgstr "" +msgstr "%(object)s removido com sucesso." #: generics.py:697 #, python-format msgid "%(object)s not updated, error: %(error)s." -msgstr "" +msgstr "%(object)s não actualizado, erro: %(error)s" #: generics.py:708 #, python-format msgid "%(object)s updated successfully." -msgstr "" +msgstr "%(object)s actualizado com sucesso." #: links.py:36 msgid "About this" -msgstr "" +msgstr "Sobre isto" #: links.py:40 msgid "Locale profile" -msgstr "" +msgstr "Perfil do local" #: links.py:45 msgid "Edit locale profile" -msgstr "" +msgstr "Editar perfil do local" #: links.py:50 msgid "Documentation" -msgstr "" +msgstr "Documentação" #: links.py:54 links.py:65 msgid "Errors" -msgstr "" +msgstr "Erros" #: links.py:59 msgid "Clear all" -msgstr "" +msgstr "Limpar todos" #: links.py:69 msgid "Forum" -msgstr "" +msgstr "Fórum" #: links.py:73 views.py:109 msgid "License" @@ -159,11 +165,11 @@ msgstr "Configuração" #: links.py:79 msgid "Source code" -msgstr "" +msgstr "Código fonte" #: links.py:83 msgid "Support" -msgstr "" +msgstr "Suporte" #: links.py:87 queues.py:15 views.py:210 msgid "Tools" @@ -173,55 +179,64 @@ msgstr "Ferramentas" msgid "" "This feature has been deprecated and will be removed in a future version." msgstr "" +"Este será descontinuado e será removido em uma versão 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 "" +"Seu back-end de banco de dados está configurado para usar o SQLite. O SQLite " +"só deve ser usado para desenvolvimento e teste, não para produção" #: literals.py:34 msgid "Days" -msgstr "" +msgstr "Dias" #: literals.py:35 msgid "Hours" -msgstr "" +msgstr "Horas" #: literals.py:36 msgid "Minutes" -msgstr "" +msgstr "Minutos" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." msgstr "" +"Restringe os dados despejados (dump) ao app_label especificado ou ao 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 "" +"A base de dados do qual os dados serão exportados. Se omitido o nome da base de dados " +"\"default\" será usado" #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." msgstr "" +"A base de dados do qual os dados serão importados. Se omitido o nome da base de dados " +"\"default\" será usado" #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." msgstr "" +"Forçar a conversão da base de dados mesmo se a base de dados que recebe não estiver vazia" #: menus.py:10 msgid "System" -msgstr "" +msgstr "Sistema" #: menus.py:12 menus.py:13 msgid "Facet" -msgstr "" +msgstr "Faceta" #: menus.py:16 msgid "Actions" @@ -229,7 +244,7 @@ msgstr "Ações" #: menus.py:17 msgid "Secondary" -msgstr "" +msgstr "Secondario" #: menus.py:21 models.py:93 msgid "User" @@ -246,23 +261,23 @@ msgstr "Objeto" #: models.py:28 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: models.py:39 models.py:63 msgid "Date time" -msgstr "" +msgstr "Data e tempo" #: models.py:41 views.py:155 msgid "Result" -msgstr "" +msgstr "Resultado" #: models.py:47 msgid "Error log entry" -msgstr "" +msgstr "Error log entry" #: models.py:48 msgid "Error log entries" -msgstr "" +msgstr "Erros (log) registados" #: models.py:59 msgid "File" @@ -274,31 +289,31 @@ msgstr "Nome do ficheiro" #: models.py:67 msgid "Shared uploaded file" -msgstr "" +msgstr "Ficheiro enviado partilhado" #: models.py:68 msgid "Shared uploaded files" -msgstr "" +msgstr "Ficheiro enviado partilhado" #: models.py:97 msgid "Timezone" -msgstr "" +msgstr "Fuso horário" #: models.py:100 msgid "Language" -msgstr "" +msgstr "Língua" #: models.py:106 msgid "User locale profile" -msgstr "" +msgstr "Perfil de localidade do utilizador" #: models.py:107 msgid "User locale profiles" -msgstr "" +msgstr "Perfis de localidade de utilizadores" #: permissions_runtime.py:10 msgid "View error log" -msgstr "" +msgstr "Ver erros (log) registados" #: queues.py:13 msgid "Default" @@ -306,21 +321,23 @@ msgstr "Padrão" #: queues.py:17 msgid "Common periodic" -msgstr "" +msgstr "Periódico comum" #: queues.py:22 msgid "Delete stale uploads" -msgstr "" +msgstr "Excluir uploads antigos" #: settings.py:19 msgid "Automatically enable logging to all apps." -msgstr "" +msgstr "Ativar automaticamente o registro de error para 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 em segundo plano que dependem de uma submissão " +"para a base de dados para propagar." #: settings.py:33 msgid "" @@ -343,34 +360,36 @@ 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 da vista anexada à ligação da marca no menu principal. Essa também é a " +"vista para a qual os utilizadores serão redirecionados após o entrar." #: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Especificar número de objectos que são mostrados por página" #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "" +msgstr "Ativar o registo (log) de erros fora dos recursos de registo de erros do sistema" #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "" +msgstr "Caminho para o arquivo de registo (log) que rastreará erros durante a produção" #: settings.py:82 msgid "Name to be displayed in the main menu." -msgstr "" +msgstr "Nome a ser exibido no menu principal" #: settings.py:88 msgid "URL of the installation or homepage of the project." -msgstr "" +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 "" +msgstr "Um back-end de armazenamento que todos os subprocessos podem usar para partilhar filcheiros" #: settings.py:103 msgid "Django" -msgstr "" +msgstr "Django" #: settings.py:108 msgid "" @@ -386,6 +405,16 @@ msgid "" "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 servir. " +"Essa é uma medida de segurança para impedir ataques de cabeçalho de Host HTTP, que são " +"possíveis mesmo em muitas configurações de servidor da Web aparentemente seguras. Os " +"valores nessa lista podem ser totalmente qualificados nomes (por exemplo, www.example.com ')," +" caso em que eles serão correspondidos exatamente com o cabeçalho do host da solicitação " +"(sem distinção entre maiúsculas e minúsculas, não incluindo porta). Um valor que começa com " +"um ponto pode ser usado como um curinga de subdomínio:'. example.com corresponderá a example.com, " +"a www.example.com ea qualquer outro subdomínio de example.com. Um valor de '*' corresponderá a " +"qualquer coisa. Nesse caso, você é responsável por fornecer sua própria validação do cabeçalho " +"do Host. (talvez em um middleware; se assim for, este middleware deve ser listado primeiro no MIDDLEWARE)." #: settings.py:126 msgid "" @@ -396,12 +425,19 @@ msgid "" "used if CommonMiddleware is installed (see Middleware). See also " "PREPEND_WWW." msgstr "" +"Quando definido como True, se o URL de solicitação não corresponder a nenhum dos padrões no URLconf e não " +"terminar em uma barra, um redirecionamento HTTP será emitido para o mesmo URL com uma barra anexada. Observe " +"que o redirecionamento pode causar quaisquer dados enviados em uma solicitação POST serão perdidos. A " +"configuração APPEND_SLASH será usada somente se o CommonMiddleware estiver instalado (consulte Middleware). " +"Consulte também PREPEND_WWW. " #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" +"A lista de validadores que são usados para verificar a segurança das " +"senhas do Utilizadores." #: settings.py:146 msgid "" @@ -411,6 +447,10 @@ msgid "" "setting must configure a default database; any number of additional " "databases may also be specified." msgstr "" +"Um dicionário contendo as configurações para todas as base de dados a serem usados com o Django. " +"É um dicionário cujo conteúdo mapeia um alias de banco de dados para um dicionário contendo as " +"opções para um banco de dados individual. A configuração DATABASES deve configurar uma base de " +"dados padrão; base de dados também podem ser especificados." #: settings.py:158 msgid "" @@ -426,6 +466,16 @@ msgid "" "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 "" +"Padrão: 2621440 (ou seja, 2,5 MB). O tamanho máximo em bytes que um corpo de solicitação " +"pode ser antes de um SuspiciousOperation (RequestDataTooBig) ser gerado. A verificação é " +"feita ao aceder request.body ou request.POST e é calculada em relação ao total solicitado " +"tamanho que exclui dados de upload de arquivo. Você pode definir isso como Nenhum para desabilitar " +"a verificação. Os aplicativos que devem receber mensagens de formulário incomumente grandes devem " +"ajustar essa configuração. A quantidade de dados de solicitação é correlacionada à quantidade de " +"memória necessária para processar a solicitação. e preencher os dicionários GET e POST.Grandes pedidos " +"podem ser usados como um vetor de ataque de negação de serviço se não forem verificados.Como os servidores " +"da Web normalmente não executam a inspeção profunda de solicitações, não é possível executar uma " +"verificação semelhante nesse nível. Veja também FILE_UPLOAD_MAX_MEMORY_SIZE. " #: settings.py:178 msgid "" @@ -433,6 +483,9 @@ msgid "" "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" +"Padrão: 'webmaster @ localhost' Endereço de email padrão a ser usado para " +"várias correspondências automatizadas do(s) administradore(s) do site. Isso " +"não inclui mensagens de erro enviadas a ADMINS e MANAGERS; para isso, consulte SERVER_EMAIL." #: settings.py:188 msgid "" @@ -441,16 +494,22 @@ msgid "" "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." msgstr "" +"Padrão: [] (Empty list). Lista de objetos de expressões regulares compiladas " +"representando strings User-Agent que não têm permissão para visitar qualquer " +"página, em todo o sistema. Use isto para robôs / crawlers ruins. Isso é usado " +"somente se o CommonMiddleware estiver instalado Middleware)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" +"Padrão: 'django.core.mail.backends.smtp.EmailBackend'. O backend a ser " +"usado para enviar e-mails." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." -msgstr "" +msgstr "Padrão: 'localhost'. O host a ser usado para enviar email." #: settings.py:214 msgid "" @@ -459,22 +518,30 @@ msgid "" "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." msgstr "" +"Padrão: '' (vazio). Senha a ser usada para o servidor SMTP definido em " +"EMAIL_HOST. Essa configuração é usada em conjunto com EMAIL_HOST_USER " +"ao autenticar no servidor SMTP. Se qualquer uma dessas configurações " +"estiver vazia, o Django não tentará 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 "" +"Padrão: '' (vazio). Nome de utilizador para usar no servidor SMTP definido " +"em EMAIL_HOST. Se vazio, o Django não tentará autenticação." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "" +msgstr "Padrão: 25. Porta a ser 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 "" +"Padrão: None. Especifica um tempo limite em segundos para operações de " +"bloqueio, como a tentativa de conexão." #: settings.py:249 msgid "" @@ -483,6 +550,10 @@ msgid "" "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" +"Padrão: False. Se usar uma conexão TLS (segura) ao falar com o servidor SMTP. " +"Isso é usado para conexões TLS explícitas, geralmente na porta 587. Se você " +"estiver com conexões interrompidas, consulte a configuração implícita de " +"TLS EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -493,6 +564,12 @@ msgid "" "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." msgstr "" +"Padrão: False. Se usar uma conexão TLS (segura) implícita ao falar com o servidor " +"SMTP. Na maioria das documentações de email, esse tipo de conexão TLS é chamado " +"de SSL. Geralmente, é usado na porta 465. Se você estiver tendo problemas, " +"consulte a configuração TLS explícita EMAIL_USE_TLS. Observe que EMAIL_USE_TLS " +"/ EMAIL_USE_SSL são mutuamente exclusivos, portanto, defina apenas uma dessas " +"configurações como True." #: settings.py:271 msgid "" @@ -500,6 +577,9 @@ msgid "" "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" +"Padrão: 2621440 (ou seja, 2,5 MB). O tamanho máximo (em bytes) que um upload " +"será antes de ser transmitido para o sistema de ficheiros. Consulte gestão " +"ficheiros para obter detalhes. Consulte também DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" @@ -509,6 +589,12 @@ msgid "" "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" +"Padrão: '/accounts/login/' A URL onde as solicitações são redirecionadas " +"para entrar, especialmente quando se usa o decorador login_required(). Essa " +"configuração também aceita padrões de URL nomeados que podem ser usados para " +"reduzir a duplicação de configuração, já que você não precisa defenir o URL " +"em dois lugares (settings e URLconf). " + #: settings.py:293 msgid "" @@ -518,6 +604,12 @@ msgid "" "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 "" +"Padrão: '/accounts/profile/' A URL onde as solicitações são redirecionadas " +"após o login quando a visualização contrib.auth.login não recebe o próximo " +"parâmetro. Isso é usado pelo decorador login_required(), por exemplo. Essa " +"configuração também aceita URLs nomeadas padrões que podem ser usados para " +"reduzir a duplicação de configuração, já que você não precisa definir o URL " +"em dois lugares (settings e URLconf). " #: settings.py:305 msgid "" @@ -528,6 +620,12 @@ msgid "" "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" +"Padrão: None. A URL em que as solicitações são redirecionadas depois que um utilizador " +"termina sessao usando LogoutView (se a exibição não obtiver um argumento next_page). Se " +"None, nenhum redirecionamento será executado e a exibição de logout será renderizada. " +"Essa configuração também aceita padrões de URL nomeados que podem ser usados para reduzir " +"a duplicação de configuração, já que você não precisa definir o URL em dois lugares " +"(configurações e URLconf). " #: settings.py:318 msgid "" @@ -536,6 +634,10 @@ msgid "" "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" +"Uma lista de endereços IP, como strings, que: Permitem que o processador de contexto " +"debug() adicione algumas variáveis ao contexto do modelo. Pode usar os bookmarklets " +"admindocs mesmo se não estiver logado como utilizador da equipa. São marcados como " +"\"internal\"(ao contrário de \"EXTERNAL\") em emails AdminEmailHandler." #: settings.py:329 msgid "" @@ -545,6 +647,11 @@ msgid "" "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 "" +"Uma lista de todos os idiomas disponíveis. A lista é uma lista de duas tuplas no " +"formato (código do idioma, nome do idioma), por exemplo, ('ja', 'Japonês'). " +"Isso especifica quais idiomas estão disponíveis para seleção de idioma. Geralmente, " +"o valor padrão deve ser suficiente. Somente defina essa configuração se você quiser " +"restringir a seleção de idioma para um subconjunto dos idiomas fornecidos pelo Django." #: settings.py:342 msgid "" @@ -557,6 +664,14 @@ msgid "" "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." msgstr "" +"Uma string que representa o código de idioma para esta instalação. Deve estar " +"no formato de ID de idioma padrão. Por exemplo, o inglês dos EUA é \"en-us\". Ele " +"serve a duas finalidades: Se o middleware de localidade não estiver em uso, ele " +"decide qual tradução é veiculada para todos os usuários. Se o middleware de localidade " +"estiver ativo, ele fornecerá um idioma de fallback caso o idioma preferencial do usuário " +"não possa ser determinado ou não seja suportado pelo site. Ele também fornece a tradução " +"de fallback quando uma tradução para um determinado literal não existe para o idioma " +"preferido do usuário. " #: settings.py:357 msgid "" @@ -565,6 +680,10 @@ msgid "" "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 ser usado ao se referir a arquivos estáticos localizados em STATIC_ROOT. " +"Exemplo: \"/static/\" ou \"http://static.example.com/\"Se não for None, ele será " +"usado como o caminho base para definições de ativos (a classe Media) e o aplicativo " +"staticfiles. Ele deve terminar em uma barra se configurado para um valor não vazio. " #: settings.py:368 msgid "" @@ -573,6 +692,11 @@ msgid "" "backend defined in this setting can be found at " "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" +"O mecanismo de armazenamento de arquivos a ser usado ao coletar arquivos " +"estáticos com o comando de gerenciamento collectstatic. Uma instância " +"pronta para uso do back-end de armazenamento definido nessa configuração " +"pode ser encontrada em " +"django.contrib.staticfiles.storage.staticfiles_storage." #: settings.py:378 msgid "" @@ -580,6 +704,10 @@ msgid "" "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 "" +"Uma string representando o fuso horário para esta instalação. Note que este " +"não é necessariamente o fuso horário do servidor. Por exemplo, um servidor " +"pode servir vários sites com Django, cada um com uma configuração separada de " +"fuso horário." #: settings.py:388 msgid "" @@ -588,10 +716,14 @@ msgid "" "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." msgstr "" +"O caminho Python completo do objeto de aplicativo WSGI que os servidores " +"integrados do Django (por exemplo, runserver) usarão. O comando django-admin " +"startproject management criará um arquivo wsgi.py simples com um aplicativo " +"que pode ser chamado nele e apontará essa configuração para essa aplicação. " #: settings.py:396 msgid "Celery" -msgstr "" +msgstr "Celery" #: settings.py:401 msgid "" @@ -600,6 +732,10 @@ msgid "" " (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" +"Padrão: \"amqp://\" URL padrão do broker. Esta deve ser uma URL na forma de: " +"transport://userid:senha@hostname:port/virtual_host Somente a parte do esquema " +"(transport://) é obrigatório, o restante é opcional e é padronizado para os " +"valores padrão de transportes específicos. " #: settings.py:411 msgid "" @@ -608,6 +744,10 @@ msgid "" "http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" "backend" msgstr "" +"Padrão: nenhum back-end de resultado ativado por padrão. O back-end usado para " +"armazenar os resultados da tarefa (lápides). Consulte" +"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" +"backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -616,7 +756,7 @@ msgstr "Confirmar eliminação" #: templatetags/common_tags.py:36 #, python-format msgid "Edit %s" -msgstr "" +msgstr "Editar %s" #: templatetags/common_tags.py:39 msgid "Confirm" @@ -625,12 +765,12 @@ msgstr "Confirmar" #: templatetags/common_tags.py:43 #, python-format msgid "Details for: %s" -msgstr "" +msgstr "Detalhes para: %s" #: templatetags/common_tags.py:47 #, python-format msgid "Edit: %s" -msgstr "" +msgstr "Editar: %s" #: templatetags/common_tags.py:50 msgid "Create" @@ -641,50 +781,54 @@ msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." msgstr "" +"Digite um 'nome interno' válido, composto de letras, números e " +"sublinhados '_'." #: views.py:31 msgid "About" -msgstr "" +msgstr "Sobre" #: views.py:44 msgid "Current user locale profile details" -msgstr "" +msgstr "Detalhes do perfil de localidade do utilizador atual" #: views.py:50 msgid "Edit current user locale profile details" -msgstr "" +msgstr "Editar detalhes do perfil de localidade do utilizador atual" #: views.py:100 msgid "Dashboard" -msgstr "" +msgstr "Painel de controle" #: views.py:118 #, python-format msgid "Clear error log entries for: %s" -msgstr "" +msgstr "Limpar entradas do registo (log) de erros para:% s" #: views.py:135 msgid "Object error log cleared successfully" -msgstr "" +msgstr "Registo (log) de erro do objeto limpo com sucesso" #: views.py:154 msgid "Date and time" -msgstr "" +msgstr "Data e tempo" #: views.py:159 #, python-format msgid "Error log entries for: %s" -msgstr "" +msgstr "Registo (log) erros para: %s" #: views.py:187 msgid "No setup options available." -msgstr "" +msgstr "Nenhuma opção de configuração disponível" #: views.py:189 msgid "" "No results here means that don't have the required permissions to perform " "administrative task." msgstr "" +"Nenhum resultado aqui significa que não tenha as permissões necessárias para " +"realizar tarefas administrativas." #: views.py:195 msgid "Setup items" @@ -692,11 +836,11 @@ msgstr "Itens de configuração" #: views.py:197 msgid "Here you can configure all aspects of the system." -msgstr "" +msgstr "Aqui você pode configurar todos os aspectos do sistema." #: views.py:212 msgid "These modules are used to do system maintenance." -msgstr "" +msgstr "Esses módulos são usados para fazer a manutenção do sistema." #: views.py:240 msgid "No action selected." diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo index 25aeb40e335584a3a95aa75ba2a0cf0505b089fa..7d6e1a455fcd7132426d1a38b30a1eac06a34228 100644 GIT binary patch literal 4180 zcmbuB&yO5O6~~J>5VQO?0UUm%vS52nJhQuofIZd5!1;K@XfX}P$+1c@qBSo~j z`!ikL_3G7ouj)Im9(wTGisJ;=2f6ONL8&wFFAs3z`27K;-Ut5x-wgi>JMdr4^U(*D zdW7c%_!#^wd_PPfr}`?lH^GhaRR7_27XBAL3_tP4+TJC2o#!r`gTIE0 z@NZE1J&e(}!AIan;4yd%ehwal0dlH4+~oTg;UV}nDE@s9VoLoA7VtNaQ_VkA^OI1% zUuw7t-^Ftmz8zNZ9q=pgMffc!aXQT4(!KyU;8}PM-i056|A6Ap0fN~l)(4@)EuT?} zQ+<=$GWf)WzyF3Z&x3EN^K=3-q`Cw#sXh-c!e`)NxC3QAuRyW)J1G7=^w!#s zN8!^vFTvCBJMb+0Bb2xtBDfOY!`xc%D3rXfLmBVuP{#i*l==J+O8$NXWuC7XXWPWmppAW=e_3dNe16-1i16*@lk8>U6 zI>sdjVUBSojPW?ZUFI#miC=Pv|5|=D$9tgEmgM^gm#o8&a*YnjyTszdT!bMW#~U*3 z`j|ZuW_9LEZS@mj-SdSmH?8g$Cf{`3 zpu0ZXvPF<@Hca=X&62isrLDAuI$u~*TAkT#T^1$_bRR^6_kSZpbo3D%xL;p+<#Tnx zrna;V?lG@tkIYRDc%1pxmgjJ}WQt$(8_(Kqc|3f2x{aWg6IaID|6_fc0ZijUu^arS z&#hdRJXE&bypb52Q7(3)J~<_A0v2N5#C0Vd1Zh>M zr|w@Jy7ZV}o|oN5VXyXju1kGTh%O7INmH9>N=zDh_(U;XcA12tR4cA1e4(zGfmK)h zJt+w^QOp!-ZL#N4D`BJB+UjbNP>b=-FnXK9-HcT{8PA}%nU&tK+TOC=sFrB*g5DnofRd zU(@Mv%lhQXnS2cDo@Y%E{kD$oN~WZewp^%8s!g6-gE1oRdphymda2`hx#_D?56n&J zky9TgV};a4Y>=FZnNbfNqf5&m*mTQ=_C6m*YxsH=HcgRZIf!X>y>zK7Z|h#+2hn8i z@u_H4v-iRz?pbk}pr&FXQSW{oy<%=t8p{_}uFb63+!tkQ zCG=g=da~+=*1GTLnboVUHA^m7sjUlCL`R=oSUlZYc%rrNalPbcFb%scb*+uPf1f|mu?v$xt^ zKbSA-zQz1N{A}4|5a!dy&U{|ZAD>ydw6Z*&&SHCEhK*cy%GUbr9A``NF`uW#WoM)^ zieSs7>+2U=r^esKSP|>xtm_k^*U_goT)FFSN9X0tDm#QpTNhcJp`)`rK8B@}XLS8@ zX)e=`E$PMMXJ%9_Q^UJn4}YSofr&C@5=3jbgKC+vVELe~=EENke@SU1vY|EVMH9Vq z%3k}CLNydpe%Euz{* zc7`rVvuZhY?8T;_Vc>CS@=KhXDr7Pp#+agHQ_T>Qs6q@QlE$Pa{CWMOOtT_`TyTAd z+*bqH5!uFTU5lym?a^D0YBkEn&zPBg0VaO~bYh?pHdf1UhpLa(*pY2#s=C#Qey(Dh zY81|(j-vG}6bxCN4|n>+I%po*M|S1zb@Z%)$r84mvHIO`1!0|(zbETILa$L~^|Y~8 zpiX*13Z)`#D2F?ZA{xf?mCmHS=N&6R=2XzUM;n*f#L`WV2qKQxnBPQ#B{f&1e_TY( zh8gR=R?Au;2T>sh5*>*mak|%t4z`HyMR{ZyhPJ+jde^QMbTlb{F670DaS=%5ZQ__l zl+ED|y6K~-9c{|OZB)ab$z;~}h`*k)I}*_~pN#HNG5Nz;g}POXT<(2FE9=Mgz02&b z-y=)SvO70rQX+R$?Z|ogS7xZn;ZL)!W2331Goe&R^2g7>=RNa0>$RS7ZGNnrY(g2k zPBHvNE|qJF=PI{F#O172mkI9+Z?mj}S{d$yu54K`w5I0>X(Md)Qos;m=~-(N0!l%} zH}s6!>56gDlZM8P5XFueM9Jh&J+9V&m7<`IBy`$HV;$WyR4t(~Z4*PFqy%W+ETgib KDimeZ(*FS<#pbjC delta 273 zcmXYrJqiLb5JqR$^$)SJw(ta=!n9i~3bNfo1`TWya8ucM0b5UEqn(Y7onT?3m+%69 z$!6f?4ViC3UbA0z_)fADq55D7mS6;qz}E%zz!hZR7JY~P{UiDr@89qyA^N}rAksFM z!+w7SkKq#T60K<)2L{GoC=5c_f65m|)CpbtSZEhqvttrcIm#=|RB)sAkad;gb2>E1 cT+~V{Q|&?u%5BI=rP(yf`bl9W&eB>, 2011 # Renata Oliveira , 2011 @@ -22,48 +22,50 @@ msgstr "" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" -msgstr "" +msgstr "Conversor" #: apps.py:31 models.py:57 msgid "Transformation" -msgstr "" +msgstr "Transformação" #: backends/python.py:175 backends/python.py:181 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "" +msgstr "Exceção que determina a contagem de páginas em PDF; %s" #: backends/python.py:195 #, python-format msgid "Exception determining page count using Pillow; %s" -msgstr "" +msgstr "Exceção que determina a contagem de páginas usando Pillow; %s" #: classes.py:118 msgid "LibreOffice not installed or not found." -msgstr "" +msgstr "O LibreOffice não está instalado ou não foi encontrado." #: classes.py:201 msgid "Not an office file format." -msgstr "" +msgstr "Não é um formato de office." #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "" +msgstr "Utilitário do pacote poppler-utils usado para inspecionar arquivos PDF." #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." msgstr "" +"Utilitário do pacote popper-utils usado para extrair páginas de arquivos " +"PDF em imagens no formato PPM." #: forms.py:28 #, python-format msgid "\"%s\" not a valid entry." -msgstr "" +msgstr "\"%s\" não é uma entrada válida." #: links.py:36 msgid "Create new transformation" -msgstr "" +msgstr "Criar nova transformação" #: links.py:42 msgid "Delete" @@ -75,17 +77,19 @@ msgstr "Editar" #: links.py:53 models.py:58 msgid "Transformations" -msgstr "" +msgstr "Transformações" #: models.py:37 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." msgstr "" +"Ordem em que as transformações serão executadas. Se não forem alteradas, " +"um valor de pedido automático será atribuído." #: models.py:39 msgid "Order" -msgstr "" +msgstr "Ordem" #: models.py:43 msgid "Name" @@ -96,54 +100,56 @@ msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" msgstr "" +"Digite os argumentos para a transformação como um dicionário YAML. Ie:" +"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" -msgstr "" +msgstr "Argumentos" #: permissions.py:10 msgid "Create new transformations" -msgstr "" +msgstr "Criar novas transformações" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Remover transformações" #: permissions.py:16 msgid "Edit transformations" -msgstr "" +msgstr "Editar transformações" #: permissions.py:19 msgid "View existing transformations" -msgstr "" +msgstr "Ver transformações existentes" #: settings.py:16 msgid "Graphics conversion backend to use." -msgstr "" +msgstr "Backend de conversão de gráficos para usar." #: settings.py:35 msgid "Configuration options for the graphics conversion backend." -msgstr "" +msgstr "Opções de configuração para o backend de conversão de gráficos." #: transformations.py:81 msgid "Crop" -msgstr "" +msgstr "Recorte" #: transformations.py:156 msgid "Flip" -msgstr "" +msgstr "Virar" #: transformations.py:167 msgid "Gaussian blur" -msgstr "" +msgstr "Gaussian blur" #: transformations.py:177 msgid "Line art" -msgstr "" +msgstr "Line art" #: transformations.py:188 msgid "Mirror" -msgstr "" +msgstr "Espelho" #: transformations.py:199 msgid "Resize" @@ -155,19 +161,19 @@ msgstr "Rodar" #: transformations.py:252 msgid "Rotate 90 degrees" -msgstr "" +msgstr "Rodar 90 graus" #: transformations.py:263 msgid "Rotate 180 degrees" -msgstr "" +msgstr "Rodar 180 graus" #: transformations.py:274 msgid "Rotate 270 degrees" -msgstr "" +msgstr "Rodar 270 graus" #: transformations.py:284 msgid "Unsharp masking" -msgstr "" +msgstr "Máscara não afiada" #: transformations.py:300 msgid "Zoom" @@ -175,34 +181,36 @@ msgstr "Zoom" #: validators.py:26 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Digite um valor YAML válido." #: views.py:72 #, python-format msgid "Create new transformation for: %s" -msgstr "" +msgstr "Criar nova transformação para: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" +msgstr "Remover transformação \"%(transformation)s\" para: %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" +msgstr "Editar transformação \"%(transformation)s\" para: %(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 "" +"As transformações permitem alterar a aparência visual dos documentos sem " +"fazer alterações permanentes no próprio arquivo do documento." #: views.py:231 msgid "No transformations" -msgstr "" +msgstr "Sem transformações" #: views.py:232 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "transformações para: %s" diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.mo index d4d488daa284ac56b8f8c545ea655d437cd932a0..3bed6c8bbf48bc903a14adebdcdc1c77bc1290f7 100644 GIT binary patch delta 195 zcmeyz^pCmzo)F7a1|VPoVi_Q|0b*7ljsap2C;(zEAT9)AkeV7G<^keHAa-G7VCVzV z!a#f($mRsn&w(^Z{v(hEA_gWP1_6*>W)Q`2C0F8jlFJ+01$=-ZvX%Q diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po index aefccb84bc..949df0163d 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 "" @@ -19,12 +19,12 @@ msgstr "" #: apps.py:14 msgid "Dashboards" -msgstr "" +msgstr "Paineis de controle" #: dashboards.py:7 msgid "Main" -msgstr "" +msgstr "Principal" #: templates/dashboards/numeric_widget.html:27 msgid "View details" -msgstr "" +msgstr "Ver detalhes" diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.mo index 9890f33b7012ed4310a5ddfe4b9b217535c7be02..820a6959141009a0ca943f3dbab509a073b34a76 100644 GIT binary patch literal 6823 zcmcJTU5q4E700g%q62>62grwBkd<9`yJvUUWtUkNnBAS-4D8HK*ntEzS!=p(cNbe- zx2cbwZQ=uBlwc&jK%!zy7Gek_3lcO2ABd(QF;T<^3^7Kc7{4A&G(4IRf9KY%>h4`O z@rBCN{Hv;OoqO&%|8wrY`;CjwdsJ~8;Jku!=X;g93p{cj|2TehzET&1&w=j)Ujp9` z{u1O*z3TCI;K#WCgTMb5xWxTi;N9RpUiu*T9q>Z%aquJHGvGzwi{K~0UxD|5e+EAX ze(3_GwuASBV*fc%-XDSdsaO5|>!8^Ci+}zWsJZ_y_;K)x50vk12Os4AMsNds3H-j? z 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 delta 319 zcmXYrs}9026o$`WToMuln%CGHkYLDyLSY7J!jf%W)=lpn2y+C3n8VEA5EH-yAOVBI zV2}v@)9oZ*|6b15Hn+~L^f53qLUq9q%s~%q0oMia`U*PW2HM~bTHpmt@UHWNyV~1ovN5V_#P)(?)4~|H_;Dm&)tBDay{Sa^P1^i(y?&XirNT_AxhOsLH z%wxy(6pbU9go-B4LU?35z93r$f@UI8+%}DhXMbZ@m0ITIUTW1_33iiEDhS%*K?JMB I*D^Q$0Xq&nCIA2c diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index a224bc7a4f..289fe16302 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 "" @@ -25,7 +25,7 @@ msgstr "" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" -msgstr "" +msgstr "Dependências" #: apps.py:33 apps.py:68 apps.py:76 msgid "Label" @@ -33,7 +33,7 @@ msgstr "Nome" #: apps.py:36 msgid "Internal name" -msgstr "" +msgstr "Nome interno" #: apps.py:39 apps.py:71 apps.py:80 msgid "Description" @@ -41,15 +41,15 @@ msgstr "Descrição" #: apps.py:43 classes.py:172 msgid "Type" -msgstr "" +msgstr "Tipo" #: apps.py:47 classes.py:174 msgid "Other data" -msgstr "" +msgstr "Outros dados" #: apps.py:51 msgid "Declared by" -msgstr "" +msgstr "Declarado por" #: apps.py:55 classes.py:172 msgid "Version" @@ -57,41 +57,47 @@ msgstr "Versão" #: apps.py:59 classes.py:173 classes.py:809 msgid "Environment" -msgstr "" +msgstr "Ambiente" #: apps.py:63 classes.py:174 msgid "Check" -msgstr "" +msgstr "Verifica" #: classes.py:65 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" +"Ambiente usado para construir pacotes redistribuíveis do software. " +"Utilizadores finais podem ignorar dependências ausentes neste ambiente." #: classes.py:68 msgid "Build" -msgstr "" +msgstr "Build" #: classes.py:72 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" +"Ambiente usado para desenvolvedores fazerem alterações de código. Utilizadores " +"finais podem ignorar dependências ausentes neste ambiente." #: classes.py:74 msgid "Development" -msgstr "" +msgstr "Desenvolvimento" #: classes.py:78 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" +"Ambiente normal para utilizadores finais. As dependências ausentes neste " +"ambiente resultarão em problemas e erros durante o uso normal." #: classes.py:80 msgid "Production" -msgstr "" +msgstr "Produção" #: classes.py:84 msgid "" @@ -99,10 +105,12 @@ msgid "" "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" +"Ambiente usado para executar o teste para verificar a funcionalidade do " +"código. Dependências neste ambiente não são necessárias para uso normal de produção." #: classes.py:87 msgid "Testing" -msgstr "" +msgstr "Testes" #: classes.py:172 msgid "Name" @@ -110,37 +118,37 @@ msgstr "Nome" #: classes.py:173 msgid "App" -msgstr "" +msgstr "App" #: classes.py:274 msgid "Need to specify at least one: app_label or module." -msgstr "" +msgstr "Precisa especificar pelo menos um: app_label ou modulo." #: classes.py:279 #, python-format msgid "Dependency \"%s\" already registered." -msgstr "" +msgstr "Dependência \"%s\" já registrada." #: classes.py:305 #, python-format msgid "Installing package: %s... " -msgstr "" +msgstr "Instalando o pacote:%s ..." #: classes.py:310 msgid "Already installed." -msgstr "" +msgstr "Já instalado." #: classes.py:313 classes.py:318 classes.py:322 msgid "Complete." -msgstr "" +msgstr "Completo." #: classes.py:348 msgid "Installed and correct version" -msgstr "" +msgstr "Versão instalada e correta" #: classes.py:350 msgid "Missing or incorrect version" -msgstr "" +msgstr "Versão ausente ou incorreta" #: classes.py:379 msgid "None" @@ -148,41 +156,43 @@ msgstr "Nenhum" #: classes.py:388 msgid "Not specified" -msgstr "" +msgstr "Não especificado" #: classes.py:405 msgid "Patching files... " -msgstr "" +msgstr "Corrigindo ficheiros ..." #: classes.py:440 msgid "Executables that are called directly by the code." -msgstr "" +msgstr "Executáveis que são chamados diretamente pelo código." #: classes.py:442 msgid "Binary" -msgstr "" +msgstr "Binário" #: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" +"Bibliotecas Javascript baixaram o registro do NPM e usaram para funcionalidade " +"front-end." #: classes.py:462 -msgid "JavaScript" -msgstr "" +msgid "Javascript" +msgstr "Javascript" #: classes.py:496 classes.py:729 msgid "Downloading... " -msgstr "" +msgstr "Baixar..." #: classes.py:499 msgid "Verifying... " -msgstr "" +msgstr "Verificando... " #: classes.py:502 classes.py:732 msgid "Extracting... " -msgstr "" +msgstr "Extraindo ..." #: classes.py:681 msgid "Python packages downloaded from PyPI." @@ -190,37 +200,39 @@ msgstr "" #: classes.py:683 msgid "Python" -msgstr "" +msgstr "Pacotes Python baixados do PyPI." #: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." -msgstr "" +msgstr "Fontes baixadas de fonts.googleapis.com." #: classes.py:712 msgid "Google font" -msgstr "" +msgstr "Fontest Google" #: classes.py:791 msgid "Declared in app" -msgstr "" +msgstr "Declarado no aplicativo" #: classes.py:792 -msgid "Show dependencies by the app that declared them." -msgstr "" +msgid "Show depedencies by the app that declared them." +msgstr "Mostrar dependências pelo aplicativo que as declarou." #: classes.py:796 msgid "Class" -msgstr "" +msgstr "Classe" #: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" +"Mostre as diferentes classes de dependências. As classes são geralmente " +"divididas por linguagem ou pelos tipos de arquivo da dependência." #: classes.py:802 msgid "State" -msgstr "" +msgstr "Estado" #: classes.py:803 msgid "" @@ -228,16 +240,21 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" +"Mostrar os diferentes estados das dependências. True significa que as " +"dependências estão instaladas e são de uma versão correta. False " +"significa que as depedências estão faltando ou que uma versão incorreta está presente." #: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Dependências necessárias para um ambiente podem não ser necessárias para outro." +"Exemplo de ambientes: produção, desenvolvimento." #: links.py:11 views.py:35 msgid "Check for updates" -msgstr "" +msgstr "Verificar atualizações" #: links.py:17 msgid "Groups" @@ -245,7 +262,7 @@ msgstr "Grupos" #: links.py:25 msgid "Entries" -msgstr "" +msgstr "Entradas" #: links.py:33 msgid "Details" @@ -253,68 +270,71 @@ msgstr "Detalhes" #: links.py:38 msgid "Dependencies licenses" -msgstr "" +msgstr "Licenças de dependências" #: management/commands/generaterequirements.py:16 msgid "" "Comma separated names of dependencies to exclude from the list generated." msgstr "" +"Separados por vírgula nomes de dependências para excluir da lista gerada." #: management/commands/generaterequirements.py:22 msgid "" "Comma separated names of dependencies to show in the list while excluding " "every other one." msgstr "" +"Nomes separados por vírgulas de dependências para mostrar na lista, " +"excluindo todos os outros." #: management/commands/installjavascript.py:15 msgid "Process a specific app." -msgstr "" +msgstr "Processar um aplicativo específico." #: management/commands/installjavascript.py:19 msgid "Force installation even if already installed." -msgstr "" +msgstr "Forcar a instalação, mesmo se já estiver instalado." #: permissions.py:10 msgid "View dependencies" -msgstr "" +msgstr "Ver dependências" #: views.py:23 #, python-format msgid "The version you are using is outdated. The latest version is %s" -msgstr "" +msgstr "A versão que você está usando está desatualizada. A última versão é %s" #: views.py:28 msgid "It is not possible to determine the latest version available." -msgstr "" +msgstr "Não é possível determinar a versão mais recente disponível." #: views.py:32 msgid "Your version is up-to-date." -msgstr "" +msgstr "Sua versão está atualizada." #: views.py:49 #, python-format msgid "Entries for dependency group: %s" -msgstr "" +msgstr "Entradas para o grupo de dependência: %s" #: views.py:62 views.py:107 #, python-format msgid "Group %s not found." -msgstr "" +msgstr "Grupo %s não encontrado" #: views.py:75 msgid "Dependency groups" -msgstr "" +msgstr "Grupos de dependência" #: views.py:95 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" -msgstr "" +msgstr "Grupo de Dependência e Entrada: %(group)s, %(entry)s" #: views.py:119 #, python-format msgid "Entry %s not found." -msgstr "" +msgstr "Entrada %s não encontrada" #: views.py:137 msgid "Other packages licenses" -msgstr "" +msgstr "Outras licenças de pacotes" diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.mo index 5d77811aa247ef24fb72fcf23ed0f3f6651835f3..b3fa50c22622bfbdb8d28b34fea5294cab210c05 100644 GIT binary patch literal 5255 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 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 9e830fa94a..cea9c63950 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 @@ -21,7 +21,7 @@ msgstr "" #: apps.py:33 msgid "Django GPG" -msgstr "" +msgstr "Django GPG" #: apps.py:48 apps.py:51 forms.py:17 msgid "Key ID" @@ -29,27 +29,27 @@ msgstr "ID da chave" #: apps.py:52 forms.py:34 models.py:55 msgid "Type" -msgstr "" +msgstr "Tipo" #: apps.py:54 forms.py:23 models.py:36 msgid "Creation date" -msgstr "" +msgstr "Data de criação" #: apps.py:57 msgid "No expiration" -msgstr "" +msgstr "Sem prazo de validade" #: apps.py:58 forms.py:27 models.py:40 msgid "Expiration date" -msgstr "" +msgstr "Data de validade" #: apps.py:60 forms.py:32 models.py:47 msgid "Length" -msgstr "" +msgstr "Comprimento" #: apps.py:63 forms.py:19 models.py:52 msgid "User ID" -msgstr "" +msgstr "ID Utilizador" #: forms.py:28 msgid "None" @@ -57,11 +57,11 @@ msgstr "Nenhum" #: forms.py:31 models.py:44 msgid "Fingerprint" -msgstr "" +msgstr "Impressão digital" #: forms.py:33 models.py:50 msgid "Algorithm" -msgstr "" +msgstr "Algoritmo" #: forms.py:47 msgid "Term" @@ -89,7 +89,7 @@ msgstr "Consultar servidores de chaves" #: links.py:32 msgid "Import" -msgstr "" +msgstr "Importar" #: links.py:37 permissions.py:7 msgid "Key management" @@ -97,15 +97,15 @@ msgstr "Gestão de chaves" #: links.py:41 msgid "Upload key" -msgstr "" +msgstr "Enviar chave" #: links.py:44 views.py:176 msgid "Private keys" -msgstr "" +msgstr "Chaves privadas" #: links.py:48 views.py:200 msgid "Public keys" -msgstr "" +msgstr "Chaves públicas" #: literals.py:6 literals.py:14 msgid "Public" @@ -153,27 +153,27 @@ msgstr "O documento está assinado com uma assinatura válida." #: models.py:32 msgid "ASCII armored version of the key." -msgstr "" +msgstr "Versão blindada ASCII da chave." #: models.py:33 msgid "Key data" -msgstr "" +msgstr "Dados da chave" #: models.py:61 msgid "Key" -msgstr "" +msgstr "Chave" #: models.py:62 msgid "Keys" -msgstr "" +msgstr "Chaves" #: models.py:74 msgid "Invalid key data" -msgstr "" +msgstr "Dados chave inválidos" #: models.py:77 msgid "Key already exists." -msgstr "" +msgstr "Chave já existe" #: permissions.py:10 msgid "Delete keys" @@ -189,11 +189,11 @@ msgstr "Importar chaves de servidores de chaves" #: permissions.py:19 msgid "Use keys to sign content" -msgstr "" +msgstr "Use as chaves para assinar conteúdo" #: permissions.py:22 msgid "Upload keys" -msgstr "" +msgstr "Enviar chaves" #: permissions.py:25 msgid "View keys" @@ -209,26 +209,26 @@ msgstr "Diretório usado para guardar as chaves e os ficheiros de configuração #: settings.py:22 msgid "Path to the GPG binary." -msgstr "" +msgstr "Caminho para o binário GPG" #: settings.py:26 msgid "Keyserver used to query for keys." -msgstr "" +msgstr "Keyserver usado para consultar chaves." #: views.py:35 #, python-format msgid "Delete key: %s" -msgstr "" +msgstr "Apagar chave: %s" #: views.py:51 #, python-format msgid "Details for key: %s" -msgstr "" +msgstr "Detalhes de chave: %s" #: views.py:71 #, python-format msgid "Import key ID: %s?" -msgstr "" +msgstr "Importar chave com o ID: %s?" #: views.py:72 msgid "Import key" @@ -237,26 +237,28 @@ msgstr "Importar chave" #: views.py:81 #, python-format msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "" +msgstr "Não foi possível importar a chave: %(key_id)s; %(error)s" #: views.py:89 #, python-format msgid "Successfully received key: %(key_id)s" -msgstr "" +msgstr "Chave recebida com sucesso: %(key_id)s" #: views.py:106 msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." msgstr "" +"Use nomes, sobrenomes, ids de chaves ou e-mails para pesquisar chaves " +"públicas para importar do servidor de chaves." #: views.py:110 msgid "No results returned" -msgstr "" +msgstr "Nenhum resultado retornado" #: views.py:112 msgid "Key query results" -msgstr "" +msgstr "Resultados da consulta por chaves" #: views.py:132 msgid "Search" @@ -268,17 +270,19 @@ msgstr "Consultar servidor de chaves" #: views.py:153 msgid "Upload new key" -msgstr "" +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 "" +"As chaves privadas são usadas para documentos assinados. As chaves privadas só podem " +"ser carregadas pelo utilizador. A exibição para fazer upload de chaves privadas e públicas é a mesma." #: views.py:174 msgid "There no private keys" -msgstr "" +msgstr "Não há chaves privadas" #: views.py:192 msgid "" @@ -286,7 +290,10 @@ msgid "" " by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" +"As chaves públicas são usadas para verificar documentos assinados. As chaves " +"públicas podem ser carregadas pelo usuário ou baixadas dos servidores de chaves. " +"A exibição para fazer upload de chaves privadas e públicas é a mesma." #: views.py:198 msgid "There no public keys" -msgstr "" +msgstr "Não há chaves públicas" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.mo index ce224b07f9c98973629e7018835d6fcd04272795..69d8e9271ff029558c0b3cb5d638e5815693cf1a 100644 GIT binary patch literal 1941 zcmaKs&x;&I6vs;wH5q^8hsGZ$SbK;hNKelO)+D{I8nY7!IA++)1_Up)-L*3%-Ca#p z_0Eoh9@e7=L2~mF_TW_z1VOwE9t4k`_v)YE)$gnBo?nC%Tl499_2Yftt9pBK@$^H6 z_8R(I=>MR0N()L178OFH52ezj1TMaH{dype*j+x zk3ri1dp-WM<_Sm|{sS+7=T0&9Ik*O%2EPW$egwV;)M$6yPbfak$)K}tETp++%MBTY@C^B~K|)7W0Z2ex``bRNY> z@ld;nPQEB_NC!h|{asK#UqvTf7C<&29XS}r1*ft-G#<;E}xMdT!l?5B5MU=DBb57czFi-6VJb z0q_v1tmd(x%X8D~!@6%qWIHCYcS>`kb(E;nh~} zZm&BJb-mqb-PXCoRRn`cfk5bH!Xgza-{kQ~7%Sb@?%+;vW4?|&?n@JN^H?V;A4dGf zo^mt25ieY;pO!|X!5wWf8}YpGL%VftlUJWxS8~3##n-QHw%Dyi#mJ;EbW>0=eS{FW zm=_dMUR6{xNmbQ+`^uUPcp;3Kl~=vdD4d<^18o;Q_#(qv!AE#pc#Q{2B!YEQl_`i} zJ2KM;a!FME)DGjcR7(?8#ib+M=|T+4C8rlvL*iT|Y7efTFmFhTdeRE2#g!xMl8;5_ zn2~eumfPvE_SJ~^{Tw|4UpL5(Lu#rFCCFdtRI0v&Cp_Oa@1_XY@1FjGe^!|H=|{!- pf}Q?^gR6=~KB+>N?|5Fh%XZ5?B}Jp@qs44mwmWmqP^`;y{{w&(Cfxu4 delta 342 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 Ia;+lsKOPpfTL1t6 delta 649 zcmY+>&r6eW9Ki9fYuNo! zi0fpG{7%Nnmo6^E51he$e2QaNM3(S1MzM`o@fgGS8z<4zBjUv;=*A3&a2EYoK#xdW z-ZALo#v1nG7V3fqj^cKA{-yi;D{7%{SfHskTFmdUcpg7t2~RPBujo$euj37TkB@K< zee5qM4EV_@7d?T$s2z^do-VwF{dgC(u_@I5KStdk-MwEzeSr!_u!i&}LnOma=sJzy z1>(+i2R`KFE+fEbnB?U;o9hGpMAygxoeg4 zD0tgt=0XXx8M, 2011 # Vítor Figueiró , 2012 @@ -25,19 +25,19 @@ msgstr "Nenhum" #: admin.py:26 links.py:79 models.py:52 msgid "Document types" -msgstr "" +msgstr "Tipos de documentos" #: apps.py:55 events.py:8 msgid "Document indexing" -msgstr "" +msgstr "Indexação de documentos" #: apps.py:118 msgid "Total levels" -msgstr "" +msgstr "Níveis totais" #: apps.py:126 msgid "Total documents" -msgstr "" +msgstr "Total de documentos" #: apps.py:131 apps.py:143 apps.py:162 msgid "Level" @@ -45,7 +45,7 @@ msgstr "" #: apps.py:148 apps.py:167 msgid "Levels" -msgstr "" +msgstr "Níveis" #: apps.py:156 apps.py:174 models.py:358 msgid "Documents" @@ -53,23 +53,23 @@ msgstr "Documentos" #: events.py:12 msgid "Index created" -msgstr "" +msgstr "Índice criado" #: events.py:15 msgid "Index edited" -msgstr "" +msgstr "Índice editado" #: forms.py:19 msgid "Index templates to be queued for rebuilding." -msgstr "" +msgstr "Modelos de índice a serem enfileirados para reconstrução." #: forms.py:20 links.py:30 msgid "Index templates" -msgstr "" +msgstr "Modelos de índice" #: handlers.py:20 msgid "Creation date" -msgstr "" +msgstr "Data de criação" #: links.py:24 links.py:39 links.py:59 links.py:63 models.py:60 views.py:149 #: views.py:292 @@ -82,11 +82,11 @@ msgstr "Exclui e cria a partir do zero todos os índices de documentos." #: links.py:50 views.py:415 msgid "Rebuild indexes" -msgstr "" +msgstr "Reconstruir índices" #: links.py:67 views.py:87 msgid "Create index" -msgstr "" +msgstr "Criar índice" #: links.py:74 links.py:104 msgid "Delete" @@ -98,11 +98,11 @@ msgstr "Editar" #: links.py:92 msgid "Tree template" -msgstr "" +msgstr "Modelo de árvore" #: links.py:98 msgid "New child node" -msgstr "" +msgstr "Novo nó filho" #: models.py:36 msgid "Label" @@ -110,7 +110,7 @@ msgstr "Nome" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "" +msgstr "Esse valor será usado por outros aplicativos para fazer referência a esse índice." #: models.py:41 msgid "Slug" @@ -123,29 +123,30 @@ msgstr "Faz com que este índice seja visível e atualizado quando os dados do d #: models.py:49 models.py:235 msgid "Enabled" -msgstr "" +msgstr "Incluido" #: models.py:59 models.py:219 msgid "Index" -msgstr "" +msgstr "índice" #: models.py:191 msgid "Index instance" -msgstr "index instance" +msgstr "Indice da instância" #: models.py:192 msgid "Index instances" -msgstr "" +msgstr "Indice da instâncias" #: models.py:223 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "" +msgstr "Digite um modelo para visualizar. Use a linguagem de templates padrão do Django" +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:227 msgid "Indexing expression" -msgstr "" +msgstr "Expressão de Indexação" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." @@ -159,30 +160,30 @@ msgstr "Escolha esta opção para que este nó atue como contentor para document #: models.py:243 msgid "Link documents" -msgstr "" +msgstr "Vincular documentos" #: models.py:247 msgid "Index node template" -msgstr "" +msgstr "Modelo de nó de índice" #: models.py:248 msgid "Indexes node template" -msgstr "" +msgstr "Modelo de nó de índices" #: models.py:252 msgid "Root" -msgstr "" +msgstr "Raiz" #: models.py:308 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" +msgstr "Erro ao indexar documento: %(document)s; expressão: %(expression)s; %(exception)s" #: models.py:351 msgid "Index template node" -msgstr "" +msgstr "Nó do modelo de índice" #: models.py:354 msgid "Value" @@ -190,19 +191,19 @@ msgstr "Valor" #: models.py:364 msgid "Index node instance" -msgstr "" +msgstr "Instância no nó índice" #: models.py:365 msgid "Indexes node instances" -msgstr "" +msgstr "Instâncias no nó índice" #: models.py:479 msgid "Document index node instance" -msgstr "" +msgstr "Documentos para instância nó de índice" #: models.py:480 msgid "Document indexes node instances" -msgstr "" +msgstr "Documentos para instâncias nós de índices" #: permissions.py:7 queues.py:9 msgid "Indexing" @@ -222,7 +223,7 @@ msgstr "Eliminar índices de documento" #: permissions.py:19 msgid "View document index instances" -msgstr "" +msgstr "Visualizar instâncias de índice de documentos" #: permissions.py:23 msgid "View document indexes" @@ -234,27 +235,27 @@ msgstr "Reconstruir índices de documento" #: queues.py:12 msgid "Delete empty index nodes" -msgstr "" +msgstr "Excluir nós de índice vazios" #: queues.py:16 msgid "Remove document" -msgstr "" +msgstr "Remover documento" #: queues.py:20 msgid "Index document" -msgstr "" +msgstr "Indexar documento" #: queues.py:24 msgid "Rebuild index" -msgstr "" +msgstr "reconstruir índice" #: views.py:46 msgid "Available indexes" -msgstr "" +msgstr "Índices disponíveis" #: views.py:47 msgid "Indexes linked" -msgstr "" +msgstr "Índices vinculados" #: views.py:77 msgid "" @@ -262,21 +263,23 @@ msgid "" "updated. Events of the documents of this type will trigger updates in the " "linked indexes." msgstr "" +"Documentos desse tipo aparecerão nos índices vinculados quando eles forem " +"atualizados. Os eventos dos documentos desse tipo acionarão atualizações nos índices vinculados." #: views.py:81 #, python-format msgid "Indexes linked to document type: %s" -msgstr "" +msgstr "Índices vinculados ao tipo de documento: %s" #: views.py:109 #, python-format msgid "Delete the index: %s?" -msgstr "" +msgstr "Remover o índice: %s?" #: views.py:124 #, python-format msgid "Edit index: %s" -msgstr "" +msgstr "Editar o índice: %s?" #: views.py:143 msgid "" @@ -284,18 +287,21 @@ msgid "" "template whose markers are replaced with direct properties of documents like" " label or description, or that of extended properties like metadata." msgstr "" +"Os índices agrupam o documento automaticamente em níveis. Os arquivos do " +"indice são definidos usando um modelo cujos marcadores são substituídos por " +"propriedades diretas de documentos como rótulo ou descrição, ou de propriedades estendidas como metadados." #: views.py:148 msgid "There are no indexes." -msgstr "" +msgstr "Não existem índices" #: views.py:161 msgid "Available document types" -msgstr "" +msgstr "Tipos de documentos disponíveis" #: views.py:162 msgid "Document types linked" -msgstr "" +msgstr "Tipos de documentos vinculado" #: views.py:172 msgid "" @@ -303,70 +309,77 @@ msgid "" "built. Only the events of the documents of the types select will trigger " "updates in the index." msgstr "" +"Somente os documentos dos tipos selecionados serão mostrados no índice quando " +"criados. Somente os eventos dos documentos dos tipos selecionados ativarão as " +"atualizações no índice." #: views.py:176 #, python-format msgid "Document types linked to index: %s" -msgstr "" +msgstr "Tipos de documentos vinculados ao índice: %s" #: views.py:188 #, python-format msgid "Tree template nodes for index: %s" -msgstr "" +msgstr "Nós de modelo de árvore para índice: %s" #: views.py:218 #, python-format msgid "Create child node of: %s" -msgstr "" +msgstr "Criar nó filho de: %s" #: views.py:241 #, python-format msgid "Delete the index template node: %s?" -msgstr "" +msgstr "Remover o nó do modelo de índice: %s" #: views.py:264 #, python-format msgid "Edit the index template node: %s?" -msgstr "" +msgstr "Editar o nó do modelo de índice: %s" #: views.py:287 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 estão definidos corretamente." #: views.py:291 msgid "There are no index instances available." -msgstr "" +msgstr "Não há instâncias de índice disponíveis." #: views.py:336 #, python-format msgid "Navigation: %s" -msgstr "" +msgstr "Navegação: %s" #: views.py:341 #, python-format msgid "Contents for index: %s" -msgstr "" +msgstr "Conteúdo para índice: %s" #: views.py:394 msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " msgstr "" +"Atribuir o tipo de documento deste documento a um índice para que ele apareça " +"em instâncias daquelas unidades de organização de índices." #: views.py:399 msgid "This document is not in any index" -msgstr "" +msgstr "Este documento não está em nenhum índice" #: views.py:403 #, python-format msgid "Indexes nodes containing document: %s" -msgstr "" +msgstr "Nós de índices contendo documento: %s" #: views.py:429 #, python-format msgid "%(count)d index queued for rebuild." msgid_plural "%(count)d indexes queued for rebuild." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)d índice de fila de espera para reconstruir" +msgstr[1] "%(count)d índices de fila de espera para reconstruir" diff --git a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.mo index d127d694fcc28e3445662a46a0217dcacbc35ca4..3d69903734fa0844155818f64e103c2eacf98e75 100644 GIT binary patch literal 4505 zcma)87b6~~K^1ehfWEU=qzDhuAVS@(?B$tun`n~m2yj#k0DmhEizwv@YTW*U0B zI#t#FkTw#xM2RBh0H<7HMG@LV!ih-9F(W~8$^}ITp(x@80*)Xg1pHt1$8_7hftJR< zneM7r@8kcf+MgZ0{pSqVEItq7bK^^lErNfz4S#Tb^kv38@MEw8{sUY9Pu-3W_#Q--_%8Sm_#SvK_*?L+;9tRSfqw_@0$X=5_8stE@Hp58zX7g*^!$177%21SH}dB{ z1If>~L0acSkk*6Z|!J68s%F1^x%5c~b~#8tj6!jt_G1HSjd}F8BlR_aNE114()sJPv*z zyarwaUj(VHpMvD)-}2{2?#cX}18M#uNb^=ficf><;0=)K^$8e(e+DT}&qE{~@D-5! z{Q$fQege|GlQ2s4+5?eZcTqgFR&nwC3;9K3>7v>qr3~_P*U_8^)8!B4Whd~t4|6YxO!=}5+wiy)8zw~E`Lc4myO*xAOnTGq@64q2anV;Wq>6Kh+ zt@IZ@taw(Pid;5NBY~h)p&3>aQcNv#RV^_L?ZlB1L6HsC3qo56pbV;33|C#MNSpO` zeVJGUSuWXQYZq4# zPb9I>8qD&kX|jGjPDfi(&jh%s%|vvtEw%G4e?Wbcm!7LW7o|MibIKwaprpA{m;*m+ zF*^aSOOr;HZAeSqQ<`&Y8W*P2XrED;3{mU5tvw#dzJQ4~*+`RO9NTa*Mtp}hfu{C9 zf9vtii^KaxZXexWI&HF)xJIqDd_FcPdg8>CInlfeigucz`lv9Lb>&juT9=(m~-|4N)nw zQ4Bbs1g(B7ed}EcysKHecKO=U^0Q0N^!U}@`o^Uzms{&HQQCT|W)KG6g>+!NP1WVC zwJYAb+zzS5J=&4Fe17iCA_e^`PwVdsc-X^xPt}9(9 zi9{GLa(_roX3sshx#BHM#?eZBsl8t8s{k$3B&({uXXW^VKux~oZt-NiKL}&m z)+QlL4oaGnjV$AVt-)+%ag1+TxHbZr%ZwnvigRo!Ph~Ac z!#10uuBFKpqA@wOVTgeSxwMv1Giq$AT+NjpPTzX=1*em;ao~YE-C|@lx<*rz0nHXj z9e$LK-w8yc)2={*3Q*N0yCA|{2?3H6rIQMs;r~Ny&P0RYNF&*~4uv9V(3dEyR+iqK z@XKNp#=~4>Kz5#EO!=aSdgLenEOu*ZWVft43PPOK_~MGt5B;GGv0>4XkHbD!;KB2L zDHiB_1Xk7-Lc{AS)g0Q&A661U1x`nk;cN-PWWyKTH#sU$d!qPi`NKf#>r%s9?{Dc zwkdj(K$AdCGEzK$ZKyYMB~Qis#CRX4A!0#Qef%F&C^LVlsK~SIBQjZPROlDdkSgsY Mian*;afgKVU!L}2hyVZp delta 210 zcmbQK{ExN%o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~Z#fOsMh^8)cKAoc~~6+qn1 z$iVOoNOJ;l9TNis7m)4%(t<#GGLVh{(o2CfP#M@B79b7eGB7hRXaFfFaL&&wNzE%^ zfYQYbF8Rr&xj+$xlFEYA$+Or3Hal^)GfsZQEi7Ej5RzGtuaJ_ekOEbdKe>i43IO=R BB)R|q 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 3bb03b7823..e5007cc78d 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 "" @@ -24,11 +24,11 @@ msgstr "" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" -msgstr "" +msgstr "Análise de documentos" #: apps.py:116 models.py:78 msgid "Result" -msgstr "" +msgstr "Resultado" #: apps.py:121 apps.py:125 links.py:16 links.py:22 models.py:27 msgid "Content" @@ -37,20 +37,20 @@ msgstr "Conteúdo" #: dependencies.py:11 msgid "" "Utility from the poppler-utils package used to text content from PDF files." -msgstr "" +msgstr "Utilitário do pacote poppler-utils usado para conteúdo de texto de arquivos PDF." #: events.py:12 msgid "Document version submitted for parsing" -msgstr "" +msgstr "Versão do documento enviada para análise" #: events.py:15 msgid "Document version parsing finished" -msgstr "" +msgstr "Análise da versão do documento concluída" #: forms.py:39 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Página %(page_number)d" #: forms.py:47 forms.py:59 msgid "Contents" @@ -58,39 +58,39 @@ msgstr "Conteúdos" #: links.py:28 links.py:66 views.py:197 msgid "Parsing errors" -msgstr "" +msgstr "Erros de análise" #: links.py:34 msgid "Download content" -msgstr "" +msgstr "Baixe o conteúdo" #: links.py:39 links.py:46 msgid "Submit for parsing" -msgstr "" +msgstr "Enviar para análise" #: links.py:52 msgid "Setup parsing" -msgstr "" +msgstr "configuração da análise" #: links.py:61 msgid "Parse documents per type" -msgstr "" +msgstr "Analisar documentos por tipo" #: models.py:21 msgid "Document page" -msgstr "" +msgstr "Página do documento" #: models.py:25 msgid "The actual text content as extracted by the document parsing backend." -msgstr "" +msgstr "O conteúdo actual do texto, conforme extraído pelo backend de análise do documento." #: models.py:33 msgid "Document page content" -msgstr "" +msgstr "Conteúdo da página do documento" #: models.py:34 msgid "Document pages contents" -msgstr "" +msgstr "Conteúdo das páginas do documento" #: models.py:46 msgid "Document type" @@ -98,65 +98,65 @@ msgstr "Tipo de documento" #: models.py:50 msgid "Automatically queue newly created documents for parsing." -msgstr "" +msgstr "Fila automatica de documentos recém-criados para análise." #: models.py:61 msgid "Document type settings" -msgstr "" +msgstr "Configurações para tipo de documento" #: models.py:62 msgid "Document types settings" -msgstr "" +msgstr "Configurações de tipos de documento" #: models.py:73 msgid "Document version" -msgstr "" +msgstr "Versão do documento" #: models.py:76 msgid "Date time submitted" -msgstr "" +msgstr "Data da hora de envio" #: models.py:82 msgid "Document version parse error" -msgstr "" +msgstr "Erro de análise da versão do documento" #: models.py:83 msgid "Document version parse errors" -msgstr "" +msgstr "Erros de análise da versão do documento" #: parsers.py:91 #, python-format msgid "Exception parsing page; %s" -msgstr "" +msgstr "Exceção na análise da página; %s" #: parsers.py:117 #, python-format msgid "Cannot find pdftotext executable at: %s" -msgstr "" +msgstr "Não é possível encontrar o executável pdftotext em: %s" #: permissions.py:12 msgid "View the content of a document" -msgstr "" +msgstr "Ver o conteúdo de um documento" #: permissions.py:15 msgid "Change document type parsing settings" -msgstr "" +msgstr "Alterar configurações de análise do tipo de documento" #: permissions.py:19 msgid "Parse the content of a document" -msgstr "" +msgstr "Analisar o conteúdo de um documento" #: queues.py:8 msgid "Parsing" -msgstr "" +msgstr "A analisar" #: queues.py:11 msgid "Document version parsing" -msgstr "" +msgstr "Análise de versão do documento" #: settings.py:12 msgid "Set new document types to perform parsing automatically by default." -msgstr "" +msgstr "Definir novos tipos de documentos para efectuar a análise automática por padrão" #: settings.py:19 msgid "" @@ -169,50 +169,50 @@ msgstr "" #: views.py:43 #, python-format msgid "Content for document: %s" -msgstr "" +msgstr "Conteúdo para documento: %s" #: views.py:78 #, python-format msgid "Content for document page: %s" -msgstr "" +msgstr "Conteúdo para a página do documento: %s" #: views.py:93 #, python-format msgid "Parsing errors for document: %s" -msgstr "" +msgstr "Erros de análise para documento: %s" #: views.py:105 #, python-format msgid "%(count)d document added to the parsing queue" -msgstr "" +msgstr "%(count)d documento adicionado à fila de análise" #: views.py:108 #, python-format -msgid "%(count)d documents added to the parsing queue" +msgid "%(count)d documentos adicionados à fila de análise" msgstr "" #: views.py:116 #, 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[0] "Enviar o documento %(count)d para a fila de análise?" +msgstr[1] "Enviar o documentos %(count)d para a fila de análise?" #: views.py:129 #, python-format msgid "Submit document \"%s\" to the parsing queue" -msgstr "" +msgstr "Enviar o documento \"%s\" para a fila de análise" #: views.py:154 #, python-format msgid "Edit parsing settings for document type: %s." -msgstr "" +msgstr "Editar configurações de análise para o tipo de documento: %s." #: views.py:164 msgid "Submit all documents of a type for parsing." -msgstr "" +msgstr "Envie todos os documentos de um tipo para análise" #: views.py:185 #, python-format msgid "%(count)d documents added to the parsing queue." -msgstr "" +msgstr "%(count)d documentos adicionados à fila de análise." diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.mo index 9bac19923b3c72af336621751f56b01ba5e1be15..0255d1ead3dd4707e9d632e01ace3939f7dbef59 100644 GIT binary patch literal 6387 zcmb7|ON?Ac6^6^sgLnc7HjfaVWhV|cPWRZ3oj7fbGxp4wAs%NKk1b$9RMTD4eeL_` z+=s_wg#`)%gu-J%Bp@uXki|oagc2d1VKWekMZ_YD00P7YDN7bakw8Lxr|xsyZO2^A z?f+KYQ>RXy^Pj47=Wp9?enxT4a=)MZaY0z2JX}wq}sDr$N!@f$syq0PY08 z2a5ieiuNCh_UqtH^#2z`mD-HZ+rTa0R`4!R=HCt82_69_zEckBlDNyG94k&*6VS#@IKTLZY$^<*0$Ss3!1&81r z;O7c_8Wercg5s~|i}pIWhxVUA{?x4)Eq>ez{uVq4o(2C6egym^%4I!If_H(R2Sxtd z;C}E$Q1t(^=--4<@1(sG6#sWX8FvPJ7Z`xs!KXmca|L8+>i1xOlTxpMhiD(h$ue&W zZUfgqT&A7|KLkDl3U7W|^uJQzUqG4nAE5YKj1znA2KRt%umyewY=d70_kuqIcYv>f zV%O~ieK$A>;tKWYqHT-z*TGxpf3|2}2ANVl2g>{}f|3t^1jUZmL9ycw79)PY2bB1< zLE+mBI0c>rae?|8_(AZy;9>Arpv2`3PE@HHa$pa?$^HQ0#sKlziJpu*ARjgEIaTp!neuD1P}O_%HA$;Cb*0%7xck z3AV(o1B(4eLGk-%!4CKpQ0)C3DE|KwDD&KglO#Xy12uROlsE^V@bIgk*zt2v{P!9N zUEC$(%IlHhLDnd8avkTEn9H@7Tjo0=jpC9x9po0fK6g`O7}i)@%t>d>?d+b ze#&)A4sKr-uDWX~?q`7w(?q9{9-72qI8!X#iuer8SMWZrf6p81YZ$`&gudXpnX3x4^ zned@o49X9tywmSg>eHf z(b3Qrx&yPOQ*++xBnqrfJ^6{4+;+3nw$%b89S&kfHXbz^ys#U^vF)Z!8F>*}D-lCU zhMT(Q^9j#eJhx!dfxK{xPovmiSduMw{UQ@EU9S#os1shY)Y`GNKhY9<7jTkBC7MjC zS3Td?%T_bo%`3wBtW`V;sxmlR_Pwqf+jQn>8B%7F%3EbDi?Mpg&SVF3u>@0z)_HLQ zgGQOUaZr+LFU_cRCu8MC)fIB(3pdKKUicu3${UVib#uk@ZR0H=EEODWbc?q)XpxR# zY!kM#rX1e#R=jRb+$S=djpR=?b8fD)Dc^gp4wu`=YH>ZV{*XDN3trD^lcj?wP6pmk zTj>b9^o0<>1dv-I1Ubp5wq6=ws)?<}wl$r=Y@S7QU}8rY_PxGs>#5q~x@$tAROtzA z687sj)zOM$Z)K^MCe~lkY@FFpHU(CTs9_ewg{9)%w!#Fr-{+~cAvtm)i#f*kqgCyt z@_Llc1RKwk| zQH?0F#f7d=TS=<3LJnd3hA_v8%7=4a~V>}&6xI39&5iQW-_P^ zu2643qWA4SJfX_UDROyeTr!zha?S|W9PU@llSH!TK3X`ZL@`Yecwwh&1;)Qvr} z{sR}SQnY-Pmuy$PoD1ZX%tPk&J;+fgJRb3edMhNKt67)4VL72QNhpz}p6^{UJq{VE z>ufm40yUFhjw|Ex`Gyg;`SyY=-RCQVBn?ny1D%(BvT{@;x=(8MY|>V5T` zLrdEvUB6t`c&TZtDZSDZ*Xuu`&=cpcU&bGK9-?*Gk2v$O0R@G3+UmF=(+2XvL$Y!- z78M@`$=MZ{OExsQ8=OSO)}~EVy}Cv$^N>*vPz~Zfre!TLRx_S%Ww0(Wpi$771VWVcb}P=hdQcv?gMe#)ZEBYiuL&s^Jxt6PFG3ObyE4h;T!9 z(p+n!-=)Te4YVYEJ*%4a_z?AC=)6I);XP>6PW4Wc%oxxnHq8Aps_zivd2s_tCYGXzu$9w9%xqVQb*ao8mTWXYL)wiqqMrueLF z>t%k*_m=Bu>lr?GwA&AY%p>;`+vh-{>efAPW&OFXr2UuvFFUV{2QMmZFNev(E&MIlcYfdi+UC*+CQid;T>b{05`8F+zo9ozCt5g32y5VEC delta 412 zcmX}oy-UMD7{~F8);6YAF}?+Lh@j%);Na$9Ar5UfJGlr)do+QwLJYou(8W!+Ls$O; z5uE%ZoOBdHaB>pd#qY)7!7raAchB9Ed~e*igEzl)Ef`~Dk(`rB@=ELo9U)4%gk@aC z3a;Z6Zla5gVtyCx`aRsneH_PI^zaVn@ezBD7>E~cY{Ay>-$wPqCI-B3V-3yl?BTY~4*LPNY1+@P`2noY|AK91h>Va?A|jb75h<;5GMQ*| zUk<#JzCM&)(Nbq7ahvAK3rxG_o6k!1;kgz&Gn7fOqmzTAFH`C>sbgh+CKl!*b<~k* as(QR{L}6Ekomd_#6ZtLkJ{_9nVC@%7Hada; 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 46eeaeccee..1700e00f56 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 "" @@ -32,7 +32,7 @@ msgstr "ID da chave" #: apps.py:101 forms.py:64 models.py:50 msgid "Signature ID" -msgstr "" +msgstr "ID de assinatura" #: apps.py:102 forms.py:76 msgid "None" @@ -40,73 +40,73 @@ msgstr "Nenhum" #: apps.py:105 msgid "Type" -msgstr "" +msgstr "Tipo" #: forms.py:19 forms.py:33 msgid "Key" -msgstr "" +msgstr "Chave" #: forms.py:24 msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "" +msgstr "A frase secreta para desbloquear a chave e permitir que ela seja usada para assinar a versão do documento." #: forms.py:26 msgid "Passphrase" -msgstr "" +msgstr "Frase secreta" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "" +msgstr "Chave privada que será usada para assinar esta versão do documento." #: forms.py:46 msgid "Signature is embedded?" -msgstr "" +msgstr "Assinatura é incorporada?" #: forms.py:48 msgid "Signature date" -msgstr "" +msgstr "Data de assinatura" #: forms.py:51 msgid "Signature key ID" -msgstr "" +msgstr "ID da chave de assinatura" #: forms.py:53 msgid "Signature key present?" -msgstr "" +msgstr "Chave de assinatura presente?" #: forms.py:66 msgid "Key fingerprint" -msgstr "" +msgstr "Impressão digital chave" #: forms.py:70 msgid "Key creation date" -msgstr "" +msgstr "Data de criação da chave" #: forms.py:75 msgid "Key expiration date" -msgstr "" +msgstr "Data de expiração da chave" #: forms.py:80 msgid "Key length" -msgstr "" +msgstr "Comprimento da chave" #: forms.py:84 msgid "Key algorithm" -msgstr "" +msgstr "Algoritmo chave" #: forms.py:88 msgid "Key user ID" -msgstr "" +msgstr "Chave do utilizador ID" #: forms.py:92 msgid "Key type" -msgstr "" +msgstr "Tipo chave" #: links.py:32 msgid "Verify all documents" -msgstr "" +msgstr "Verificar todos os documentos" #: links.py:39 links.py:58 queues.py:9 msgid "Signatures" @@ -126,51 +126,51 @@ msgstr "Descarregar" #: links.py:69 msgid "Upload signature" -msgstr "" +msgstr "Carregar assinatura" #: links.py:76 msgid "Sign detached" -msgstr "" +msgstr "Assinatura Separada" #: links.py:83 msgid "Sign embedded" -msgstr "" +msgstr "Assinatura incorporada" #: models.py:40 msgid "Document version" -msgstr "" +msgstr "Versão do documento" #: models.py:44 msgid "Date signed" -msgstr "" +msgstr "Data de assinatura" #: models.py:54 msgid "Public key fingerprint" -msgstr "" +msgstr "Impressão digital da chave pública" #: models.py:60 msgid "Document version signature" -msgstr "" +msgstr "Assinatura da versão do documento" #: models.py:61 msgid "Document version signatures" -msgstr "" +msgstr "Assinaturas da versão do documento" #: models.py:80 msgid "Detached" -msgstr "" +msgstr "Separado" #: models.py:82 msgid "Embedded" -msgstr "" +msgstr "Incorporado" #: models.py:97 msgid "Document version embedded signature" -msgstr "" +msgstr "Assinatura incorporada na versão do documento" #: models.py:98 msgid "Document version embedded signatures" -msgstr "" +msgstr "Assinaturas incorporadas na versão do documento" #: models.py:131 msgid "Signature file" @@ -178,35 +178,35 @@ msgstr "Ficheiro de assinatura" #: models.py:138 msgid "Document version detached signature" -msgstr "" +msgstr "Assinatura separada na versão do documento" #: models.py:139 msgid "Document version detached signatures" -msgstr "" +msgstr "Assinaturas separadas na versão do documento" #: models.py:142 msgid "signature" -msgstr "" +msgstr "assinatura" #: permissions.py:12 msgid "Sign documents with detached signatures" -msgstr "" +msgstr "Assinar documentos com assinaturas separadas" #: permissions.py:16 msgid "Sign documents with embedded signatures" -msgstr "" +msgstr "Assinar documentos com assinaturas incorporadas" #: permissions.py:20 msgid "Delete detached signatures" -msgstr "" +msgstr "Remover assinaturas separadas" #: permissions.py:24 msgid "Download detached document signatures" -msgstr "" +msgstr "Baixar assinaturas separadas de documento" #: permissions.py:28 msgid "Upload detached document signatures" -msgstr "" +msgstr "Carregar assinaturas separadas de documento" #: permissions.py:32 msgid "Verify document signatures" @@ -214,63 +214,63 @@ msgstr "Verificar as assinaturas do documento" #: permissions.py:36 msgid "View details of document signatures" -msgstr "" +msgstr "Verificar detalhes das assinaturas do documento" #: queues.py:12 msgid "Verify key signatures" -msgstr "" +msgstr "Verificar chaves de assinaturas" #: queues.py:16 msgid "Unverify key signatures" -msgstr "" +msgstr "Cancelar chaves de assinaturas" #: queues.py:20 msgid "Verify document version" -msgstr "" +msgstr "Verificar a versão do documento" #: queues.py:25 msgid "Verify missing embedded signature" -msgstr "" +msgstr "Verificar a assinatura incorporada ausente" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "" +msgstr "Caminho para a subclasse de armazenamento para usar ao armazenar assinaturas separadas" #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " -msgstr "" +msgstr "Argumentos para passar para o SIGNATURE_STORAGE_BACKEND." #: views.py:68 views.py:159 msgid "Passphrase is needed to unlock this key." -msgstr "" +msgstr "A frase secreta é necessária para desbloquear esta chave." #: views.py:79 views.py:170 msgid "Passphrase is incorrect." -msgstr "" +msgstr "Frase secreta está incorreta." #: views.py:101 views.py:191 msgid "Document version signed successfully." -msgstr "" +msgstr "Versão do documento assinada com sucesso" #: views.py:127 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "" +msgstr "Assinar a versão do documento \"%s\" com assinatura separada" #: views.py:224 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "" +msgstr "Assinar a versão do documento \"%s\" com assinatura incorporada" #: views.py:240 #, python-format msgid "Delete detached signature: %s" -msgstr "" +msgstr "Remover assinatura separada: %s" #: views.py:260 #, python-format msgid "Details for signature: %s" -msgstr "" +msgstr "Detalhes da assinatura: %s" #: views.py:300 msgid "" @@ -278,20 +278,23 @@ msgid "" "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." msgstr "" +"As assinaturas ajudam a fornecer evidência de autoria e detecção de adulteração. " +"Elas são muito seguras e difíceis de falsificar. Uma assinatura pode ser incorporada " +"como parte do próprio documento ou carregada como um arquivo separado." #: views.py:328 msgid "There are no signatures for this document." -msgstr "" +msgstr "Não há assinaturas para este documento" #: views.py:331 #, python-format msgid "Signatures for document version: %s" -msgstr "" +msgstr "Assinaturas para versão do documento: %s" #: views.py:361 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "" +msgstr "Carregar assinatura separada para versão do documento: %s" #: views.py:378 msgid "On large databases this operation may take some time to execute." @@ -299,8 +302,8 @@ msgstr "Esta operação pode levar algum tempo em bases de dados grandes." #: views.py:379 msgid "Verify all document for signatures?" -msgstr "" +msgstr "Verificar todos os documentos por assinaturas?" #: views.py:389 msgid "Signature verification queued successfully." -msgstr "" +msgstr "Verificação de assinatura em fila com sucesso" 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 0e75c83cd5d447082a59780a6f8f612fe42e7000..963267c24b660be0f8904600d3ecba5ee1151732 100644 GIT binary patch literal 17992 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 delta 459 zcmXYtyGjF55Qb+piI<3AT1D0-U}C0up1TMJ}Tr*s~ip8$l8B0=7PYSO~V_ z6KrE;X(bl6c0PgMtQpSicjorbVc+h8=gRb}R=O8#1>eAL@iqJtHwy!i1-LciHmnfu zz!Kbr%Ww~t;US!Z?OFW@TK~x`K7;ebeRvVbRL;5Bf_J8>@B=QwZ)k%*a25VSTNp5H ztU#+*q4n3GJ!Bnnq|OKFqQ~?tXJ$QSOL$oZ|HGCrQ8W7!_7F36iZlk9OX9KYC*EtE z$$>_isWgW!ljaqfFuNY9w0eDwq@8eLmCmH^sdvYkzHHWgaN5Y9@>eZX7|9<}mq;^m t-o?GN&;rM9l!QYK)l^N$tF-e+ZW>=sd?Cu}RJxgq+)Zzoq|$L-{s16iN(uk~ 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 ac7deff99f..b5656e1394 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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 "" @@ -20,20 +20,20 @@ msgstr "" #: 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 msgid "Workflows" -msgstr "" +msgstr "Fluxos de trabalho" #: apps.py:104 apps.py:111 msgid "Current state of a workflow" -msgstr "" +msgstr "Estado atual de um fluxo de trabalho" #: apps.py:105 msgid "Return the current state of the selected workflow" -msgstr "" +msgstr "Retorna o estado atual do fluxo de trabalho selecionado" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "" +msgstr "Retorna o valor de conclusão do estado atual do fluxo de trabalho selecionado" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -41,7 +41,7 @@ msgstr "Nenhum" #: apps.py:172 msgid "Current state" -msgstr "" +msgstr "Estado actual" #: apps.py:176 apps.py:203 models.py:514 msgid "User" @@ -49,19 +49,19 @@ msgstr "Utilizador" #: apps.py:182 msgid "Last transition" -msgstr "" +msgstr "Última transição" #: apps.py:186 apps.py:199 msgid "Date and time" -msgstr "" +msgstr "Data e hora" #: apps.py:192 models.py:211 msgid "Completion" -msgstr "" +msgstr "Conclusão" #: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" -msgstr "" +msgstr "transição" #: apps.py:210 forms.py:182 models.py:516 msgid "Comment" @@ -69,35 +69,35 @@ msgstr "Comentário" #: apps.py:233 msgid "When?" -msgstr "" +msgstr "Quando?" #: apps.py:237 msgid "Action type" -msgstr "" +msgstr "Tipo de acão" #: apps.py:253 msgid "Triggers" -msgstr "" +msgstr "Desencadeia" #: error_logs.py:8 models.py:302 msgid "Workflow state actions" -msgstr "" +msgstr "Ações de estado do fluxo de trabalho" #: events.py:12 msgid "Workflow created" -msgstr "" +msgstr "Fluxo de trabalho criado" #: events.py:15 msgid "Workflow edited" -msgstr "" +msgstr "Fluxo de trabalho editado" #: forms.py:22 msgid "Action" -msgstr "" +msgstr "Acão" #: forms.py:117 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" @@ -105,7 +105,7 @@ msgstr "Nome" #: forms.py:125 models.py:282 msgid "Enabled" -msgstr "" +msgstr "Incluido" #: forms.py:127 msgid "No" @@ -122,19 +122,19 @@ msgstr "" #: handlers.py:62 #, python-format msgid "Event trigger: %s" -msgstr "" +msgstr "Evento desencadeia: %s" #: links.py:23 views/workflow_views.py:144 msgid "Create workflow" -msgstr "" +msgstr "Fluxo de trabalho criado" #: links.py:29 links.py:53 links.py:85 links.py:110 msgid "Delete" -msgstr "Eliminar" +msgstr "Remover" #: links.py:35 models.py:52 msgid "Document types" -msgstr "" +msgstr "Tipos de documento" #: links.py:42 links.py:60 links.py:92 links.py:117 msgid "Edit" @@ -146,141 +146,144 @@ msgstr "Ações" #: links.py:72 msgid "Create action" -msgstr "" +msgstr "Criar acão" #: links.py:78 msgid "Create state" -msgstr "" +msgstr "Criar estado" #: links.py:97 links.py:189 msgid "States" -msgstr "" +msgstr "Estados" #: links.py:103 msgid "Create transition" -msgstr "" +msgstr "Criar transição" #: links.py:122 msgid "Transitions" -msgstr "" +msgstr "Transições" #: links.py:129 msgid "Transition triggers" -msgstr "" +msgstr "Transição desencadeia" #: links.py:136 msgid "Preview" -msgstr "" +msgstr "Visualizar" #: links.py:141 queues.py:13 msgid "Launch all workflows" -msgstr "" +msgstr "Lançar todos os fluxos de trabalho" #: links.py:156 msgid "Detail" -msgstr "" +msgstr "Detalhe" #: links.py:170 msgid "Workflow documents" -msgstr "" +msgstr "fluxos de trabalho de documentos" #: links.py:182 msgid "State documents" -msgstr "" +msgstr "Estados de documentos" #: literals.py:9 msgid "On entry" -msgstr "" +msgstr "Na entrada" #: literals.py:10 msgid "On exit" -msgstr "" +msgstr "Na saída" #: models.py:42 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "" +msgstr "Esse valor será usado por outros aplicativos para fazer referência a esse " +"fluxo de trabalho. Só pode conter letras, números e sublinhados." #: models.py:45 msgid "Internal name" -msgstr "" +msgstr "Nome interno" #: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" -msgstr "" +msgstr "Fluxo de trabalho" #: models.py:74 msgid "Initial state" -msgstr "" +msgstr "Estado inicial" #: 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 "Selecione se este será o estado com o qual você deseja que o fluxo de trabalho inicie. " +"Somente um estado pode ser o estado inicial." #: models.py:205 msgid "Initial" -msgstr "" +msgstr "Inicial" #: 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 "Digite o percentual de conclusão que esse estado representa em " +"relação ao fluxo de trabalho. Use números sem o sinal de porcentagem." #: models.py:217 models.py:276 msgid "Workflow state" -msgstr "" +msgstr "Estado do fluxo de trabalho" #: models.py:218 msgid "Workflow states" -msgstr "" +msgstr "Estados de fluxos de trabalho" #: models.py:279 msgid "A simple identifier for this action." -msgstr "" +msgstr "Um identificador simples para esta ação." #: models.py:286 msgid "At which moment of the state this action will execute" -msgstr "" +msgstr "Em qual momento do estado essa ação será executada" #: models.py:287 msgid "When" -msgstr "" +msgstr "Quando" #: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "" +msgstr "O caminho por pontos do Python para a classe de ação do fluxo de trabalho a ser executada." #: models.py:292 msgid "Entry action path" -msgstr "" +msgstr "Caminho de ação de entrada" #: models.py:295 msgid "Entry action data" -msgstr "" +msgstr "Dados de ação de entrada" #: models.py:301 msgid "Workflow state action" -msgstr "" +msgstr "Ação do estado do fluxo de trabalho" #: models.py:346 msgid "Origin state" -msgstr "" +msgstr "Estado original" #: models.py:350 msgid "Destination state" -msgstr "" +msgstr "Estado destino" #: models.py:358 msgid "Workflow transition" -msgstr "" +msgstr "Transição de fluxo de trabalho" #: models.py:359 msgid "Workflow transitions" -msgstr "" +msgstr "Transições de fluxo de trabalho" #: models.py:373 msgid "Event type" @@ -288,160 +291,161 @@ msgstr "Tipo de evento" #: models.py:377 msgid "Workflow transition trigger event" -msgstr "" +msgstr "Transição de fluxo de trabalho desencadeia evento" #: models.py:378 msgid "Workflow transitions trigger events" -msgstr "" +msgstr "Transições de fluxo de trabalho desencadeia eventos" #: models.py:392 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:398 models.py:503 msgid "Workflow instance" -msgstr "" +msgstr "Instância do fluxo de trabalho" #: models.py:399 msgid "Workflow instances" -msgstr "" +msgstr "Instâncias do fluxo de trabalho" #: models.py:506 msgid "Datetime" -msgstr "" +msgstr "Data e hora" #: models.py:520 msgid "Workflow instance log entry" -msgstr "" +msgstr "Entrada no registo da instância de fluxo de trabalho" #: models.py:521 msgid "Workflow instance log entries" -msgstr "" +msgstr "Entradas no registo da instância de fluxo de trabalho" #: models.py:528 msgid "Not a valid transition choice." -msgstr "" +msgstr "Não é uma opção de transição válida." #: models.py:561 msgid "Workflow runtime proxy" -msgstr "" +msgstr "Proxy de tempo de execução de fluxo de trabalho" #: models.py:562 msgid "Workflow runtime proxies" -msgstr "" +msgstr "Proxies de tempo de execução de fluxo de trabalho" #: models.py:568 msgid "Workflow state runtime proxy" -msgstr "" +msgstr "Proxy de tempo de execução do estado do fluxo de trabalho" #: models.py:569 msgid "Workflow state runtime proxies" -msgstr "" +msgstr "Proxies de tempo de execução do estado do fluxo de trabalho" #: permissions.py:8 msgid "Document workflows" -msgstr "" +msgstr "Fluxos de trabalho do documento" #: permissions.py:12 msgid "Create workflows" -msgstr "" +msgstr "Criar fluxo de trabalho" #: permissions.py:15 msgid "Delete workflows" -msgstr "" +msgstr "Remover fluxo de trabalho" #: permissions.py:18 msgid "Edit workflows" -msgstr "" +msgstr "Editar fluxo de trabalho" #: permissions.py:21 msgid "View workflows" -msgstr "" +msgstr "Ver fluxo de trabalho" #: permissions.py:27 msgid "Transition workflows" -msgstr "" +msgstr "Fluxos de trabalho de transição" #: permissions.py:30 msgid "Execute workflow tools" -msgstr "" +msgstr "Executar ferramentas de fluxo de trabalho" #: queues.py:9 msgid "Document states" -msgstr "" +msgstr "Estados de documento" #: serializers.py:22 msgid "Primary key of the document type to be added." -msgstr "" +msgstr "Chave primária do tipo de documento a ser adicionado." #: serializers.py:37 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 "" +msgstr "URL da API que aponta para um tipo de documento em relação ao fluxo " +"de trabalho ao qual está anexado. Essa URL é diferente da URL do tipo de documento canônico." #: serializers.py:116 msgid "Primary key of the destination state to be added." -msgstr "" +msgstr "Chave primária do estado de destino a ser adicionado." #: serializers.py:120 msgid "Primary key of the origin state to be added." -msgstr "" +msgstr "Chave primária do estado de origem a ser adicionado." #: serializers.py:218 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 "" +msgstr "URL da API que aponta para um fluxo de trabalho em relação ao documento ao qual está anexado. Essa URL é diferente da URL do fluxo de trabalho canônico." #: serializers.py:227 msgid "A link to the entire history of this workflow." -msgstr "" +msgstr "Uma ligação para todo o histórico deste fluxo de trabalho." #: serializers.py:259 msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "" +msgstr "Lista separada por vírgula das chaves primárias do tipo de documento às quais este fluxo de trabalho será anexado." #: serializers.py:319 msgid "Primary key of the transition to be added." -msgstr "" +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 "" +msgstr "Atribuir fluxos de trabalho ao tipo de documento deste documento para que este documento execute esses fluxos de trabalho." #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" -msgstr "" +msgstr "Não há fluxo de trabalho para este documento" #: views/workflow_instance_views.py:52 #, python-format msgid "Workflows for document: %s" -msgstr "" +msgstr "Fluxos de trabalho para documento: %s" #: views/workflow_instance_views.py:83 msgid "" "This view will show the state changes as a workflow instance is " "transitioned." -msgstr "" +msgstr "Esta visualização mostrará as mudanças de estado à medida que uma instância de fluxo de trabalho é transferida." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "" +msgstr "Não há detalhes para esta instância de fluxo de trabalho" #: views/workflow_instance_views.py:90 #, python-format msgid "Detail of workflow: %(workflow)s" -msgstr "" +msgstr "Detalhe do fluxo de trabalho: %(workflow)s" #: views/workflow_instance_views.py:114 #, python-format msgid "Document \"%s\" transitioned successfully" -msgstr "" +msgstr "Documento \"%s\", transição com sucesso" #: views/workflow_instance_views.py:123 msgid "Submit" @@ -450,270 +454,271 @@ msgstr "Submeter" #: views/workflow_instance_views.py:125 #, python-format msgid "Do transition for workflow: %s" -msgstr "" +msgstr "Fazer a transição para o fluxo de trabalho: %s" #: views/workflow_proxy_views.py:46 msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" +msgstr "Associar um fluxo de trabalho a alguns tipos de documentos e " +"documentos desses tipos serão listados nesta vista." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" -msgstr "" +msgstr "Não há documentos executando este fluxo de trabalho" #: views/workflow_proxy_views.py:53 #, python-format msgid "Documents with the workflow: %s" -msgstr "" +msgstr "Documentos com o fluxo de trabalho: %s" #: views/workflow_proxy_views.py:70 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 "Crie alguns fluxos de trabalho e associe-os a um tipo de documento. Fluxos de trabalho ativos serão mostrados aqui e os documentos para os quais estão sendo executados." #: views/workflow_proxy_views.py:74 msgid "There are no workflows" -msgstr "" +msgstr "Não há fluxos de trabalho" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Não existem documentos neste estado de fluxo de trabalho" #: views/workflow_proxy_views.py:97 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" -msgstr "" +msgstr "Documentos no fluxo de trabalho \"%s\", estado \"%s\"" #: views/workflow_proxy_views.py:142 views/workflow_views.py:511 msgid "Create states and link them using transitions." -msgstr "" +msgstr "Criar estados e os vincule usando transições." #: views/workflow_proxy_views.py:145 msgid "This workflow doesn't have any state" -msgstr "" +msgstr "Este fluxo de trabalho não possui nenhum estado" #: views/workflow_proxy_views.py:148 views/workflow_views.py:517 #, python-format msgid "States of workflow: %s" -msgstr "" +msgstr "Estados do fluxo de trabalho: %s" #: views/workflow_views.py:72 msgid "Available workflows" -msgstr "" +msgstr "Fluxos de trabalho disponíveis" #: views/workflow_views.py:73 msgid "Workflows assigned this document type" -msgstr "" +msgstr "Fluxos de trabalho atribuídos a esse tipo de documento" #: views/workflow_views.py:83 msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "" +msgstr "A remoção de um fluxo de trabalho de um tipo de documento também removerá todas as instâncias em execução desse fluxo de trabalho." #: views/workflow_views.py:87 #, python-format msgid "Workflows assigned the document type: %s" -msgstr "" +msgstr "Fluxos de trabalho atribuídos ao tipo de documento: %s" #: views/workflow_views.py:132 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 "Os fluxos de trabalho armazenam uma série de estados e acompanham o estado atual de um documento. As transições são usadas para alterar o estado atual para um novo." #: views/workflow_views.py:137 msgid "No workflows have been defined" -msgstr "" +msgstr "Nenhum fluxo de trabalho foi definido" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "" +msgstr "Excluir fluxo de trabalho: %s?" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "" +msgstr "Edit workflow: %s" #: views/workflow_views.py:196 msgid "Available document types" -msgstr "" +msgstr "Tipos de documentos disponíveis" #: views/workflow_views.py:197 msgid "Document types assigned this workflow" -msgstr "" +msgstr "Tipos de documentos atribuídos a esse fluxo de trabalho" #: views/workflow_views.py:207 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 "Remover um tipo de documento de um fluxo de trabalho também removerá todas as instâncias em execução desse fluxo de trabalho para documentos do tipo de documento que acabou de ser removido." #: views/workflow_views.py:212 #, python-format msgid "Document types assigned the workflow: %s" -msgstr "" +msgstr "Tipos de documentos atribuídos ao fluxo de trabalho: %s" #: views/workflow_views.py:265 #, python-format msgid "Create a \"%s\" workflow action" -msgstr "" +msgstr "Criar \"%s\" ação de fluxo de trabalho" #: views/workflow_views.py:305 #, python-format msgid "Delete workflow state action: %s" -msgstr "" +msgstr "Remover a ação do estado do fluxo de trabalho: %s" #: views/workflow_views.py:328 #, python-format msgid "Edit workflow state action: %s" -msgstr "" +msgstr "Editar a 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 "" +msgstr "As ações do estado do fluxo de trabalho são macros que são executadas quando os documentos entram ou saem do estado em que residem." #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" -msgstr "" +msgstr "Não há ações para este estado de fluxo de trabalho" #: views/workflow_views.py:375 #, python-format msgid "Actions for workflow state: %s" -msgstr "" +msgstr "Ações para o estado do fluxo de trabalho: %s" #: views/workflow_views.py:409 msgid "New workflow state action selection" -msgstr "" +msgstr "Nova seleção de ação para estado do fluxo de trabalho" #: views/workflow_views.py:430 #, python-format msgid "Create states for workflow: %s" -msgstr "" +msgstr "Criar estados para fluxo de trabalho: %s" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "" +msgstr "Remover estados para fluxo de trabalho: %s?" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "" +msgstr "Editar estados para fluxo de trabalho: %s" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" -msgstr "" +msgstr "Este fluxo de trabalho não possui estados" #: views/workflow_views.py:540 #, python-format msgid "Create transitions for workflow: %s" -msgstr "" +msgstr "Criar transições para fluxo de trabalho: %s" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "" +msgstr "Criar transições para fluxo de trabalho: %s" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "" +msgstr "Editar transições para fluxo de trabalho: %s" #: views/workflow_views.py:635 msgid "" "Create a transition and use it to move a workflow from one state to " "another." -msgstr "" +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" -msgstr "" +msgstr "Este fluxo de trabalho não tem transições" #: views/workflow_views.py:643 #, python-format msgid "Transitions of workflow: %s" -msgstr "" +msgstr "Transições do fluxo de trabalho: %s" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "" +msgstr "Erro ao atualizar eventos desencadeados na transição de fluxo de trabalho; %s" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "" +msgstr "Eventos desencadeados na transição de fluxo de trabalho atualizados com êxito" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "" +msgstr "Eventos desencadeados na transição de fluxo de trabalho para executar automaticamente" #: views/workflow_views.py:698 #, python-format msgid "Workflow transition trigger events for: %s" -msgstr "" +msgstr "Eventos desencadeados na transição de fluxo de trabalho: %s" #: views/workflow_views.py:737 msgid "Launch all workflows?" -msgstr "" +msgstr "Iniciar todos os fluxos de trabalho" #: views/workflow_views.py:739 msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "" +msgstr "Isto iniciará todos os fluxos de trabalho criados depois que os documentos já foram enviados." #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." -msgstr "" +msgstr "Iniciar de fluxo de trabalho na fila com sucesso" #: views/workflow_views.py:774 #, python-format msgid "Preview of: %s" -msgstr "" +msgstr "Pré-visualização de: %s" #: workflow_actions.py:22 msgid "Document label" -msgstr "" +msgstr "Etiqueta do documento" #: workflow_actions.py:25 msgid "" "The new label to be assigned to the document. Can be a string or a template." -msgstr "" +msgstr "O novo etiqueta a ser atribuído ao documento. Pode ser uma string ou um template." #: workflow_actions.py:30 msgid "Document description" -msgstr "" +msgstr "Descrição do documento" #: workflow_actions.py:33 msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "" +msgstr "A nova descrição a ser atribuída ao documento. Pode ser uma string ou um modelo." #: workflow_actions.py:40 msgid "Modify the properties of the document" -msgstr "" +msgstr "Modificar as propriedades do documento" #: workflow_actions.py:62 #, python-format msgid "Document label template error: %s" -msgstr "" +msgstr "Erro de modelo de etiqueta de documento: %s" #: workflow_actions.py:74 #, python-format msgid "Document description template error: %s" -msgstr "" +msgstr "Erro do modelo de descrição do documento: %s" #: workflow_actions.py:90 msgid "URL" -msgstr "" +msgstr "URL" #: workflow_actions.py:93 msgid "" @@ -721,19 +726,21 @@ msgid "" " 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 "" +msgstr "Pode ser um endereço IP, um domínio ou um modelo. Os modelos recebem a instância de entrada do log de fluxo de trabalho como parte de seu contexto por meio da variável \"entry_log\"." +" The \"entry_log\" por sua vez, fornece o \"workflow_instance\", \"datetime\"," +" \"transition\", \"user\", e \"comment\" atributos." #: workflow_actions.py:103 msgid "Timeout" -msgstr "" +msgstr "Tempo esgotado" #: workflow_actions.py:105 msgid "Time in seconds to wait for a response." -msgstr "" +msgstr "Tempo em segundos para esperar por uma resposta." #: workflow_actions.py:109 msgid "Payload" -msgstr "" +msgstr "Carga" #: workflow_actions.py:112 msgid "" @@ -742,23 +749,24 @@ msgid "" " 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 "" +msgstr "Um documento JSON para incluir na solicitação. Também pode ser um modelo que retorne um documento JSON. Os modelos recebem a instância de entrada do log de fluxo de trabalho como parte de seu contexto por meio da variável " +"\"entry_log\". The \"entry_log\" por sua vez, fornece o \"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\" atributos." #: workflow_actions.py:125 msgid "Perform a POST request" -msgstr "" +msgstr "Executa uma solicitação POST" #: workflow_actions.py:144 #, python-format msgid "URL template error: %s" -msgstr "" +msgstr "Erro modelo de URL: %s" #: workflow_actions.py:155 #, python-format msgid "Payload template error: %s" -msgstr "" +msgstr "Erro modelo de carga: %s" #: workflow_actions.py:164 #, python-format msgid "Payload JSON error: %s" -msgstr "" +msgstr "Erro carga JSON: %s" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo index 34c49e341a37fcda80df5cacb6bee49e3dbc3cb4..0a6ac86346c362edaae9c79c0e1f03bc90f88ba1 100644 GIT binary patch literal 32385 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 delta 1979 zcmYk6Uu+ar6o+pq*4Bd6LeUCrr!19HplpE_G(_06v_b6J?H?cp1Jj+`?!fHMI=kBl zQC8k~FvfVnMAI~qszej1Y#-UVx7*dSNLaDG= z9nZsV#*0uAepTglD3yH+rLy1PHux8urJbAEjZmFK#yxNWCgDw3dV(Oftg`WOSYZ4L z6v_XDvapWw+hH@5mUO{RI8YrQhKQwHNRjFVxEh{<(uy~s7e%L@6s~ERJQDP&sU<^J6lTZ?P@Hu!IZiF|WR9@er)FW^J%7GG4lsyEc)fp&? zz0rdHQqlWNh@_uFsrWN^9DY${A0Np<=HX7b2;~4jKuLTH%0~4}iZaWfDAEhJzyT=l z9Vji$K-uqHi9jlU3rfZBLW)pVpe(!wX`$MTi^-x5VN`j@&6b17S~F)HhY^)Rk+f!V(`&Y) z7C>o>C?>|GFR6}79Nui{O+UU47a37iaRx6pM pTIW}qX2$%!M(G(hDloqkyIU$7v$*i9Ksyin z9QF(BBJ4kyZ+AWr;xxDeeggJD@4E+{0r$Z#!5_g3;BVk5@HzM~_yY9)e}SKZf7kP` z!6l6U1%C!VJ0Zjn{imSUJ-Z;pB6zvxGI$B&4e%=11%19hfj++{pwIgm==1m!`~rLh zdYw1m3b^p05HG3^?H6n&M_dfsB6U{mR-zS1 z4rQY1IT~ma(pOU#s&~9Q?bu{i^v$H&OojC!<76;k!^%;)-X!sG#EPO3M~^sOC9TrQ zOwo;`tFrayph3cEZ0R6De~;ni3Zpn~QYlfWTI9Xk9i=R-gFaU}$7Mv<=pQ(8!A=}} z&&DQNh18J~sc3tvv)kx#u8j*ic9_J$x5dx~eH~JxdoSqmIPvbmmUJA_dVB3g(Ed7D zyGHGA!mBr~w9y*hA$-s`QrT2Ge}g@}$Hr;UN|R_fs9_<89Q0XcA$1X~7#3`qmPgLz zVXJj;aL{yKAsO)FW~8&0srH&y=JO0V&TK2Kby~S=tu#72o$dK?)|&0cEv+0LAm~qW zBqCJOlQ4;gFGWxHP_R?>7z&ZiLR@CoW!id)*C#&WG< zHYCaESX*(I)u_m-iq;e}L-}>*1UVjdvw0OE8;1_qF3 zK_LDMWOD#%ekKM6As{UQq=76;PC)Tw0W<;0V-kczI$, 2011 # Vítor Figueiró , 2012 @@ -21,21 +21,21 @@ msgstr "" #: apps.py:17 msgid "Dynamic search" -msgstr "" +msgstr "Pesquisa dinâmica" #: classes.py:100 msgid "No search model matching the query" -msgstr "" +msgstr "Nenhum modelo de pesquisa correspondente à consulta" #: forms.py:9 msgid "Match all" -msgstr "" +msgstr "Corresponder a todos" #: forms.py:10 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 "Quando assinalado, somente os resultados que corresponderem a todos os campos serão devolvidos. Quando não assinalado os resultados corresponderem a pelo menos um campo, serão devolvidos." #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" @@ -48,30 +48,30 @@ msgstr "Pesquisa" #: links.py:11 views.py:86 msgid "Advanced search" -msgstr "Procura Avançada" +msgstr "Pesquisa Avançada" #: links.py:15 msgid "Search again" -msgstr "" +msgstr "Pesquisar novamente" #: templates/dynamic_search/search_box.html:24 msgid "Advanced" -msgstr "" +msgstr "Avançado" #: views.py:25 msgid "Try again using different terms. " -msgstr "" +msgstr "Tente novamente usando termos diferentes." #: views.py:27 msgid "No search results" -msgstr "" +msgstr "Nenhum resultado de pesquisa" #: views.py:29 #, python-format msgid "Search results for: %s" -msgstr "" +msgstr "Resultados de pesquisa para: %s" #: views.py:74 #, python-format msgid "Search for: %s" -msgstr "" +msgstr "Pesquisar por: %s" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo index 4fded9a497621030c1a7dd8b62e27f333eaa386d..78f46edaa9989c30f4ac4c024bde9afaf0c2f9ca 100644 GIT binary patch literal 3178 zcma)-O>7%Q6vqcz3YgE9Zvu1*4J5Q1rzxndLn@Ufg`&8P5~mzMLgU?uz3qBunVD@G z1nLc`5<)^ysS>Bcp&UR+AbR6MK%y7K0k}{hRa}ZVAdW~N@qe>p$98JO$m5@9cjnE! z|9kWN%a)C28QMqXGn0m*+0lAmw-_wRyO%Fg-m2OypA0!aIO4s!4-ko^4>d{@*<-nf9feA3+~Re-eEsIyJIQ?QwMSml~b#3G{ntfQAscn9zAC_H-`N zn(~p_!{{7+6rD70H`0e1`31LJBQ5Sgr(B{uyc?b3)ozpnq$fKNhSC^ro07|uGPQ=Q zB`#8~>c?eh@!G~J_2_!2G@BMyVrIl`+>&fYYo&RfMZ(5uqp-zIUN@nRGqN$shfV*i zVv~WB={#(PzI!ZP;}I;cn`Zcu(iOMsHQu?C$_R#?084q2tau}KC4)b-#+x-t84x|Au;q{coin6e7*VhHG@<0OY6ExI0#dAq$wbDGnx?zFR_E)!N2`UDqA z!iC`m`}ha#!HSO-J0c)HeVI&z_@(f%@lqTj4hUTLz_6pm$y}g&B^~(YKNguH-2EcX zOA)aJI`V>58gGm3oT}@d7`9O4NL`YCjYQQ&Leh1o1~gY(%TUG;J?(POjIAxlo?Y42 zGr%S*#>y6}3EhyE)tZvxiJmI2BL$>8P`z_{_GF9ciBv7)iqI*IN+j;VnvX7qi$-cT zrxo3y;BXWiliDC06WrOWKff$ zRpE2kEN|q}NIufEHmj7&%gf7SmMp|e^3+(UT4i0V)#VnQGmufsloM~KoZ0edsd~6N zv*ymOvGLMDm0H}Dpym?T%2T$SB_hU!51T?8X{Q!zhl0Ip^JvEwb$&x0I5a?IiZPX* zfzfffRm>PS{4KL^%kw5z5UywA%> cnoy-p8OF#K9NL#sltARcqK)bPMYy2<0#t-!Ad$l@Dz2Rj=R{vGG3w{e4BWe z7-F9N9_j-fa`ZZ@=WNqjn$dgW;%0r_7EOLVs2}uiXl*V((`Wm3B&`QCaGrY{ns_;0 zHnO#%AM}m*Ryx5bH155cU!)H29q~>yv|iVEM#t>`NWE}=;NV8UO$Q diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index 31789a8410..2272ffbbf9 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 "" @@ -19,11 +19,11 @@ msgstr "" #: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" -msgstr "Events" +msgstr "Eventos" #: apps.py:42 apps.py:68 msgid "Date and time" -msgstr "" +msgstr "Data e hora" #: apps.py:45 apps.py:71 msgid "Actor" @@ -31,7 +31,7 @@ msgstr "Actor" #: apps.py:48 apps.py:75 msgid "Event" -msgstr "" +msgstr "Evento" #: apps.py:51 apps.py:79 msgid "Target" @@ -39,11 +39,11 @@ msgstr "Destino" #: apps.py:55 msgid "Action object" -msgstr "" +msgstr "Objeto de ação" #: apps.py:60 forms.py:12 forms.py:69 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: apps.py:63 forms.py:16 forms.py:73 msgid "Label" @@ -51,16 +51,16 @@ msgstr "Nome" #: apps.py:84 msgid "Seen" -msgstr "" +msgstr "Visto" #: classes.py:71 #, python-format msgid "Unknown or obsolete event type: %s" -msgstr "" +msgstr "Tipo de evento desconhecido ou obsoleto: %s" #: forms.py:20 forms.py:77 msgid "Subscription" -msgstr "" +msgstr "Subscrição" #: forms.py:22 forms.py:79 msgid "No" @@ -68,31 +68,31 @@ msgstr "Não" #: forms.py:23 forms.py:80 msgid "Subscribed" -msgstr "" +msgstr "Subscrito" #: html_widgets.py:57 msgid "System" -msgstr "" +msgstr "Sistema" #: links.py:45 msgid "My events" -msgstr "" +msgstr "Meus eventos" #: links.py:63 models.py:66 views.py:80 msgid "Event subscriptions" -msgstr "" +msgstr "Subscrição de eventos" #: links.py:67 msgid "Mark as seen" -msgstr "" +msgstr "Marcar como visto" #: links.py:71 msgid "Mark all as seen" -msgstr "" +msgstr "Marcar todos como visto" #: links.py:76 msgid "Subscriptions" -msgstr "" +msgstr "Subscrições" #: models.py:24 msgid "Name" @@ -100,11 +100,11 @@ msgstr "Nome" #: models.py:28 msgid "Stored event type" -msgstr "" +msgstr "Tipo de evento guardado" #: models.py:29 msgid "Stored event types" -msgstr "" +msgstr "Tipos de evento guardados" #: models.py:55 models.py:82 models.py:112 msgid "User" @@ -116,31 +116,31 @@ msgstr "Tipo de evento" #: models.py:65 msgid "Event subscription" -msgstr "" +msgstr "Subscrição de evento" #: models.py:86 msgid "Action" -msgstr "" +msgstr "Açao" #: models.py:88 msgid "Read" -msgstr "" +msgstr "Ler" #: models.py:92 msgid "Notification" -msgstr "" +msgstr "Notificacar" #: models.py:93 views.py:119 msgid "Notifications" -msgstr "" +msgstr "Notificações" #: models.py:122 msgid "Object event subscription" -msgstr "" +msgstr "Subscrição de evento de objeto" #: models.py:123 msgid "Object event subscriptions" -msgstr "" +msgstr "Subscrição de eventos de objetos" #: permissions.py:10 msgid "Access the events of an object" @@ -149,29 +149,29 @@ msgstr "Aceder aos eventos de um objeto" #: views.py:59 #, python-format msgid "Error updating event subscription; %s" -msgstr "" +msgstr "Erro ao actualizar subscrição de evento; %s" #: views.py:64 msgid "Event subscriptions updated successfully" -msgstr "" +msgstr "Subscrição de eventos atualizadas com sucesso" #: views.py:114 msgid "Subscribe to global or object events to receive notifications." -msgstr "" +msgstr "Subscrever eventos globais ou de objeto para receber notificações." #: views.py:117 msgid "There are no notifications" -msgstr "" +msgstr "Não há notificações" #: views.py:164 msgid "" "Events are actions that have been performed to this object or using this " "object." -msgstr "" +msgstr "Eventos são ações que foram realizadas para este objeto ou usando por este objeto." #: views.py:167 msgid "There are no events for this object" -msgstr "" +msgstr "Não há eventos para este objeto" #: views.py:169 #, python-format @@ -181,16 +181,16 @@ msgstr "Eventos para: %s" #: views.py:209 #, python-format msgid "Error updating object event subscription; %s" -msgstr "" +msgstr "Erro ao actualizar subscrição de evento para objecto; %s" #: views.py:215 msgid "Object event subscriptions updated successfully" -msgstr "" +msgstr "Subscrição de eventos para objecto atualizadas com sucesso" #: views.py:248 #, python-format msgid "Event subscriptions for: %s" -msgstr "" +msgstr "Subscrição de eventos para: %s" #: views.py:280 #, python-format diff --git a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.mo index 9289032e11bcbc75ba8b31c92fee1375f3dbd6e5..898126218087a2c7aa092b0219c3751e2f0a141d 100644 GIT binary patch literal 5777 zcmb7|-)|gO6~~AEOiV**`O%aXxP_*PiFcitl!i?LNgSJ6iJg#`P~f3l?_7H?ot@dt z+*!wncT}~ighY$P3#gT-c!&TMRPn-#A9&%3N<8L|Kmwi+e9oO8`@_4AGV=O6Gkfp( z`90?z`|gtuy&Z7P^Lduf&p#Ffi{N7q@{8;6LqTvJd>VWX{66?N_!Dpjd=oqa{sKG> zegqx@{|9~+JoIo7JOw@veiA$jei2*+KM!`n1@H~tKeab$-xdNak>ji+#bP+bKonW?0W}%3;Z)E`d)^d5{ETV@^Tx*9nS$w@;MZH zC58|15ud-zM=nJ8SW3Kv({eq{NBkbX2$8QTc_$nY`$)U56VmJBATbs{8+_!Fn2CLu z%pA=Uo%KOzAK*p>m0G9iujFWK`EU9crglFHPDe%WS-*ZsjI7&EP`1Rc>QLPiI-R zF-&dWq!}xmOYKJPjPj}m&slIGcS%<}+tyLEQ%F>?+2+2T8tt%RVAW=l4ykVjiya+r znRH@|4~NljjqO?WTv*d!k8FJGv_RYmYpYlgH<_a?x_*p zw6V=PCfvIv%Qw2#Nqi(K(*y*Udkt6f(XM8UF2#>n>FvTTwcRoCBy-fZ7Q51{7SvQ@5(XZn zCbOZzN-xQW-@431o263{gg9~j+YFBsvZa=)5Y+WFhds94@z&vIszO83@mI&88r34@ zx1lpCZlYN%mTZxqW0jWKY_3S4XMz95-_4F?u%vIbfBf5u)uU?V?ar7fubJ^TL+zr6 zcT%Ebd-^)cO|TL>lg2tyG0_SxBj<|VFi~*DZlpTh@!>$$R;s&_dU`_^G^T^q*32i|K+R&OLqU54aS>4pUFDyvL%0TzEjr2xD%&!%FZ;-*N7hE?kPYWJo zJ=3UIQjL)iBpY*m(;>S>%~*YPjJm# z(V1(k(=4+{J1O;59p@&}>V}Q_TAj7AZadE0hRQ`+&l@2oF3P7l_Jm76AQ zEXD04+hPG7C&0LG}R7Z_v*q*gi-1CpwxrH;TxIK3)R?nSNCuh&hOqgyG z8E68Kgg;up+n!wZ9l2U9p3gdCzVV*n!!ZwWo0$= zi0g#5D}r<}|0K*i_1&^)9n_>OtLg~OwulsZXY=u_kur}add-q*G#pRjLv^UdPA#2{{IF|XXG+hcHmARkk z%_ceDSBjfzx~+alvf|pUoIxoeu#?P1lNGs?P*c^FH!Wl3xYcEFqZRCa(8HiwtoJ(> zhE~Dqnyl*$V5Z1MTSZOwIqz9PY?7*T~dYaB{pw42V$5;*W#6NJqM0y|P|0W>y`r;F9SlQJ>hrlL#;IiQG~~ zFhcr4ElL>~n|AMP+ICWpSrZF+u!U39_p*SKT4awWpsK;Ogo)4k(K3-g7yE`8kNNVV z-H2@BOj{FuMkE<4%i@lhQjOvT^d6ZjOLjy2QaVYmM@*R=QALNKmZiN-iwg@)+?f)I z&}O|P-o4Xj@SWI*2wXYP5yLvf_f#sz)SN8h&6wIoM)UrJOzP5m6aMFb2{fbrwJxD9ykO#2^6Vg6&{%$xklLP0cG&D5)$+W#INnOiImR2usW, YEAR. -# +# # Translators: # Emerson Soares , 2019 # Manuela Silva , 2019 -# +# #, fuzzy msgid "" msgstr "" @@ -29,7 +29,7 @@ msgstr "Nome" #: apps.py:56 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" -msgstr "" +msgstr "Metadados do arquivo" #: apps.py:101 msgid "Return the value of a specific file metadata." @@ -37,44 +37,44 @@ msgstr "" #: apps.py:113 apps.py:117 apps.py:170 apps.py:179 msgid "File metadata key" -msgstr "" +msgstr "Devolve o valor de um metadado de arquivo específico." #: apps.py:174 apps.py:183 msgid "File metadata value" -msgstr "" +msgstr "Valor dos metadados do arquivo" #: dependencies.py:14 msgid "" "Library and program to read and write meta information in multimedia files." -msgstr "" +msgstr "Biblioteca e programa para ler e gravar meta informações em arquivos multimedia." #: drivers/exiftool.py:26 msgid "EXIF Tool" -msgstr "" +msgstr "Ferramenta EXIF" #: events.py:12 msgid "Document version submitted for file metadata processing" -msgstr "" +msgstr "Versão do documento submetida para processamento de metadados de arquivo" #: events.py:16 msgid "Document version file metadata processing finished" -msgstr "" +msgstr "Processamento de metadados do arquivo da versão do documento concluído" #: links.py:24 msgid "Attributes" -msgstr "" +msgstr "Atributos" #: links.py:31 links.py:34 msgid "Submit for file metadata" -msgstr "" +msgstr "Submeter para metadados de arquivo" #: links.py:41 msgid "Setup file metadata" -msgstr "" +msgstr "Configuração de Metadados em ficheiro" #: links.py:46 msgid "File metadata processing per type" -msgstr "" +msgstr "Processamento de metadados de arquivo por tipo" #: methods.py:38 msgid "get_file_metadata(< file metadata dotted path >)" @@ -82,27 +82,27 @@ msgstr "" #: methods.py:41 msgid "Return the specified document file metadata entry." -msgstr "" +msgstr "Devolve a entrada de metadados do arquivo de documento especificado." #: methods.py:62 msgid "Return the specified document version file metadata entry." -msgstr "" +msgstr "Devolve a entrada de metadados do arquivo de versão do documento especificado." #: models.py:22 msgid "Driver path" -msgstr "" +msgstr "Caminho para o driver" #: models.py:25 msgid "Internal name" -msgstr "" +msgstr "Nome interno" #: models.py:30 models.py:74 msgid "Driver" -msgstr "" +msgstr "Driver" #: models.py:31 msgid "Drivers" -msgstr "" +msgstr "Drivers" #: models.py:51 msgid "Document type" @@ -110,43 +110,43 @@ msgstr "Tipo de documento" #: models.py:55 msgid "Automatically queue newly created documents for processing." -msgstr "" +msgstr "Fila automatica de documentos recém-criados para processamento." #: models.py:62 msgid "Document type settings" -msgstr "" +msgstr "Configurações de tipo de documento" #: models.py:63 msgid "Document types settings" -msgstr "" +msgstr "Configurações de tipos de documento" #: models.py:78 msgid "Document version" -msgstr "" +msgstr "Versão do documento" #: models.py:84 models.py:100 msgid "Document version driver entry" -msgstr "" +msgstr "Entrada do driver da versão do documento" #: models.py:85 msgid "Document version driver entries" -msgstr "" +msgstr "Entradas do driver da versão do documento" #: models.py:92 msgid "Attribute count" -msgstr "" +msgstr "Contagem de atributos" #: models.py:104 msgid "Name of the file metadata entry." -msgstr "" +msgstr "Nome da entrada de metadados do arquivo." #: models.py:105 msgid "Key" -msgstr "" +msgstr "Chave" #: models.py:108 msgid "Value of the file metadata entry." -msgstr "" +msgstr "Valor da entrada de metadados do arquivo." #: models.py:109 msgid "Value" @@ -154,37 +154,37 @@ msgstr "Valor" #: models.py:114 msgid "File metadata entry" -msgstr "" +msgstr "Entrada de metadados do arquivo" #: models.py:115 msgid "File metadata entries" -msgstr "" +msgstr "Entradas de metadados de arquivos" #: permissions.py:10 msgid "Change document type file metadata settings" -msgstr "" +msgstr "Alterar configurações de metadados do arquivo de tipo de documento" #: permissions.py:15 msgid "Submit document for file metadata processing" -msgstr "" +msgstr "Submeter documento para processamento de metadados de arquivo" #: permissions.py:19 msgid "View file metadata" -msgstr "" +msgstr "Ver metadados do arquivo" #: queues.py:12 msgid "Process document version" -msgstr "" +msgstr "Versão do documento do processado" #: settings.py:14 msgid "" "Set new document types to perform file metadata processing automatically by " "default." -msgstr "" +msgstr "Definir novos tipos de documentos para executar o processamento de metadados de arquivos automaticamente por padrão." #: settings.py:25 msgid "Arguments to pass to the drivers." -msgstr "" +msgstr "Argumentos para passar para os drivers." #: views.py:35 msgid "" @@ -193,38 +193,38 @@ msgid "" "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 "" +msgstr "Metadados de arquivo são os atributos do arquivo do documento. Eles podem variar de informações de câmera usadas para tirar uma foto para o autor que criou um arquivo. Metadados de arquivo são definidos quando o arquivo do documento foi criado. Atributos de metadados de arquivo residem no próprio arquivo Eles não são os mesmos que os metadados do documento, que são definidos pelo utilizador e residem no base de dados. " #: views.py:43 views.py:62 msgid "No file metadata available." -msgstr "" +msgstr "Nenhum metadado de arquivo disponível" #: views.py:46 #, python-format msgid "File metadata drivers for: %s" -msgstr "" +msgstr "Drivers de metadados de arquivo para: %s" #: views.py:65 #, python-format msgid "File metadata attribures for: %(document)s, for driver: %(driver)s" -msgstr "" +msgstr "Atributos de metadados de arquivo para: %(document)s, pelo driver: %(driver)s" #: views.py:88 msgid "Submit the selected document to the file metadata queue?" msgid_plural "Submit the selected documents to the file metadata queue?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Submeter o documento selecionado para a fila de metadados do arquivo?" +msgstr[1] "Submeter os documentos selecionados para a fila de metadados do arquivo?" #: views.py:114 #, python-format msgid "Edit file metadata settings for document type: %s" -msgstr "" +msgstr "Editar configurações de metadados do arquivo para o tipo de documento: %s" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." -msgstr "" +msgstr "Enviar todos os documentos de um tipo para processamento de metadados de arquivo." #: views.py:147 #, python-format msgid "%(count)d documents added to the file metadata processing queue." -msgstr "" +msgstr "%(count)d documentos adicionados à fila de processamento de metadados do arquivo" diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo index fe0ebca0d79a6db56cc48fab41ed8b24796510c9..caf3754a415c4b3c529fbac3ece1b0a0f7443276 100644 GIT binary patch literal 6674 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 delta 890 zcmYk)Pe{{Y9LMqRn(nthYP#*0(@IT6Q5&w>$%_~+5X4ItBmaepDC!PV6grF!si%S- zBDz_JPCX)pi?0s9XxvI{TU5<;Mwch_B_w``+T40S@xA*{2s4*ZnO^i z6?!&c){mnX_@IS@W?dLTA2WCf?_dZgF^+Q>!40g!N7#g0n801E$M@Kd2Uu-Zv|kLG z`Qa2}7-98w^idn!M*gx14C4%5#zj=X$Ed`gqSn8~7W{x0@f&LXPb8oP`AA^|`-pGt z3~Kmc?B5^vQ32ObMc71b{1CPAHZD-5H#oreI?t>PN3a8zP>DXlR(yd`+(T7tAA9i# z+lX&x479P&Dw#!+wY#XR7{^B3!8GooPV@!I!%mPb>^Exu87kpU%5w`ds08NlCgxEG zevL(K{Eh)@>=3WwSIprlYGRhvnm2?>>>jEzQ>Z`>P=QuZ3Dwedby}-Z|KGG;jpFIr zi{(dA#}{pQjjli{lkQFrM*))bN>ie$lCDUnR?~x0>GcjOO%>8%$f?{oOZl2~C3?te zaqZr~Krh-{ZK%&pd%m0UGO>aU=V#Yf=2zDW?qxXVZbW, 2011 # Roberto Rosario, 2012 @@ -35,15 +35,15 @@ msgstr "Ligações inteligentes" #: events.py:12 msgid "Smart link created" -msgstr "" +msgstr "Ligação inteligente criada" #: events.py:15 msgid "Smart link edited" -msgstr "" +msgstr "Ligação inteligente editada" #: forms.py:36 msgid "Foreign document field" -msgstr "" +msgstr "Campo de documento externo" #: links.py:26 msgid "Create condition" @@ -59,7 +59,7 @@ msgstr "Editar" #: links.py:46 msgid "Conditions" -msgstr "" +msgstr "Criar condição" #: links.py:51 views.py:243 msgid "Create new smart link" @@ -67,7 +67,7 @@ msgstr "Criar nova ligação inteligente" #: links.py:63 models.py:40 msgid "Document types" -msgstr "" +msgstr "Tipos de documentos" #: links.py:73 msgid "Documents" @@ -150,24 +150,24 @@ msgstr "" #: models.py:35 msgid "Dynamic label" -msgstr "" +msgstr "Etiqueta dinâmica" #: models.py:37 models.py:199 msgid "Enabled" -msgstr "" +msgstr "Ativado" #: models.py:47 models.py:175 msgid "Smart link" -msgstr "" +msgstr "Ligação inteligente" #: models.py:87 #, python-format msgid "Error generating dynamic label; %s" -msgstr "" +msgstr "Erro ao gerar etiqueta dinâmica; %s" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "" +msgstr "Esta ligação inteligente não é permitida para o tipo de documento selecionado." #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -175,15 +175,15 @@ msgstr "A inclusão é ignorada para o primeiro item." #: models.py:183 msgid "This represents the metadata of all other documents." -msgstr "" +msgstr "Isso representa os metadados de todos os outros documentos." #: models.py:184 msgid "Foreign document attribute" -msgstr "" +msgstr "Campo de documento externo" #: models.py:193 msgid "Expression" -msgstr "" +msgstr "Expressão" #: models.py:196 msgid "Inverts the logic of the operator." @@ -191,15 +191,15 @@ msgstr "Inverte a lógica do operador." #: models.py:197 msgid "Negated" -msgstr "" +msgstr "Negado" #: models.py:202 msgid "Link condition" -msgstr "" +msgstr "Condição para ligação" #: models.py:203 msgid "Link conditions" -msgstr "" +msgstr "Condições para ligação" #: models.py:211 msgid "not" @@ -207,7 +207,7 @@ msgstr "não" #: models.py:215 msgid "Full label" -msgstr "" +msgstr "Etiqueta completa" #: permissions.py:10 msgid "Create new smart links" @@ -229,25 +229,25 @@ msgstr "Ver ligações inteligentes" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "" +msgstr "Lista separada por vírgulas de chaves primárias do tipo de documento às quais esta ligação inteligente será anexado." #: serializers.py:141 #, python-format msgid "No such document type: %s" -msgstr "" +msgstr "Nenhum tipo de documento: %s" #: views.py:46 msgid "Available smart links" -msgstr "" +msgstr "Ligações inteligentes disponiveis" #: views.py:47 msgid "Smart links enabled" -msgstr "" +msgstr "Ligações inteligentes ativadas" #: views.py:79 #, python-format msgid "Smart links to enable for document type: %s" -msgstr "" +msgstr "Ativar ligações inteligentes para tipo de documento: %s" #: views.py:123 #, python-format @@ -257,67 +257,67 @@ msgstr "Erro na consulta de ligações inteligentes: %s" #: views.py:132 #, python-format msgid "Documents in smart link: %s" -msgstr "" +msgstr "Documentos na ligação inteligente: %s" #: views.py:135 #, python-format msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" +msgstr "Documentos na ligação inteligente \"%(smart_link)s\" relacionadas a \"%(document)s\"" #: views.py:160 msgid "Available document types" -msgstr "" +msgstr "Tipos de documentos disponiveis" #: views.py:161 msgid "Document types enabled" -msgstr "" +msgstr "Tipos de documentos activos" #: views.py:171 #, python-format msgid "Document type for which to enable smart link: %s" -msgstr "" +msgstr "Tipo documento para qual activar ligação inteligente: %s" #: views.py:188 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 "Os índices agrupam documentos em unidades, geralmente com propriedades semelhantes e de tipos iguais ou semelhantes. Ligações inteligentes permitem definir relações entre documentos, mesmo que estejam em índices diferentes e sejam de tipos diferentes." #: views.py:195 msgid "There are no smart links" -msgstr "" +msgstr "Não há ligações inteligentes" #: views.py:227 msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" +msgstr "As ligações inteligentes permitem definir relacionamentos entre documentos, mesmo que estejam em índices diferentes e sejam de tipos diferentes." #: views.py:232 msgid "There are no smart links for this document" -msgstr "" +msgstr "Não há ligações inteligentes para este documento" #: views.py:235 #, python-format msgid "Smart links for document: %s" -msgstr "" +msgstr "Ligações inteligentes para documento: %s" #: views.py:264 #, python-format msgid "Delete smart link: %s" -msgstr "" +msgstr "Remover ligações inteligentes: %s" #: views.py:279 #, python-format msgid "Edit smart link: %s" -msgstr "Editar Ligação inteligente: %s" +msgstr "Editar ligação inteligente: %s" #: views.py:302 msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" +msgstr "As condições são pequenas unidades lógicas que, quando combinadas, definem como a ligação inteligente se comportará." #: views.py:306 msgid "There are no conditions for this smart link" @@ -326,7 +326,7 @@ msgstr "" #: views.py:310 #, python-format msgid "Conditions for smart link: %s" -msgstr "" +msgstr "Não há condições para esta ligação inteligente: %s" #: views.py:338 #, python-format @@ -340,4 +340,4 @@ msgstr "Editar condição de ligação inteligente" #: views.py:409 #, python-format msgid "Delete smart link condition: \"%s\"?" -msgstr "" +msgstr "Remover condição de ligação inteligente: \"%s\"?" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.mo index 1b967e1ef7ecd86f0749287b1a26c94380c91213..513d8f3d992f463e9a190ae8662fa7c71ab756b7 100644 GIT binary patch delta 667 zcmY*VyKWRg5FBHJK}bj@!2v;k!Q~_b_!5MLK!OYheKUQxBhOBs=ON3{1x_t8oZtiz z5F>xWCiojHk@5$Gh?@0*V5HjW9`$rp?XdZCd-eU{)(3-g7kCW31MUMCKs(=n9pDN$ z0Iq>8;K_zDx4}=rt)GIY;OF3N@O$tAI0tso|GH(&A^6eejn*mno-r$PhN3Mv2fqM+ z1U~@(0ORc_0y1dF#jU;rv^VWw?`YoaCE?;VlH(%9_hP0p=NbxeuQe9ZIkju@k+N8g zE)%cjMG_r%-gd;4Bx_ApD5yQ8V;=&|gt!*%vD$J7CzuJsS=_|zV`%(j^O7O=ic3dD zsdPd%aL%o%S+HJWtCJj6$?y~1pEbMxYvzf01B+VA*SCISHRZx2)M;X*BAYx9Uxv?W zURRFAJ9a`#b_rL6vPi#Fk{8Ns`+S4p3EckIciLEIshSTtgf}crZ zr~jnwPb3zZm}l!pe+%SQ88gv~sPR*JhyE NQr}q53oW=XzX2Ziy8HkD delta 101 zcmeyyewaD*o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLbVde-FerZ?kPSp&0MZKw Ueu=rMo2N2nGP3&R=cY0M03pu{9smFU 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 4edc7769b9..f3c0af9520 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 "" @@ -18,16 +18,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 -msgid "Lock manager" +msgid "Gestor de bloqueio" msgstr "" #: models.py:17 msgid "Creation datetime" -msgstr "" +msgstr "Data e hora da criação" #: models.py:20 msgid "Timeout" -msgstr "" +msgstr "Tempo esgotado" #: models.py:23 msgid "Name" @@ -35,18 +35,18 @@ msgstr "Nome" #: models.py:29 msgid "Lock" -msgstr "" +msgstr "Bloqueio" #: models.py:30 msgid "Locks" -msgstr "" +msgstr "Bloqueios" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "" +msgstr "Caminho para a classe usar quando solicitar e libertar recursos bloqueados." #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "" +msgstr "Quantidade padrão de tempo em segundos após o qual um bloqueio de recurso será liberado automaticamente." diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index b25870d8aa002fe01e53ba79526bc1f5d4bb61a5..63813a3553e1aaad0ba04c133790e24316043d49 100644 GIT binary patch literal 9181 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 U$RJd7T#R_O$@Biir8^Pxe|M$`BLDyZ delta 629 zcmXxgF=!M)6oBCubI~MsYtA4hCo!&q2Zo4+kaQ`chgL^G5KK2_$7GYeov?eSSX~>N zfD8$ONCFB+>VS>q6(Ux4X|%Dju+_%G|834;-+nVY`{upfZ}(r9yWb~Ed&0Ot%n%V&ynyK<3<7OtTd zUO+9>#6^6B>m==>9`t+obpJ2vK_$A=Mgr8v>KNj!flaKlcE~0B+-~C=9FeZb7bcqc z6}8|A-oPr=w2=jTj7vx#LLV|gXpT0ZU#VZNf3QmMnp6lKny-Uii@#FFF@5lVTxCMN z)3NNL7jn-&HJzl5iEUedFc#KZCQd>VMVZZWX%wr-t#w*9Z4Z`7oNoD}@teVl$@Awf zi{znABR?7}`NQC{{}oirdFRQdU2BKDdi-f}Yv|Hlmu)*)F;Uik=cJLutvEFq1!pTJ zlSUfZ%=UZEAI?tsSJT%g9>m)=>-XYy)9;a?&nwb&Ei1)N;_uYvYLwkDBtMIbGn8;c N6MZtX>i=9>{Rh-QZHfQ@ diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 8951966828..393ee6b6ff 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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 "" @@ -19,33 +19,33 @@ msgstr "" #: apps.py:42 msgid "Mailer" -msgstr "" +msgstr "Mailer" #: apps.py:63 apps.py:84 msgid "Date and time" -msgstr "" +msgstr "Data e hora" #: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" -msgstr "" +msgstr "Mensagem" #: classes.py:81 msgid "Null backend" -msgstr "" +msgstr "Sem backend" #: events.py:7 permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" -msgstr "" +msgstr "Mailing" #: events.py:10 msgid "Email sent" -msgstr "" +msgstr "correio eletrónico enviado" #: forms.py:60 forms.py:122 msgid "" "Email address of the recipient. Can be multiple addresses separated by comma" " or semicolon." -msgstr "" +msgstr "Endereço de correio eletrónico do destinatário. Podem ser vários endereços separados por vírgula ou ponto e vírgula." #: forms.py:62 forms.py:124 msgid "Email address" @@ -61,15 +61,15 @@ msgstr "Corpo" #: forms.py:70 msgid "The email profile that will be used to send this email." -msgstr "" +msgstr "O perfil de correio eletrónico que será usado para enviar este correio eletrónico." #: forms.py:71 views.py:238 msgid "Mailing profile" -msgstr "" +msgstr "Perfil de correspondência" #: forms.py:76 msgid "Backend" -msgstr "" +msgstr "Backend" #: links.py:18 links.py:28 msgid "Email document" @@ -77,15 +77,15 @@ msgstr "Documento de correio eletrónico" #: links.py:24 links.py:32 msgid "Email link" -msgstr "Hiperçigação de correio eletrónico" +msgstr "Ligação de correio eletrónico" #: links.py:37 msgid "System mailer error log" -msgstr "" +msgstr "Registo de erros mailer" #: links.py:42 msgid "Create mailing profile " -msgstr "" +msgstr "Criar um perfil de correspondência" #: links.py:48 msgid "Delete" @@ -97,19 +97,19 @@ msgstr "Editar" #: links.py:58 msgid "Log" -msgstr "" +msgstr "Registo (log)" #: links.py:63 msgid "Mailing profiles list" -msgstr "" +msgstr "Lista de perfis de correspondência" #: links.py:68 msgid "Mailing profiles" -msgstr "" +msgstr "Perfis de correspondência" #: links.py:74 views.py:257 msgid "Test" -msgstr "" +msgstr "Teste" #: literals.py:7 #, python-format @@ -119,6 +119,10 @@ msgid "" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" +"Anexado a este email está o documento: {{ document }}\n" +"\n" +" --------\n" +" Este correio eletrónico foi enviado de %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -128,46 +132,50 @@ msgid "" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" +"Para acessar este documento, clique na seguinte Ligação: {{ link }}\n" +"\n" +"--------\n" +" Este correio eletrónico foi enviado de %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" -msgstr "" +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 "" +msgstr "Endereço do remetente. Alguns sistemas se recusará a enviar mensagens se este valor não estiver definido." #: mailers.py:32 msgid "Host" -msgstr "" +msgstr "Host" #: mailers.py:34 msgid "The host to use for sending email." -msgstr "" +msgstr "O host a ser usado para enviar email." #: mailers.py:39 msgid "Port" -msgstr "" +msgstr "Porta" #: mailers.py:41 msgid "Port to use for the SMTP server." -msgstr "" +msgstr "Porta a ser usada para o servidor SMTP." #: mailers.py:44 msgid "Use TLS" -msgstr "" +msgstr "Usar TLS" #: mailers.py:47 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 "" +msgstr "Se deve usar uma conexão TLS (segura) ao falar com o servidor SMTP. Isso é usado para conexões TLS explícitas, geralmente na porta 587." #: mailers.py:52 msgid "Use SSL" -msgstr "" +msgstr "Usar TLS" #: mailers.py:55 msgid "" @@ -177,17 +185,17 @@ msgid "" "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 "" +msgstr "Se você deve usar uma conexão TLS (segura) implícita ao falar com o servidor SMTP. Na maioria das documentações de correio eletrónico, esse tipo de conexão TLS é chamado de SSL. Geralmente, ela é usada na porta 465. Se você estiver com problemas, consulte Configuração de TLS \"Usar TLS\". Observe que \"Usar TLS\" e \"Usar SSL\" são mutuamente exclusivos, portanto, defina apenas uma dessas configurações como True" #: mailers.py:64 msgid "Username" -msgstr "" +msgstr "Utilizador" #: mailers.py:67 msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "" +msgstr "Nome de Utilizador para usar no servidor SMTP. Se estiver vazio, a autenticação não será tentada." #: mailers.py:73 msgid "Password" @@ -198,23 +206,23 @@ 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 "" +msgstr "Senha a ser usada para o servidor SMTP. Essa configuração é usada em conjunto com o nome de utilizador durante a autenticação no servidor SMTP. Se qualquer uma dessas configurações estiver vazia, a autenticação não será tentada." #: mailers.py:85 msgid "Django SMTP backend" -msgstr "" +msgstr "Django SMTP backend" #: mailers.py:107 msgid "File path" -msgstr "" +msgstr "Caminho de arquivo" #: mailers.py:122 msgid "Django file based backend" -msgstr "" +msgstr "Backend baseado em arquivo Django" #: models.py:27 models.py:225 msgid "Date time" -msgstr "" +msgstr "Data e hora" #: models.py:36 msgid "Log entry" @@ -222,7 +230,7 @@ msgstr "" #: models.py:37 msgid "Log entries" -msgstr "" +msgstr "Entradas no registo (log)" #: models.py:48 msgid "Label" @@ -240,7 +248,7 @@ msgstr "Padrão" #: models.py:56 msgid "Enabled" -msgstr "" +msgstr "Ativado" #: models.py:59 msgid "The dotted Python path to the backend class." @@ -256,31 +264,31 @@ msgstr "" #: models.py:70 models.py:222 msgid "User mailer" -msgstr "" +msgstr "Mailer do utilizador" #: models.py:71 msgid "User mailers" -msgstr "" +msgstr "Mailer dos utilizadores" #: models.py:84 msgid "Backend label" -msgstr "" +msgstr "Rótulo do Backend" #: models.py:216 msgid "Test email from Mayan EDMS" -msgstr "" +msgstr "Testar email de Mayan EDMS" #: models.py:234 msgid "User mailer log entry" -msgstr "" +msgstr "Entrada no registo do mailer do utilizador" #: models.py:235 msgid "User mailer log entries" -msgstr "" +msgstr "Entradas no registo do mailer do utilizador" #: permissions.py:10 msgid "Send document link via email" -msgstr "Enviar hiperligação de documento através de mensagem" +msgstr "Enviar ligação de documento através de mensagem" #: permissions.py:13 msgid "Send document via email" @@ -288,35 +296,35 @@ msgstr "Enviar documento através de mensagem" #: permissions.py:16 msgid "View system mailing error log" -msgstr "" +msgstr "Visualizar registo de erro ne envio de correio do sistema" #: permissions.py:19 msgid "Create a mailing profile" -msgstr "" +msgstr "Crie um perfil de correspondência" #: permissions.py:22 msgid "Delete a mailing profile" -msgstr "" +msgstr "Remover um perfil de correspondência" #: permissions.py:25 msgid "Edit a mailing profile" -msgstr "" +msgstr "Editar um perfil de correspondência" #: permissions.py:28 msgid "View a mailing profile" -msgstr "" +msgstr "Ver um perfil de correspondência" #: permissions.py:31 msgid "Use a mailing profile" -msgstr "" +msgstr "Usar um perfil de correspondência" #: queues.py:10 msgid "Send document" -msgstr "" +msgstr "Enviar documento" #: settings.py:14 msgid "Link for document: {{ document }}" -msgstr "Hiperligação para o documento: {{ document }}" +msgstr "Ligação para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." @@ -324,38 +332,38 @@ msgstr "Modelo para a linha do assunto do formulário de mensagem da hiperligaç #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "" +msgstr "Modelo para o texto do corpo do formulário de correio eletrónico de link do documento. Pode incluir HTML." #: settings.py:24 msgid "Document: {{ document }}" -msgstr "Document: {{ document }}" +msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" +msgstr "Modelo para a linha de assunto do estilo de correio eletrónico do documento." #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." -msgstr "" +msgstr "Modelo para o texto do corpo do estilo de correio eletrónico do documento. Pode incluir HTML." #: validators.py:14 #, python-format msgid "%(email)s is not a valid email address." -msgstr "" +msgstr "%(email)s não é um endereço de correio eletrónico válido" #: views.py:37 msgid "Document mailing error log" -msgstr "" +msgstr "Registo (log) de erro de envio de documentos" #: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" -msgstr "" +msgstr "%(count)d documento na fila para entrega de correio eletrónico" #: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" -msgstr "" +msgstr "%(count)d documentos na fila para entrega de correio eletrónico" #: views.py:62 msgid "Send" @@ -364,48 +372,48 @@ msgstr "Enviar" #: views.py:108 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "" +msgstr "%(count)d ligação do documento na fila para entrega de correio eletrónico" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "" +msgstr "%(count)d ligações do documento na fila para entrega de correio eletrónico" #: views.py:119 msgid "New mailing profile backend selection" -msgstr "" +msgstr "Nova seleção de backend do perfil de correspondência" #: views.py:151 #, python-format msgid "Create a \"%s\" mailing profile" -msgstr "" +msgstr "Criar um \"%s\" perfil de correspondência" #: views.py:177 #, python-format msgid "Delete mailing profile: %s" -msgstr "" +msgstr "Remover perfil de correspondência: %s" #: views.py:188 #, python-format msgid "Edit mailing profile: %s" -msgstr "" +msgstr "Editar perfil de correspondência: %s" #: views.py:211 #, python-format msgid "Error log for: %s" -msgstr "" +msgstr "Registo de erros para: %s" #: views.py:233 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "" +msgstr "Os perfis de correspondência são configurações de correio eletrónico. Os perfis de correspondência permitem o envio de documentos como anexos ou como ligações por correio eletrónico." #: views.py:237 msgid "No mailing profiles available" -msgstr "" +msgstr "Nenhum perfil de correspondência disponível" #: views.py:258 #, python-format msgid "Test mailing profile: %s" -msgstr "" +msgstr "Testar perfil de correspondência: %s" diff --git a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.mo index 1d650fa0cdea1db6a318c3df093e2a36a2c24a08..2a20ff7e53a71be6b2e9ee8cb03f6fd6ef7aa195 100644 GIT binary patch literal 1806 zcmZ{jJ!~9B6vqb=LO4DGA$$s?!I6Z1*PkB={4EpZE{LcK2vx3wYHhJ$s41PBj&LjKu494Rag={FV1SXO`8ItIXD9W*L zUirlNBofz@^D@t39GU$e%Ecw#<6Fy4Y^fo+OhqJP@+wJB*^&Fk;@0e!6eh$L9gr1U zMnavE>HxRZUP^WGUQRic^VA=?u;><~H*$|Euj1E5k6fO5cWhxN8c>|4BzDrgFLoxe zly|l9IGF3We)7x5Y%rECk0NqzKTp#mR$1AZIqs%6oz#=i=XP!3((Ji%$BF9+9Tw9x zC?~e9`G_JPT#bY4WL;u(D7)%NY1!H6?$mme8S8_t>nCyWR^E5Pt_fvr``w^N2MHe! z_zgq3(rmpJG*^Sx71>-3S6i<%AvJ!(VAm?`Qswy-dS;I-lGrm&*~H+0?&qpc!7iy` zD7RrO@8{%5E)BfT!baop@UZS#L$Xh!dSr$TTi&&eA^RCnJamn;($mO%W4YG7+U-ok zY1Nyxw~h9s;mc75XFZL4BTH4H*JU(N){$?&zq=W%P0z8#eX>DEMr@2*Wuxaejg;Hn5(zRFCW%;+gq~%L(*;-z&q0(dHxZaf{IWSgL6|bx$uKDq8 zE_x-#U!|yQl%vm8ntY6BeJ4#*i2X+ByIU3k)tSjo}5j zkr)PdjPMqmc?GQQeh;|x*H543+Pg{mH#uBqkh+#I_g2CYD_9w%118R_lmFNs=5AT}n%r*;du~MjGy`+m&YE o25$Hlb-o6%StQj6UfM=(I?pD|Syj8{`Nm&;dVZ&E!XK;t56coKg#Z8m 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 8bc3d5cfcd..6b03f660d3 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 "" @@ -30,7 +30,7 @@ msgstr "Agenda" #: apps.py:37 msgid "Last update" -msgstr "" +msgstr "Última atualização" #: classes.py:150 msgid "Never" @@ -46,11 +46,11 @@ msgstr "Ver" #: links.py:22 msgid "Namespace details" -msgstr "" +msgstr "Detalhes do namespace" #: links.py:27 msgid "Namespace list" -msgstr "" +msgstr "Lista de namespaces" #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug @@ -60,7 +60,7 @@ msgstr "Slug" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Data e hora" #: models.py:18 msgid "Data" @@ -80,25 +80,25 @@ msgstr "Ver estatísticas" #: queues.py:13 msgid "Execute statistic" -msgstr "" +msgstr "Executar estatística" #: templates/statistics/renderers/chartjs/line.html:14 msgid "No data available." -msgstr "" +msgstr "Não há dados disponíveis." #: templates/statistics/renderers/chartjs/line.html:16 #, python-format msgid "Last update: %(datetime)s" -msgstr "" +msgstr "Última atualização: %(datetime)s" #: views.py:17 msgid "Statistics namespaces" -msgstr "" +msgstr "Estatísticas dos namespaces" #: views.py:33 #, python-format msgid "Namespace details for: %s" -msgstr "" +msgstr "Detalhes do namespace: %s" #: views.py:55 #, python-format @@ -113,9 +113,9 @@ msgstr "Estatística \"%s\" não encontrada." #: views.py:80 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "" +msgstr "Fila de estatísticas \"%s\" a serem atualizado?" #: views.py:94 #, python-format msgid "Statistic \"%s\" queued successfully for update." -msgstr "" +msgstr "Fila de estatísticas \"%s\" com êxito na atualização." diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo index 13fe4a5623983d404f8a3931ac2fe7568188b3ee..4889b5bef5f220af754455cf833ab0cb2705cbc2 100644 GIT binary patch literal 11724 zcmchdZH!#kS;ub@H%&H8o0I@8Y3PYdh?nlndQF<7YwX7LZis`|cGhc$wkhH6%-P-R z%*>tKduQzp(833(kWdj)0YMe0>4yq}g+v=HDnP)hAP_;ksI3$UgjxxZs3<}RiAojx z{^#7+nekhQdgU|!`*O~6p7Xq&=RE6weCwWH47eiNJ80cofY+W$G|t<5d_=@Pl0a- zp8?+pZiC+megqUNzXX0e_#${8_*w8a@NdDp!B;``{~Guz-91z zzzBRZ`0@PtMQ{(#e+r7vKL^|3S3r%wo1gCn-wA#Pco_UP@C^7nU9wyg%-v&Mh9t1Cgp8?N+&%%u4^D-#@z6!!}a66No z1n&psN6&+@(;o-rN1p^`7oX0b{}7aYe*sj#e*(qF|AL4nxSf~c!{m4rG(2yBm`Lz3 z@GmdJvpSnK?Lhv`hqu?HxTL+&2zZZN7yczsEQ2O~IDE+?*ivCwYt?wqB{}^}&D0@Bw z{vh}%@Coo=LGix;bCSb6|QCYX_y@gZunCBT(NjfqTF|27dVWM&mpLB zo1g(d0m?341`(69d7!-B#~q?8FUjl#?GBpstGRS(Ze6m8;?g>FY2HnmTKSB|UHt+wmZsbFc(xhX_!_bOrBfn8RT*&Vi!6#`4X+KJnjbh?1Rw$kn*N3QCR;DAALd53)}`Tw&Tk^nUFOJk81=&S zo;8{64|`!|O(z~?_CjX1!z9v|bkPKRA4vC_C^dW;!*$#L2?CkGw6ce{vS zdY?J76OT+MbleS$?M8@Z%SOpnS&Pd#rb&gF3NfeG_`YZ!@Lftx6`F8T2#zLJI==Qx z&XxvCb|W11vI4zej7^d_aqKVIp3N+u1(So_ zTbO8m(a84&OSv_cH)W^EH(rfX-b-h;JLN-S`|)=Di)_B?r>Am0Z>;e!i{b%Gu6s$d zPim%i8XJ>3k87yS$!Zy11O3z-3)?O_`cH-NT;cV2_vYZ@$uUq+D(5aqy7gY+bs8)a zQW97!gAB%%*g@AOZL=~;Gagb*0;i)>C+_zN6Sf!ir3jN|39j8XXHsjH&V_@`m=$)t z5fv2W`#nC5!cA-TZDrXoU7VkX-L&0xLxxFw&UUgk#OLi`exbdvFrV0s`GTW#eti`6 zvS^Ub&$h41@3)MNoQp!{rKp2txr)qJt1k89%x~`l`-&IO>cuQ^yB0oB(7uA+Y+`m5JIqlJqZAG*b%Wfs-+KPrO zBn^%&1;@j6+Y64z@pGeL4inL3rP!H@8yEEzE-iLAv2%`JAe-%$90spt zP+E*n_jZ0J+t16JI{$PwAPD5+bQ~|+JdY}JM)8u8+H|zF6@$rGOB?itbV5d` zAL*rQ)^|+o1vVVI)Qr8$vV)S1x;(68T64C|QfvlsrlDrIlWh^pWNrz`i#Z=B-E>aE zPKP0ZpdFlu2R1nAHi57goC*_q2B(s!A0|8IIW+3TG@jZ_Syr){_6?102dlME-grn0 zUuy&{x+o9Jq14y-vvGS%Wfc?OC90_}QLMHlX{uP#_4Z4zx1+O^)%-Zcplp=5BSUU= zh&)6=wi9hcosx@ct*0j}sPwyBTd8cvSwnET7V$9z39qE&ePvqOaFwmO9jqanu#@R@ z#-ND&0OQUHD(5pgh#Dwi&XGKRoOm}T%E@1@V+sOgNE^h>HKvltmA+NS z+PoJrr9mKedov&F2WoLOcrY_tA?gYT1lA&RS(D+OQ6gl6v&D*aH*(J-t4&Yq!LbYH zEn--4+Gq!7qx#Wo+*z7mWk)Gq?Q-bWv2N=udj-kYqFD)dIO{Git(=}&wZk~cS}W;h z)NQ?gw3)Wn;zcua>SSxxZb$0gT7u<8b723%dt3V-Y8`mQ95}G}o`>GOpKIoLm}afD zBpjq9b~*~K#_Q}rF_=<{i0R<-`_`Hb`-|ojlZ`gX+VX^-eE3nfcm>*{IvokBlR+g*fEVTE}9902i052?hkpsqsY@W(UG&pEFTe8;d z(3!QzTaQ-#G$YZtwLIv=%E=eaqw7&t^1En;+03clC<%M5$FX1vDubbWOb;D6X#DM= zeFJmg|*94emT2_^f9_ z{1ibIvo|4!yY*3M7=`l^L(*DBN8ay>IgTB_kg=(pP^Pca&pbq6IxIO7yBAwMW~w#? z9?C*bM1AKBC(mvBLeW3eYMLvr`uFBcHZr2`bL)^T)sD(_)P(F7KgM`i6?Lv5%@7_+ zk=2zmMe=p3Zi}f@Sy(}(CU@vbqHavFCW8Bk9<}#l+&i)RA1_~59xBBwF3bRN7<_zt_ad9zHT?VJ zaQ8F2FJqXv{iJjy&qCQ1pJKxeC||LwO}-m*=t?k7E6be0h$8tZT;r`=d8tuv4LQw8X$4EsCI?ILpGRM3_-tvUKhX;zHLNAe9_?#b z_z_j<5pl%VtysA$WKj+$R!|1sy_9T@dZDjpg{H@bp{fFiHjoGiI|fksal7G14mTY#IoGx zsv8nH{)Ur=GWsg+)%No=?y*;9ApwMd!-#4PezUz`J0pBtW~RNO{Dg;~c{@-XtO6_>M*Z!Avs6HLi^UYFIq zMnY*o=DQJXVmFg)xSgP34U=yu%SDJ_$_M9Me3`bdv8Bc9NwgVeyPv&g-YVmk?2Fy2 zv`u!|Ud8srXYx$%H{GyGDJFVNaxSm*b7Wyr!aKKnk<(|SOqNqz%?fH!#&90ZclDCR zX|#&C#*%7wBS)W3*OP4~W5LO38I(!oz8w38No2dBl2ra?5)C*Xv%BaFF{0i@B6)-QF#!lZG4SFkt%{J^U1{d`_5##FsFsZ96Md4;z+}v zN9+2AqPE43_Qz3QTd9~#wA)VT$CE<#oG|kQsMf8L7*#)36ecJNQ^}8K6w4z0S*en& zmXWgKX`VSO1WS}4;wo5{x?`#5LX{dgVKMhKHTb-!;JIYR`TANRmx>_y0R@A8xwAO| zBE)iFN(ah>I;HWA^SaN3Yw?)Mor;8ViBU=?C&+k|ap*PSkSHEzkv$-y~I+o);1?(I<9ya_QLH1gF$KhksSwvoG&FhjcZOuIl3F9FUG=rK!Ujr-mP7SLR##D#FiMqQZ@=_n8S8u z;Yw=rJxY9)tVrFqvwMm1BVqfBX33Z$5U`NGO>uQCQj+I*=1x5|>B=4X+LXYw{H-n( z#m$1RSsdYH&V5L&@C7UHP#o@reNT9D0%!juDUvea8L`K^5bDjvT3Z{uY$6q&G^zmg!g*M5SuX5_iDcsSHGjk*c=o#{# zT3D3?H*GTKo_+`NL9%I5!8N`&$}_(677{4TAdeS59}bqA1slgHHk^*4YJl77f+Iy{ qsz~KU;bT^*FgKVWtHY6Yp}07t7I8IHn3E0~N98dmQ-?`E3jPmN=N_&A delta 972 zcmXxi&ubG=5Ww+Qt=ibc{OIqdFN+d7HP>KckCZV$HV< zv76Dy2sRlrh#RP}vc;IKcn^DV6?^a%?!ZsD9lv1*{=g9a#byk#Sl7i+b7Zj%bI2o$ zW`@Z&zQ|(>7BP!e+=VNs8?NC=e1YTG!tVO}l&^!D(DSXM7Pf#%T=MT%QS&{-1o_Pq zCR)*ZyhzvIF~EI})q8LXwemV@$IGaNuAp}I0HgQ@`IwJfEc}cq{DXR811zRvGmNA# zM=?NtGsa{HPhlLdp>B8=bNCp~;%|)MX|k&qP&cZhCSE`uF-zEwH&7c{L+$uETKEz> z@hdLUa3eU?Ms)e=#+sy?p~dLC)zD6~iv&Zvk1%v|4Nca{(ATA*ry68vQF?-#(at2y z;QuyicKY9H2l_ts1SqT#T4f_f3I)Tk%8q9jY|pkl*RrjGo3E9fiYL>pX<2UV3;Oq# zSD$s{buc5T(80Djb7Iuw?DI~^jQh*wL*%gBj`qvB*!|9VyHs<`gk9$1Rva_wl-+qp z-gWc`&&-m{F;n`)(~a&sP4cTZAqV0SxtiD;9xD~g#fn`uW0&)#T2XHHwaaii5ZEls zmC59gtS1Mh+X_c1V!|cI{~8MJoY<)@Ii8A3Bz;6GnRYpp8JFvsWAbQUPspiUs+Ijx fs*>G5&^hAO>{9Ux=_tqL>QpT@nMuawS+?sRiGh, 2011 # Renata Oliveira , 2011 @@ -27,15 +27,15 @@ msgstr "Metadados" #: apps.py:99 msgid "Return the value of a specific document metadata" -msgstr "" +msgstr "Retorna o valor de um metadado de documento específico" #: apps.py:105 msgid "Metadata type name" -msgstr "" +msgstr "Nome do tipo de metadados" #: apps.py:109 msgid "Metadata type value" -msgstr "" +msgstr "Valor do tipo de metadados" #: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" @@ -47,27 +47,27 @@ msgstr "Valor de metadados" #: events.py:10 msgid "Document metadata added" -msgstr "" +msgstr "Adicionados metadados ao documento" #: events.py:13 msgid "Document metadata edited" -msgstr "" +msgstr "Editados os metadados do documento" #: events.py:16 msgid "Document metadata removed" -msgstr "" +msgstr "Removidos metadados do documento" #: events.py:19 msgid "Metadata type created" -msgstr "" +msgstr "Tipo de metadados criado" #: events.py:22 msgid "Metadata type edited" -msgstr "" +msgstr "Tipo de metadados editado" #: events.py:25 msgid "Metadata type relationship updated" -msgstr "" +msgstr "Relação de tipo de metadados atualizada" #: forms.py:13 msgid "ID" @@ -87,26 +87,26 @@ msgstr "Atualizar" #: forms.py:46 forms.py:185 models.py:306 msgid "Required" -msgstr "" +msgstr "Requerido" #: forms.py:75 #, python-format msgid "Lookup value error: %s" -msgstr "" +msgstr "Erro de valor de pesquisa: %s" #: forms.py:88 #, python-format msgid "Default value error: %s" -msgstr "" +msgstr "Valor do erro padrão: %s" #: forms.py:104 models.py:172 #, python-format msgid "\"%s\" is required for this document type." -msgstr "" +msgstr "\"%s\" é necessário para este tipo de documento." #: forms.py:122 msgid "Metadata types to be added to the selected documents." -msgstr "" +msgstr "Tipos de metadados a serem adicionados aos documentos selecionados." #: forms.py:148 views.py:506 msgid "Remove" @@ -114,7 +114,7 @@ msgstr "Remover" #: forms.py:169 msgid " Available template context variables: " -msgstr "" +msgstr "Variáveis de contexto para modelo disponíveis: " #: forms.py:183 msgid "None" @@ -122,7 +122,7 @@ msgstr "Nenhum" #: forms.py:184 msgid "Optional" -msgstr "" +msgstr "Opcional" #: forms.py:189 models.py:55 search.py:19 msgid "Label" @@ -130,19 +130,19 @@ msgstr "Nome" #: forms.py:193 msgid "Relationship" -msgstr "" +msgstr "Relação" #: links.py:18 links.py:29 msgid "Add metadata" -msgstr "" +msgstr "Adicionar metadados" #: links.py:25 links.py:33 msgid "Edit metadata" -msgstr "" +msgstr "Editar metadados" #: links.py:37 links.py:43 msgid "Remove metadata" -msgstr "" +msgstr "Remover metadados" #: links.py:55 links.py:83 models.py:94 views.py:656 msgid "Metadata types" @@ -150,15 +150,15 @@ msgstr "Tipos de metadados" #: links.py:61 msgid "Document types" -msgstr "" +msgstr "Tipos de documentos" #: links.py:65 msgid "Create new" -msgstr "" +msgstr "Criar novo" #: links.py:72 msgid "Delete" -msgstr "Eliminar" +msgstr "Remover" #: links.py:78 views.py:311 msgid "Edit" @@ -168,13 +168,14 @@ msgstr "Editar" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "" +msgstr "Nome usado por outros aplicativos para fazer referência a esse tipo de metadados. Não use palavras ou espaços reservados do 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 "" +msgstr "Digite um modelo para visualizar. Use a linguagem de templates padrão do Django " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" #: models.py:63 search.py:22 msgid "Default" @@ -186,54 +187,56 @@ msgid "" "Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" +"Digite um modelo para visualizar. Deve resultar em uma string delimitada por vírgula. Use a linguagem de templates padrão do Django " +"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" -msgstr "" +msgstr "Procurar" #: models.py:78 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" +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" -msgstr "" +msgstr "Validador" #: models.py:84 msgid "" "The parser will reformat the value entered to conform to the expected " "format." -msgstr "" +msgstr "O analisador irá devolver o valor inserido para se adequar ao formato esperado." #: models.py:86 search.py:31 msgid "Parser" -msgstr "" +msgstr "Analisador" #: models.py:180 msgid "Value is not one of the provided options." -msgstr "" +msgstr "O valor não é uma das opções fornecidas." #: models.py:202 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:205 msgid "Type" -msgstr "" +msgstr "Tipo" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "" +msgstr "O valor armazenado no campo de tipo de metadados para o documento." #: models.py:217 models.py:218 msgid "Document metadata" -msgstr "" +msgstr "Metadados do documento" #: models.py:239 msgid "Metadata type is required for this document type." -msgstr "" +msgstr "O tipo de metadados é obrigatório para este tipo de documento." #: models.py:269 msgid "Metadata type is not valid for this document type." @@ -245,11 +248,11 @@ msgstr "Tipo de documento" #: models.py:313 msgid "Document type metadata type options" -msgstr "" +msgstr "O tipo de metadados não é válido para este tipo de documento." #: models.py:314 msgid "Document type metadata types options" -msgstr "" +msgstr "Opções de tipos de metadados do tipo de documento" #: permissions.py:10 msgid "Add metadata to a document" @@ -289,33 +292,33 @@ msgstr "Ver tipos de metadados" #: queues.py:12 msgid "Remove metadata type" -msgstr "" +msgstr "Remove tipo de metadados" #: queues.py:16 msgid "Add required metadata type" -msgstr "" +msgstr "Adicionar tipo de metadados requerido" #: serializers.py:51 msgid "Primary key of the metadata type to be added." -msgstr "" +msgstr "Chave primária do tipo de metadados a ser adicionado." #: serializers.py:132 msgid "Primary key of the metadata type to be added to the document." -msgstr "" +msgstr "Chave primária do tipo de metadados a ser adicionado ao documento." #: views.py:51 #, python-format msgid "Metadata add request performed on %(count)d document" -msgstr "" +msgstr "Adicionar solicitação de metadados para executar em %(count)d documento" #: views.py:53 #, python-format msgid "Metadata add request performed on %(count)d documents" -msgstr "" +msgstr "Adicionar solicitação de metadados para executar em %(count)d documentos" #: views.py:69 views.py:237 views.py:462 msgid "Selected documents must be of the same type." -msgstr "" +msgstr "Os documentos selecionados devem ser do mesmo tipo." #: views.py:113 msgid "Add" @@ -324,59 +327,59 @@ msgstr "Adicionar" #: views.py:115 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Adicionar tipos de metadados ao documento" +msgstr[1] "Adicionar tipos de metadados aos documentos" #: views.py:126 #, python-format msgid "Add metadata types to document: %s" -msgstr "" +msgstr "Adicionar tipos de metadados ao documento: %s" #: views.py:179 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" +msgstr "Erro ao adicionar tipo de metadados \"%(metadata_type)s\" ao 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 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 msgid "Metadata edit request performed on %(count)d document" -msgstr "" +msgstr "Solicitação de edição de metadados executada em %(count)d documento" #: views.py:221 #, python-format msgid "Metadata edit request performed on %(count)d documents" -msgstr "" +msgstr "Solicitação de edição de metadados executada em %(count)d documentos" #: views.py:306 msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "" +msgstr "Adicionar tipos de metadados disponíveis para o tipo deste documento e atribua os valores correspondentes." #: views.py:309 msgid "There is no metadata to edit" -msgstr "" +msgstr "Não há metadados para editar" #: views.py:313 msgid "Edit document metadata" msgid_plural "Edit documents metadata" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Editar metadados de documento" +msgstr[1] "Editar metadados dos documentos" #: views.py:324 #, python-format @@ -386,7 +389,7 @@ msgstr "Editar os metadados do documento: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" +msgstr "Erro ao editar metadados do documento: %(document)s; %(exception)s." #: views.py:392 #, python-format @@ -398,65 +401,65 @@ 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 "" +msgstr "Adicione tipos de metadados para este tipo de documento para poder adicioná-los a documentos individuais. Uma vez adicionados a um documento individual, tu podes editar seus valores." #: views.py:430 msgid "This document doesn't have any metadata" -msgstr "" +msgstr "Este documento não possui metadados" #: views.py:431 #, python-format msgid "Metadata for document: %s" -msgstr "" +msgstr "Metadados do documento: %s" #: views.py:443 #, python-format msgid "Metadata remove request performed on %(count)d document" -msgstr "" +msgstr "Solicitação de remoção de metadados executada em %(count)d documento" #: views.py:446 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "" +msgstr "Solicitação de remoção de metadados executada em %(count)d documentos" #: views.py:508 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Remover tipos de metadados do documento" +msgstr[1] "Remover tipos de metadados do documentos" #: views.py:519 #, python-format msgid "Remove metadata types from the document: %s" -msgstr "" +msgstr "Remover tipos de metadados do documento: %s" #: views.py:567 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" +msgstr "Removidos com sucesso o tipo de metadados \"%(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 "" +msgstr "Erro ao remover o tipo de metadados \"%(metadata_type)s\" do documento: %(document)s.; %(exception)s" #: views.py:587 msgid "Create metadata type" -msgstr "" +msgstr "Criar tipo de metadados" #: views.py:612 #, python-format msgid "Delete the metadata type: %s?" -msgstr "" +msgstr "Remover tipo de metadados: %s?" #: views.py:627 #, python-format msgid "Edit metadata type: %s" -msgstr "" +msgstr "Editar tipo de metadados: %s?" #: views.py:648 msgid "" @@ -465,40 +468,40 @@ 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 "Os tipos de metadados são propriedades definidas pelo utilizador que podem receber valores. Uma vez criados, eles devem ser associados a tipos de documentos, como opcionais ou obrigatórios, por cada um. Definir um tipo de metadados como exigido para um tipo de documento bloqueará o transferencia de documentos desse tipo, até que o valor de metadados seja fornecido." #: views.py:655 msgid "There are no metadata types" -msgstr "" +msgstr "Não existem tipos de metadados" #: views.py:676 #, python-format msgid "Error updating relationship; %s" -msgstr "" +msgstr "Erro ao atualizar o relacionamento; %s" #: views.py:681 msgid "Relationships updated successfully" -msgstr "" +msgstr "Relacionamentos atualizados com sucesso" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "" +msgstr "Criar tipos de metadados para para poder associá-los a este tipo de documento." #: views.py:700 msgid "There are no metadata types available" -msgstr "" +msgstr "Não existem tipos de metadados disponíveis" #: views.py:703 #, python-format msgid "Metadata types for document type: %s" -msgstr "" +msgstr "Tipos de metadados para tipo de documento: %s" #: views.py:754 #, python-format msgid "Document types for metadata type: %s" -msgstr "" +msgstr "Tipos de documentos para o tipo de metadados: %s" #: wizard_steps.py:15 msgid "Enter document metadata" -msgstr "" +msgstr "Digite os metadados do documento" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo index 7a02e034fededb701d2cde6732190be08a44e7ea..74397b0dde44fcc9c3efb6257dd0097b5952f070 100644 GIT binary patch literal 2186 zcmZXV&u<$=6vr1*XfTu?0SXmA^javig0-CpXu44ZX_H75b%+uZ(F2I_?${o*J7Z>M z?Kt9JK;psyI3UCU@#}=Ra6qbj;Sb;j;=~OhPTcvvwbypSDC^JsdT-v3d6PeuPJJAp zox}GezCZC@#P{7D_(6N^&LFrS+yEZ{cfqURyAys2-i`6Ell9-g$1wg2JOwT+1i^#g zB6tQo2c8C>pNwnZT^O%V=C6ZG7{3lKg71KzgB|c;@HCV@3O)g{{$>1J0AB&wzFXik zpaS{455W$6`3z(~7GNyzTLNDOFMwCTw?IDcBk&>c6OhmO7Q|n08$W#hFChE#JIH?g z4YIxef;b{r#3buE1M)d%!F#~xz@Nc7$nyVy9B> zZtM>?_Aj_@rSOt6>73}u6GInl@}kfQd6l8l_R`XztKu&Cu5zUq4OE&^OH!g-FBLDjr$+Tf2ToJ=^$xS;X?3|ON*c(Zy>7dtFa!{pPCZ||v%H7n= z!o}F=zO+M#w2jS#S4NX)ncUOR2z^vczleBilj~S!QhSFbC_`?jldD9gN=rx3 zF_yzI)>UWr%^AOA%78c$eW6kgL9k=A4EDRmdP<~=t?Ct~6mqkKR)c*nc*`_aP53Ed zpNq8A`v1foAOhv83wEt}PsTpHk%R{@5)Mby5JSXfYqPOm*^@mO5jI>$CE>NaTDmM*p@cj z(y>XD?nJcOQhsW0L_J^GO>-;Ka2r>}MWlPh(5#ld^iTor`$Ri)jhZ=AdE2tG-ACKP^+^U{hOVxYnrW zMj3;$Ls;EZqFi7V{ALxA(vIBdOL#PP*^w3~VTZ`5BQg4lmy$_oSLwjSqi?8ZFoRm0 z^NM-`aV>69ro6IceM7;Is8eTJcrc)JT;Qc8(0~KyiQ>YjrYr zl;homSYoU!>b$fao+a>XN9t~#&E=6_V53Lh_wllg7lUh-(=@L3(y{s6AI~-{P>_dh Y!A2RYjPPF~B{7$4Qw>nn=(SNFjquYEEiNDuZiEW(k8&Vp3`j ngI|7L>gHK2nT#^7Ihnbcd5J|}Ss>+?pPS0ymztMRn#%wHh@Tr# diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index 836103b7df..d753fee376 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 "" @@ -19,7 +19,7 @@ msgstr "" #: apps.py:35 links.py:36 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Mensagem do Dia" #: apps.py:57 apps.py:61 msgid "None" @@ -27,7 +27,7 @@ msgstr "Nenhum" #: links.py:16 views.py:32 msgid "Create message" -msgstr "" +msgstr "Criar mensagem" #: links.py:22 msgid "Delete" @@ -39,7 +39,7 @@ msgstr "Editar" #: models.py:17 msgid "Short description of this message." -msgstr "" +msgstr "Breve descrição desta mensagem." #: models.py:18 msgid "Label" @@ -47,73 +47,73 @@ msgstr "Nome" #: models.py:21 msgid "The actual message to be displayed." -msgstr "" +msgstr "A mensagem real a ser exibido." #: models.py:22 models.py:39 msgid "Message" -msgstr "" +msgstr "Mensagem" #: models.py:24 msgid "Enabled" -msgstr "" +msgstr "Ativada" #: models.py:27 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Data e hora após o qual esta mensagem será exibida." #: models.py:28 msgid "Start date time" -msgstr "" +msgstr "Data e hora de início" #: models.py:32 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Data e hora até quando esta mensagem deve ser exibida." #: models.py:33 msgid "End date time" -msgstr "" +msgstr "Data e hora do fim" #: models.py:40 views.py:80 msgid "Messages" -msgstr "" +msgstr "Mensagens" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Criar mensagens" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Remover mensagens" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Editar mensagens" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Ver mensagens" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Mensagens do dia" #: views.py:45 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Remover mensagem: %s?" #: views.py:58 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Editar mensagem: %s" #: views.py:75 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 "As mensagens são exibidas na visualização de login. Você pode usar mensagens para transmitir informações sobre sua organização, anúncios ou diretrizes de uso para seus utilizadores." #: views.py:79 msgid "No messages available" -msgstr "" +msgstr "Nenhuma mensagem disponível" diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo index b83b23d33f873508f079d5430f06034f69adc33f..2ec439283045c8025870932d2b323c15488bb7db 100644 GIT binary patch delta 197 zcmZ3;yqKl_o)F7a1|VPoVi_Q|0b*7ljsap2C;(!1AT9)AE+DQ1VgVp-0pfH<1_qF3 zko;dDn;S^8GBGd+0%<`Y4HRNv24WBZa=~^mI3|~5=I0eN_$8KQrYDMmI1HhAd5O8H vDGF(&d0^R%7MYA{j)#{Y-kJ(ln3|pl`2C0F8jZ-oi0p^+p1^@s6 diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po index 437fd6365c..195cba0b83 100644 --- a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po @@ -21,15 +21,15 @@ msgstr "" #: apps.py:11 msgid "Navigation" -msgstr "" +msgstr "Navegação" #: classes.py:695 msgid "Unnamed function" -msgstr "" +msgstr "Função sem nome" #: templates/navigation/generic_navigation.html:7 msgid "Actions" -msgstr "" +msgstr "Ações" #~ msgid "Multi item action" #~ msgstr "Multi item action" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo index d930014be270e205e710d9ce0b063f6842166cee..be1d7aa3c7b943659cd650c18209f701df5513eb 100644 GIT binary patch literal 3975 zcma);OKco97{?8i*Fx!ocPZdPLlafAn*;)7qbMqQNEHoPB}>Z%kaxzrJ9K8e*q$WY z3!D%aP89-fR2)hXoB#=NUG>DFaNvsIfRGU4fT{|?h5zT7eI?rnE7{+8{Mr6q_BTHr z-19y|o525J{0BENHVb}!Gk(xMyoIsj;78yy;1%!)_z!qHcz6$EcYsI1y`Tr)3(n^K zRq$c-Uj-ilH}m%wzz5L32tEjY1MUaE2k!%a0S|%KL7I2qR>mF$J@5(eMeqQafaBoX zAjw?@i{KRyDza-J?ejNS0QcRN$sGbY`p@S5vmotjz_Z}HApY3T_?ZWP1D^tq!RUv; zm%w|#2KXAdk-z^DoI(Fj@ECX$&S}7>r@=||zq*sL6X35oAA?eOWM@IrPvGY+FapW` zEs*rO0Fs@bf)uMCK(hZ|@F=(!lg7YlkmO$hNzWL35_|_Fxz9lI-&K(G`wJxhAG({d zGB^!B4#wad_#Q}p{0=02u7afR?;yqF8c22>MDS^!1(4QjfD!l>Nb-MxYv6T|-r$v=weLssFA&-8`(n*u5dAR9sI!M?EbuiWu5)h zB|DG~E-%T4)JSKFFWF9we2kDYq@Rli;PUeb2os#n^o|L>izPkMS)oR;qK33#?&yt;`zlTBM8E^(r?E_|;UWlRz^&r8Df#Nc8h&jcA0g1t$Q`pa!92zl$L)fJ|i!>VU@t$r<1GK z4XI72lK%Ys1?@HRC6`(&z01&mW&>;SdYFW!IcR%#wC5I{I~|K}CXo_>GuX;4%a(%B zx?a~ZCmRg9pv=ciku7V9@U&#Y*HxsBOiPnSc4*8+eK!F&RzYg;v2n_f*ON4^ zNj(v;N}Dtak>kA5woR4rD6DCr+uVe4D+=pvq@>GxSi@DFlekqXG7vl`c~u%CweT%R zelMhn4B_**$kv>eY+YJ95j~TgwTAoy(@D~;Cx*^Zt<3{j7cjEO)?J2koUh&zhO`jb zvFXM)7wd-4^a7s`Y?Gs7Y-A+;!6Vv@AsOh-_k4Hvk>bvXq5EK-^_@YBB#NSxCP9%^ zu_1hviilJ8@%%V)Jd^K`CNR3YSe`^hb|!@9=q-d2f1z!vXR z;GM}%Uzx9nwn+HW;>vnqO}3P_-im32f%ih%FkV%ad7-lEt;vm$4y#8OOqowlPCf5U z&UjPL@yVI;%+&Eow8Cj&tXCxsB4L#-^EHLkK?K*75js>5NE#`U%BxBdmw5%7rHxb~ zUB;W%w#uc_=H_P6*$~#{R?$~+NoR9)DJDHV8N{X(ausDFGo7prS_H*Uj<0xGCxrZZBO4aZ`nd6O0|f* zWu&4h^Q7gvW^Q_xXODB^2|qH&rzU0#Y-eduR2xDcE))TtJ0Ig#iUiV^(i(RMb^6JT zW2!Nj-!YKa((hc3Jw(<`cf)St$;jeRX)X+I+uAG3tkIrQK&53 z)UAT30No0R&pVi!8mAZnqXm5x;%Mf2!fOfw{mWma=(AuvF=|Tw4=m4=Q?t2O9UFJT4YOXw zwm13mo!p$8yQ%Ng^}D1T2%~`tFhLG%0nZ7v!5MHT1UmSFJoo{bvqV&ei|_=r0N?FX zL>c%2XW=JYgkLc3dK4n?;}49RXw<~~Fr8$U0#J({1~<7|6OL~?KJ{aJG!Wy(92>)5 oxi$qut$G~kQz^L1ohEm#7fZx#P9B*vR~VLUSjnBBU|DGV0n}13%>V!Z diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index a62e7a708b..3e54b43b9b 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 @@ -27,33 +27,33 @@ msgstr "OCR" #: apps.py:109 msgid "Date and time" -msgstr "" +msgstr "Data e hora" #: apps.py:112 models.py:76 msgid "Result" -msgstr "" +msgstr "Resultado" #: backends/tesseract.py:95 msgid "Tesseract OCR not found." -msgstr "" +msgstr "Tesseract OCR não encontrado." #: dependencies.py:25 msgid "Free Open Source OCR Engine" -msgstr "" +msgstr "Mecanismo OCR de código aberto" #: dependencies.py:36 msgid "" "PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" " Cuneiform." -msgstr "" +msgstr "O PyOCR é uma biblioteca Python que simplifica o uso de ferramentas de OCR como o Tesseract ou o Cuneiform." #: events.py:10 msgid "Document version submitted for OCR" -msgstr "" +msgstr "Versão do documento enviada para o OCR" #: events.py:14 msgid "Document version OCR finished" -msgstr "" +msgstr "Versão do documento OCR terminada" #: forms.py:16 forms.py:47 msgid "Contents" @@ -62,11 +62,11 @@ msgstr "Conteúdos" #: forms.py:76 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Página %(page_number)d" #: links.py:27 links.py:32 msgid "Submit for OCR" -msgstr "" +msgstr "Enviar para OCR" #: links.py:37 msgid "Setup OCR" @@ -74,15 +74,15 @@ msgstr "" #: links.py:42 msgid "OCR documents per type" -msgstr "" +msgstr "OCR de documentos por tipo" #: links.py:47 links.py:53 views.py:157 msgid "OCR errors" -msgstr "" +msgstr "Erros OCR" #: links.py:59 msgid "Download OCR text" -msgstr "" +msgstr "Transferir texto do OCR" #: models.py:20 msgid "Document type" @@ -90,23 +90,23 @@ msgstr "Tipo de documento" #: models.py:24 msgid "Automatically queue newly created documents for OCR." -msgstr "Automatically queue newly created documents for OCR." +msgstr "Fila automatica para documentos recém-criados para OCR." #: models.py:30 msgid "Document type settings" -msgstr "" +msgstr "Configurações de tipo de documento" #: models.py:31 msgid "Document types settings" -msgstr "" +msgstr "Configurações de tipos de documento" #: models.py:45 msgid "Document page" -msgstr "" +msgstr "Página do documento" #: models.py:49 msgid "The actual text content extracted by the OCR backend." -msgstr "" +msgstr "O conteúdo de texto extraído pelo backend de OCR." #: models.py:50 msgid "Content" @@ -114,27 +114,27 @@ msgstr "Conteúdo" #: models.py:56 msgid "Document page OCR content" -msgstr "" +msgstr "Conteúdo do OCR da página do documento" #: models.py:57 msgid "Document pages OCR contents" -msgstr "" +msgstr "Conteúdos do OCR da página do documento" #: models.py:71 msgid "Document version" -msgstr "" +msgstr "Versão do documento" #: models.py:74 msgid "Date time submitted" -msgstr "" +msgstr "Data da hora da submissão" #: models.py:80 msgid "Document version OCR error" -msgstr "" +msgstr "Erro de OCR na versão do documento" #: models.py:81 msgid "Document version OCR errors" -msgstr "" +msgstr "Erros de OCR na versão do documento" #: permissions.py:10 msgid "Submit documents for OCR" @@ -142,55 +142,55 @@ msgstr "Submeter documentos para OCR" #: permissions.py:13 msgid "View the transcribed text from document" -msgstr "" +msgstr "Ver o texto transcrito do documento" #: permissions.py:17 msgid "Change document type OCR settings" -msgstr "" +msgstr "Alterar as configurações do OCR para tipo de documento" #: queues.py:11 msgid "Document version OCR" -msgstr "" +msgstr "Versão do documento OCR" #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "" +msgstr "Caminho completo para o backend a ser usado para fazer o OCR." #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "" +msgstr "Defina novos tipos de documentos para executar automaticamente no OCR por padrão." #: views.py:43 #, python-format msgid "OCR result for document: %s" -msgstr "" +msgstr "Resultado de OCR para documento: %s" #: views.py:65 #, python-format msgid "OCR result for document page: %s" -msgstr "" +msgstr "Resultado de OCR para a página do documento: %s" #: views.py:80 msgid "Submit the selected document to the OCR queue?" msgid_plural "Submit the selected documents to the OCR queue?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Enviar o documento selecionado para a fila de OCR?" +msgstr[1] "Enviar os documentos selecionados para a fila de OCR?" #: views.py:97 msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Enviar todos os documentos de um tipo para o OCR" #: views.py:111 #, python-format msgid "%(count)d documents added to the OCR queue." -msgstr "" +msgstr "%(count)d documentos adicionados à fila de OCR." #: views.py:146 #, python-format msgid "Edit OCR settings for document type: %s." -msgstr "" +msgstr "Editar configurações de OCR para o tipo de documento: %s" #: views.py:175 #, python-format msgid "OCR errors for document: %s" -msgstr "" +msgstr "Erros de OCR no documento: %s" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index 3d03a32073fc2b3f91aab70d392966ea41186529..b098ef4ff3e9d2e66ce425722c097e02998c775b 100644 GIT binary patch literal 3503 zcmaJ@O^*~s7%l}ANALqb@DmFKlxWW^Ys6*99+qX7tl5QiSuioiq-MHirnI}OsjA*( z@#80O^W+IhG?;Akfbn8t%ovRqFD4i-9K2vWnD_&XK5tdeOb-D&Q}t9;SHJJ`e$-oY zeb?5H7@h-YPoXW|!PqOn_wPi9XL$=_Zv$TkJ^=g@_z3Vj;Qhc~fv12sfb+mtw}$l( zfjcn22)qmUaXJ44h#&g`T@82@_z>{ha{deOUd*op>AOFHyMTWK9|vyT#u$EV4>~Nd zeZYHw2Z4_QUj~xg*MKDF4Dd0a04@M80O`B$fyD18Anm(W;_pDR^DiKN>|b;{;FE12 zLp*lf9dJL8zMBG)zT?0y_MHM2n18)J*cE{s>7N0T-`)iFfH{!-`Wuk!pMntb=OPdy z*jvB{fiaN$um&Vv9{_g)F9LT0KLrx6t3cZKBar;`Gw=!EA3(Bq3&;{~2SO#=2_!kY zf!M+tK>Sz}-P6E%;2XdgNc+D562BjS#N!%}?70CXeg6Py-)=bd82qpoNb!h4lK8z> z;zc0wzJw0jyiU@$7me(u=NYtz(e|Se$NSLeflK}K9Qr5GI2v)H2kGbSqcQQK*dCw> z9kb#(=tS1}YEN$Pb(JJsWj$$>rAd{wN@tdfEasx!me%sN&K$nB zbvCmmR3ci5ER|FiD&JOCNvUPCI!y()5@dvvF;A5Bq)Mi_QK>K+{9U=>X$u(P^h;bD zZe*T_wgg%5R5loKTX`c6{AQV5BQn^k$HW*3Iy{r>UM`yr^T7GIOr(=6fPZhTs);qH8kP|Bq={w%`{)@vz!dJ2!hd77ziiLi`hMo(k5QXb$qb>-C6y!ywAU|X* zrJz6(6jqu+g0J@!{BUy`R~%!#$&}w?Ce%4mMp}!Ei^S^D85vJ^pQa!%bBkq9w_?iB zhsdyS)Vyw+%eF#n2j1c(XJ>;EJe6rn8auEec+=;H_n8kZjx6~GEz@P?m*dgt5|1pIM!crbhcnV@H~3E^F&pW!)y9 zYAHA5+vK^cEhmK$Ni?rbYMVUE{nSoR9_3*;{X)j~PV++tkJeCSaa?sqRj|l4>L%(M z?}!V?O{%w&$C4MQc%35af7ZXO>wJz94sncy!JLa>t?hq>7m`CrS!FT8*Es1GnHg7P zpqzMRv9h_&`kQM~4bQiiGWKHLt0v)LS^4dYD7=G04B1ErzSiF~-68=asD=O5@Cg;q z{w1TrV%10yEEk6B0(GcmopOaTsG%fyXfOL8MYq*c9w%>$_o#42wMe?)H;JDGHz?I> zBb}(;v=%79Znh#*y(SHtJKs)7$mk7~ae)^eD(huU^aO(L{$?yJN^Xjf>JaS^1~OtK zFhph$Afz=I4}4Lr&R(*jdLPQYMENA)WjCzxr%`7Se*`F0b)?Lgn9F)l*hyk_T&7}~ zcmAW9@m#AI#>Kfp;aUzUnJ20(U@o{j4Qp}FAX_BT80qMjP?zvS-FF(q=LZ>9j*!-E zgdi59Io$!YP-gD9V{T8oA{yj}ZswMb4sL~5#FW?mzVO$@@Q{H$9i#r|>ELK$SK(BG zJ0;czU!5ytIERSQxMPM9g%XU%eSlk_%EXDZ)xVPB0L2K^*vW@f`g;R_kinVuWc`tb zpz!|IuX+CpA4Ld$ua=Pz+%f=25L_<(O{5Z{;!8`60Uc>83+rzd6xT|ehAHgR;v_k< V*S|FKFAKNI&<~VaxJD`){sS}}BSruK delta 478 zcmYk&ze~eV5C`x}n;4DO`eX9PkU{96qoW{2{IwMa2VG1tmIvue$RkDQP;pfkA1?j_ zE{dQO!Nnnyxa#U6_*Xdiz4Rd-9G_frmv_ni+?U(?oU*S7F^-%^o+GD`KS+)(i)aFF z!!fuAhhWRp656P{(1R!D`5Bx+eF+_S3%TzBj>4zG{T}7G;K5hOFMUVy0xM;rDr~@E zcmOA%fV@B#@?xi^)^HZ}HROZ(#%IU}zQ7Uq1}pFbTC_hX_y7)W;9-{w6Fkg+hrgb` zgaflwLh>TKd=d3dAflidg?=lIvqb3&d%27YU2%, 2011 # Roberto Rosario, 2012 @@ -30,15 +30,15 @@ msgstr "Permissões insuficientes." #: dashboard_widgets.py:15 msgid "Total roles" -msgstr "" +msgstr "Total de funções" #: events.py:12 msgid "Role created" -msgstr "" +msgstr "Função criada" #: events.py:15 msgid "Role edited" -msgstr "" +msgstr "Função editada" #: links.py:16 links.py:40 models.py:113 views.py:165 msgid "Roles" @@ -46,11 +46,11 @@ msgstr "Funções" #: links.py:23 msgid "Create new role" -msgstr "" +msgstr "Criar nova função" #: links.py:29 msgid "Delete" -msgstr "Eliminar" +msgstr "Remover" #: links.py:34 msgid "Edit" @@ -62,11 +62,11 @@ msgstr "Grupos" #: links.py:52 msgid "Role permissions" -msgstr "" +msgstr "Permissões para função" #: models.py:27 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: models.py:28 msgid "Name" @@ -74,7 +74,7 @@ msgstr "Nome" #: models.py:35 msgid "Permission" -msgstr "" +msgstr "Permissão" #: models.py:98 search.py:16 msgid "Label" @@ -82,7 +82,7 @@ msgstr "Nome" #: models.py:112 msgid "Role" -msgstr "" +msgstr "Funções" #: permissions.py:10 msgid "Create roles" @@ -102,35 +102,35 @@ msgstr "Ver funções" #: search.py:20 msgid "Group name" -msgstr "" +msgstr "Nome do grupo" #: serializers.py:46 msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "" +msgstr "Lista separada por vírgulas de chaves primárias de grupos para adicionar ou substituir nesta função." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "" +msgstr "Lista separada por vírgula de chaves primárias de permissões para atribuir a esta função." #: serializers.py:90 #, python-format msgid "No such permission: %s" -msgstr "" +msgstr "Sem essa permissão: %s" #: views.py:32 msgid "Available roles" -msgstr "" +msgstr "Funções disponiveis" #: views.py:33 msgid "Group roles" -msgstr "" +msgstr "Grupo de funções" #: views.py:42 #, python-format msgid "Roles of group: %s" -msgstr "" +msgstr "Funções do grupo: %s" #: views.py:79 msgid "Available groups" @@ -138,36 +138,36 @@ msgstr "Grupos disponíveis" #: views.py:80 msgid "Role groups" -msgstr "" +msgstr "Grupos com a função" #: views.py:89 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Grupos com a função: %s" #: views.py:91 msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "" +msgstr "Adicione grupos para fazer parte de uma função. Eles herdarão as permissões e os controlos de acesso da função." #: views.py:104 msgid "Available permissions" -msgstr "" +msgstr "Permissões disponíveis" #: views.py:105 msgid "Granted permissions" -msgstr "" +msgstr "Permissões atribuídas" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "" +msgstr "As permissões atribuídas aqui serão aplicadas a todo o sistema e a todos os objetos." #: views.py:140 #, python-format msgid "Permissions for role: %s" -msgstr "" +msgstr "Permissões para função: %s" #: views.py:157 msgid "" @@ -175,8 +175,8 @@ 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 "As funções são unidades de autorização. Elas contêm grupos de utilizadores que herdam as permissões de função de todo o sistema. As funções também podem fazer parte das listas de controlo de acesso. A lista de controlo de acesso é atribuída a uma função para objetos específicos herdados por seus membros." #: views.py:164 msgid "There are no roles" -msgstr "" +msgstr "Não há funções" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.mo index 6a08bf1f4ca7cb344b719ebb16d7352e1cc969b5..6806740ba0b2aa36c19fba4460bc2e7b5f4f8ffe 100644 GIT binary patch literal 1912 zcmZvc&yO256vqve9}ToX`7M6bU8z+|nIszyELoPHn@UA&chy~1f=ls^UlPNNJ=mVv z2KXNk5**-Gkf`V#4sgtsKLGWB#DNPZICJ6qCfS5+JBs~@$9~V>_v|;npE&ZB!1FlT zGibk}J&X3)9q91<4L$+>10Dg7-YLXG;BoL6coJm01myX*!6(5@umKK1{6s*v1Xdv1 zeGQ%fuYU-P8LvA7vV9MH0L(xMjzAB7 z19Co&-8<3yJlMgw4RYR6ko86oa%&Bodu$^fMdOF#f*bK58r$%Cq(MB4#t-N1vHG77 z_fN^W;|FeM568V5jIw0b@f#3d&-EArlG(sFME0hRI2<`4p3 z-l)BdUK86B6*7f+oQ*6tsr`r9tFq84!c!>IltSp2S%z??=Cfr%8Y^ekb!-PqFf$}? z*hk;HTq=88NiwRBNEV(_(qvP@IxSOWIhT7R)1k5hxWG1XXo9Q^?Kh>^&Xtb`sS0A3 zb2aH@UWVGT@U9@AjpWCrgNUZsh3VYnJqlvWyALUi$wi&)k`Kn&uG~-~DDACpY&R}b z;e1Rs!ocX{&2kWu9oLnOt&Q`8cG}A;N&Drb^O9_Lx-TxDZ{umaqe4t} zys{xv(Rp@lOUjhoHd&?QE5@ocnu^X3ujG@NE8gkAldnfMGkv<+OkMseT-iaX29)fO z%DZw4vdTe8f#lg?j77KA+TY)AE*Q1E3pjP>TRBIRkj_IZoBC-Lv30JoadD$J4}7`V zZoK7i6)jYc3WOEuYHSsmGIo{E!Q%$6y}NTES(&e6nSJs}&!$e-w|iyJ#F^f%EMj9T zE4|8+3(n`ED{WB^!&+xmPX4Z)wer-OTt2tjn3mD_J156K$TC-T87YmT8ec!r|>lzzht0-g7D&I3mBnpmGij&I^@5iz*H&c(X)Go}6X>l4NR4nmj z`Gm89OTmSSx^zvk{{Ki1yR?Y;pt$Swyb%_{=50}?8eXwK)j8*{#VwJ@IKGij>vVj> zrUqvtEhndN8sPM2S?$SEh&VKZzIjWS28qecfb&zAuJdAZb|@9qt~4r4Lpatz ZZ{||uzP=2|ExuF%<%|s%4td+;;yLs()?Y3k;M%+ndALE?!;KtYhq;l*IN{33?n%v=TlcGw-p 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 4b6e23186f..c33eaced05 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 "" @@ -19,11 +19,11 @@ msgstr "" #: apps.py:22 permissions.py:8 msgid "Smart settings" -msgstr "" +msgstr "Configurações inteligentes" #: apps.py:30 msgid "Setting count" -msgstr "" +msgstr "Contagem de configurações" #: apps.py:34 msgid "Name" @@ -35,7 +35,7 @@ msgstr "Valor" #: apps.py:41 msgid "Overrided by environment variable?" -msgstr "" +msgstr "Preferir variável de ambiente?" #: apps.py:42 msgid "Yes" @@ -47,24 +47,24 @@ msgstr "Não" #: forms.py:17 msgid "Enter the new setting value." -msgstr "" +msgstr "Digite o novo valor de configuração." #: forms.py:36 msgid "Value must be properly quoted." -msgstr "" +msgstr "O valor deve ser devidamente colocado entre aspas." #: forms.py:45 #, python-format msgid "\"%s\" not a valid entry." -msgstr "" +msgstr "\"%s\" não é uma entrada válida." #: links.py:12 links.py:16 msgid "Settings" -msgstr "" +msgstr "Definições" #: links.py:21 msgid "Namespaces" -msgstr "" +msgstr "Namespaces" #: links.py:25 msgid "Edit" @@ -72,37 +72,37 @@ msgstr "Editar" #: permissions.py:12 msgid "Edit settings" -msgstr "" +msgstr "Editar definições" #: permissions.py:15 msgid "View settings" -msgstr "" +msgstr "Ver definições" #: views.py:23 msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "" +msgstr "As configurações herdadas de uma variável de ambiente têm precedência e não podem ser alteradas nesta vista." #: views.py:26 #, python-format msgid "Settings in namespace: %s" -msgstr "" +msgstr "Configurações no namespace: %s" #: views.py:34 #, python-format msgid "Namespace: %s, not found" -msgstr "" +msgstr "Namespace: %s, não encontrado" #: views.py:44 msgid "Setting namespaces" -msgstr "" +msgstr "Configurações dos namespaces" #: views.py:60 msgid "Setting updated successfully." -msgstr "" +msgstr "Configuração atualizada com sucesso." #: views.py:69 #, python-format msgid "Edit setting: %s" -msgstr "" +msgstr "Editar configuração: %s" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo index 13e4aa0d60047cab744df861dac7d8d645a3c7d3..474c9aed6339b9faa256f69f8d9bb804e5666255 100644 GIT binary patch delta 308 zcmYj~F-`+95JeqAL`6eQF&#~m3TiGufs`OoGT3QY18@V* z!p{mJzV!6JXRJS8h){w*n^m_3sOH2O$r-JNJSF>wmKk(v_)t(9|0j2o?5;Yv5$ UzxP`)68w8A+D7|V8*S!(01sPNqW}N^ delta 97 zcmZ3$dY(Dro)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlLbVde-NFdD%#0P, 2015 msgid "" @@ -26,4 +26,4 @@ msgstr "Armazenamento" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" +msgstr "Pasta temporária usada em todo o site para armazenar miniaturas, visualizações e arquivos temporários." diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo index c3c58fb188392e5eba22b140f4bef57138b5e93a..8c2ab8929f1d9bf7ead6c9ac009463bf452b824f 100644 GIT binary patch literal 6055 zcmb`KTWnlM8GsL=fnuP90wqA96GMpIbk}x@bJ--##c@JJoVc!&auJ~M?$~?6*>jdN zXV(cJgai+$QeF^!K>{U2s8mpR;e|d>Bm+X?i9R4eq7pnH(Mk~#5|6<5&$-)c(n>wb z_}g=4=AZvIGk;#X|DLBkp3}4kX^-siyidVn_wa}3=1$KWhqvH5{1tp7JoYBfRU>irQu4qt-z!Ra@9-aFt4C~_`Ay1Y+A>DN%?_Td5e z6?hQ-6wbiE!wpuu(ofZ`PFT?%tJ5a{`28!QageTx1;7RxZ!af9_ zgks+iJ_?_O;@LljJsNnbD9{2)8Menar?0*HWy@6QaT+w5l;CuuA0E*upCWzvnX(;hL#GhU8 z9J~lW2^D+>iu~U~@yE;1z&lX%SZ0#w*@cMqz6vD{H{b*CX(;jeF+2r-0Uw6)@d(%t zC7uR~oEuQ)-G<_?=b_~Juc7GsHz?!&0TJc>7f!=n_ox0l1!eqMDEhRa*dIgD>n4xkx_J(NA{G&Lu`~sd@)56ACvknCxCknWfZ$5)<oe-6&2}Vy-1>U`0|YO%cP$9_-8*VPxyb-Ws>^{(IUVlO@r|E~K%pjJ%btEM*>8ziaFtUF`t zuPmE(iyzLIz$7Mv40Z~qU***nU3k|rxGfseabmj;OHUrX@x2qdBPQ**LSG%QcIUcC zSWB~nF}%>d?X-1m!+ivK%an3PmvjqB9TYCyQ1ay&?_eJF6OEYwIAq}z<7(X8Tw`&7NM1p z=Uav#OF%mv(`kB3rWXxO23fxH(^h}0)i~-EY2!3b=cbOS_0}hjPW$TQkt0M%GKfRj z$f@H>_ix_HP45YpKB@nfv4U1Qtq7a4gLd0kyE+I0@+2zkk+GF*YHpezJ1=$W(`zPg zBY?zoaU>n9OQ-VF^M~{4ivz>1?3;KsihB&@tQv7ph)J()igjjGkGb4N*U@%cwc~!L zTHZ|;$q!NERgX?JFyy&O*GWBjw{>c2zP2gpih00lF%s2XH;EK;p34ErU-ki~V1)Y< z-^k6P6FKXvr=DWqNRie>(kcR1XHz&-+Y_^akxvmN!O;&g62)e}7%rqi=iK_+LapG-}TEu3GNFU^^0PLIt+ zVZ!a+SiaszSt%{1`hoVtqpIE2u{Fu@%gbjQhs$xYA{9YnJ|tr}mRsuZik}qvwp2eE zTMP!V4jO0K#kQrwzI(OD4;)qL&*KxJ+H+jZOdcKcF8AE3k!lab{(;pUen-7XMcg($ zaz!i7e~yMkH$5qC_#kx-UzF~nzE*Ons{!|WK2Vt+nG)!YXEtt=d*%7YOK7gi5)2M> zQ_WkeU9Ge6tkgQL)NyNOD-{yi2^&9?vWHxZI+}t*1jQMOl{dfVNhm2XVW0xRW`jLhG&3pdUw z(aMHaZrpNwe$mF2foUbhM${dBVuT=D9Z)H#qD@zrx{5^!302e{-ld8s>KCR8CE;W= z9?Mm>#njr&VrV%oO-_<)KC`yw_2O$i7)7B)XwT$PmMv6qhVz<~S!8UA(VeBvuKJR# zW3IJ>YC5TL@;8xcQjH@vufh}sSkHJDP1vpN#Ex&-q#Mr-DbXm%8drQf(1HIY6q%D8 zD^skx)6tGpqB!&0X$12MtxSpBYei`D4`nhGUutd~ok85?WmHFrAf{W3k!b7ca`ucE zC`JA-3Wj1;H8t{(*G{Rlj1$YNIi4p)kq1Ryjptj=g`EnE+Ad0u#pprBm7*Ngd6W?Nhhm0e8!!B|}_^aGqpUgJ1O|4%*Vq<*Io}H6{i&et|mpHdO48uRn9`GC}ZDrbcgFiN`_VLP{}X3a@tYMSGmdil%M3A z><)K9Gawoi$s`9}^$IIf7ddkI7dKOS(B;=k+UX=BxUv;WebbYMwexkWvfU{}Uv4vX zVZI5oh4XxJtj)t{+46FA<}1l@ltg0nCd2;+qmt6d delta 582 zcmYk&IYV(c9A1+Wfd_XDS16%P6 zN3enNsiV3$wN#5>s(N~;ZWfUaEkH=Fv^GL+Op23rrI^1aS0~pZCop&ZWXjQ&rxQiJ zmGG>btLAiGd%8~jQz=_6=%VMU%)0HFy!iDIc@xe4vrn`P};q~`5{U9=pP+0N$6w)1aluD*V$wt?lC?~ZwM8tXRSv8YMM NheMg)Wz1&R^besMT9W_( diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 64de3f063e..cfe45bd9ab 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 @@ -32,39 +32,39 @@ msgstr "Documentos" #: events.py:10 msgid "Tag attached to document" -msgstr "" +msgstr "Etiqueta anexado ao documento" #: events.py:13 msgid "Tag created" -msgstr "" +msgstr "Etiqueta criada" #: events.py:16 msgid "Tag edited" -msgstr "" +msgstr "Etiqueta editada" #: events.py:19 msgid "Tag removed from document" -msgstr "" +msgstr "Etiqueta removida do documento" #: links.py:16 workflow_actions.py:75 msgid "Remove tag" -msgstr "" +msgstr "Remover etiqueta" #: links.py:20 links.py:37 msgid "Attach tags" -msgstr "" +msgstr "Anexar etiquetas" #: links.py:31 msgid "Remove tags" -msgstr "" +msgstr "Remover etiquetas" #: links.py:44 msgid "Create new tag" -msgstr "" +msgstr "Criar nova etiqueta" #: links.py:50 links.py:67 views.py:156 msgid "Delete" -msgstr "Eliminar" +msgstr "Remover" #: links.py:55 msgid "Edit" @@ -72,11 +72,11 @@ msgstr "Editar" #: links.py:63 msgid "All" -msgstr "" +msgstr "Todas" #: methods.py:20 msgid "Return a the tags attached to the document." -msgstr "" +msgstr "Devolver as etiquetas anexadas ao documento" #: methods.py:22 msgid "get_tags()" @@ -84,7 +84,7 @@ msgstr "" #: models.py:28 msgid "A short text used as the tag name." -msgstr "" +msgstr "Um texto curto usado como o nome da etiqueta." #: models.py:29 search.py:16 msgid "Label" @@ -92,7 +92,7 @@ msgstr "Nome" #: models.py:32 msgid "The RGB color values for the tag." -msgstr "" +msgstr "Os valores de cor RGB para a etiqueta." #: models.py:33 search.py:20 msgid "Color" @@ -100,19 +100,19 @@ msgstr "Cor" #: models.py:41 msgid "Tag" -msgstr "" +msgstr "Etiqueta" #: models.py:84 msgid "Preview" -msgstr "" +msgstr "Pre-Visualizar" #: models.py:113 msgid "Document tag" -msgstr "" +msgstr "Etiqueta do documento" #: models.py:114 msgid "Document tags" -msgstr "" +msgstr "Etiquetas do documento" #: permissions.py:10 msgid "Create new tags" @@ -120,7 +120,7 @@ msgstr "Criar novas etiquetas" #: permissions.py:13 msgid "Delete tags" -msgstr "Excluir etiquetas" +msgstr "Remover etiquetas" #: permissions.py:16 msgid "View tags" @@ -142,71 +142,71 @@ msgstr "Remover etiquetas de documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "" +msgstr "Lista separada por vírgula das chaves primárias do documento às quais esta 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 "" +msgstr "URL da API que aponta para uma etiqueta em relação ao documento anexado a ela. Essa URL é diferente da URL da etiqueta canônica." #: serializers.py:106 msgid "Primary key of the tag to be added." -msgstr "" +msgstr "Chave primária da etiqueta a ser adicionada." #: views.py:38 #, python-format msgid "Tag attach request performed on %(count)d document" -msgstr "" +msgstr "A solicitação de anexação de tag executada em %(count)d documento" #: views.py:40 #, python-format msgid "Tag attach request performed on %(count)d documents" -msgstr "" +msgstr "A solicitação de anexação de tag executada em %(count)d documentos" #: views.py:47 msgid "Attach" -msgstr "" +msgstr "Anexar" #: views.py:49 #, python-format msgid "Attach tags to %(count)d document" msgid_plural "Attach tags to %(count)d documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anexar etiquetas a %(count)d documento" +msgstr[1] "Anexar etiquetas a %(count)d documentos" #: views.py:61 #, python-format msgid "Attach tags to document: %s" -msgstr "" +msgstr "Anexar etiquetas a documento: %s" #: views.py:70 wizard_steps.py:30 msgid "Tags to be attached." -msgstr "" +msgstr "Etiquetas a serem anexadas." #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "" +msgstr "Documento \"%(document)s\" já tem \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" +msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." #: views.py:131 msgid "Create tag" -msgstr "" +msgstr "Criar etiqueta" #: views.py:145 #, python-format msgid "Tag delete request performed on %(count)d tag" -msgstr "" +msgstr "O pedido para remover %(count)d etiqueta com sucesso" #: views.py:147 #, python-format msgid "Tag delete request performed on %(count)d tags" -msgstr "" +msgstr "O pedido para remover %(count)d etiquetas com sucesso" #: views.py:154 msgid "Will be removed from all documents." @@ -215,13 +215,13 @@ msgstr "Será removida de todos os documentos." #: views.py:158 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Remover a etiqueta selecionada?" +msgstr[1] "Remover a etiquetas selecionadas?" #: views.py:168 #, python-format msgid "Delete tag: %s" -msgstr "" +msgstr "Remover a etiqueta: %s" #: views.py:179 #, python-format @@ -236,41 +236,41 @@ msgstr "Erro ao excluir etiqueta \" %(tag)s \": %(error)s " #: views.py:199 #, python-format msgid "Edit tag: %s" -msgstr "" +msgstr "Editar a etiqueta: %s" #: views.py:218 msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "" +msgstr "Etiquetas são propriedades codificadas por cores que podem ser anexadas ou removidas dos documentos." #: views.py:221 msgid "No tags available" -msgstr "" +msgstr "Nenhuma etiqueta disponível" #: views.py:245 #, python-format msgid "Documents with the tag: %s" -msgstr "" +msgstr "Documento com a etiqueta: %s" #: views.py:269 msgid "Document has no tags attached" -msgstr "" +msgstr "O documento não tem etiquetas anexadas" #: views.py:272 #, python-format msgid "Tags for document: %s" -msgstr "" +msgstr "Etiquetas para documento: %s" #: views.py:288 #, python-format msgid "Tag remove request performed on %(count)d document" -msgstr "" +msgstr "solicitação de remoção etiqueta realizada em %(count)d documento" #: views.py:290 #, python-format msgid "Tag remove request performed on %(count)d documents" -msgstr "" +msgstr "solicitação de remoção etiqueta realizada em %(count)d documentos" #: views.py:298 msgid "Remove" @@ -280,40 +280,40 @@ msgstr "Remover" #, python-format msgid "Remove tags to %(count)d document" msgid_plural "Remove tags to %(count)d documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Remover etiquetas em %(count)d documento" +msgstr[1] "Remover etiquetas em %(count)d documentos" #: views.py:312 #, python-format msgid "Remove tags from document: %s" -msgstr "" +msgstr "Remover etiquetas do documento: %s" #: views.py:321 msgid "Tags to be removed." -msgstr "" +msgstr "Etiquetas a serem removidas." #: views.py:361 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" -msgstr "" +msgstr "O documento \"%(document)s\" não tem as etiquetas \"%(tag)s" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" +msgstr "Etiqueta \"%(tag)s\" removidas com sucesso do documento \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" -msgstr "" +msgstr "Selecionar etiquetas" #: workflow_actions.py:22 msgid "Tags to attach to the document" -msgstr "" +msgstr "Etiquetas para anexar ao documento" #: workflow_actions.py:27 msgid "Attach tag" -msgstr "" +msgstr "Anexar etiqueta" #: workflow_actions.py:70 msgid "Tags to remove from the document" -msgstr "" +msgstr "Etiquetas para remover do documento" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.mo index 52f357948545ae31ee4e2a04360bcacfff666e8f..75821de3e2395534b75330322772f9cb6b7dcf3e 100644 GIT binary patch literal 1546 zcmZ9Lzi%8x6vrotA>{ZGNFq@9rI!Na$XVa{5`wjkF^+$bQ{szdUrd7(&Fzl&2Jg*m zW@hh_COr)WQW`p-icn~fsA$k3THqf@2{ozclJD%U&pD4Y``I`9-pu#CdHeX()B}cb z2J>CaUoqdq{Ne~67=MAUfPaH$!N=eU@PF`4@aR#-UIWj9uY%Ly8{lQ|1@Ia;1-3!& zw++4ncEOY2ebAr#HCO|GtoRG)<9-7P{G(d`7xeo-0Utoa)Uk5kZ{hql)*pg?pWnfA z;Gdw^^&jZZdkT8pCm{~6?8AyP;3?P*@O^Lv^yhRzUk?ZR_;0|M!S6vI{}b2*f3DX5 z0pEiC1cba|_`FYJdVjCQ55L#z#ame?zvuq&_4PIPdX86%UdxM^J~uyJ!t{5B^chNV zFqR`H2Z9{8dzL+KkW_Rh7r6-O1AH+_-WSSQc9lnaiP5==i=fiSvQ@Fm^VF5*5^Gs< zhAS%(v&628dqZtv;^SRz@UBQ%oA(9V5>}XjD7UkR%t;m7QBTBqI`%zeA98lwIC2t4 zbcC&xvCh3ruv?0EQzWg)2xp|I3P7o}Zo#L!BgL?)$>-Ya2}7CDk+7Cpt8CNgFGb{n zRvhdIW2IIhZ7#1|U;b>3cGkAGTQ}RaEs<&Cf(@I55dmxVM?!?SA>? zw$ZWmA3rVYzANs|M!NsWh2jKksFIu~BIpR-hg^uulN^<&>7H|$4eRyca5y^=TQ}Nr zBekhJ1ljuB#gFDM)iYN=U)yMHtQ{mjH`}PKXytI%fv;~!PTY0%Eag%yP}Jkb3b%Nx zvmVSJ`1#~^g$dSFq+_X)kmkG6jfIAkx!Pu$8=eO1+VpKmDl1I8*j%9Ub#YqJxkZ{g zzffZxZqS03IQp5}LnbLsyE5eyy{s);$C{0znAC&V(90SK6ZSO$nqfS47CeSjDQ5`Y-QPXuBXAWjG3sf-K^IZ!?m6GWUH zNCSl#fE3s)AO!(FiAkwB41S5ZsSE){`B|ySCAyv|x?!nB#hLkeR-46{n;E(M@`18o F0svmS6!`!E 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 8fa2323133..6747977686 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 "" @@ -35,19 +35,19 @@ msgstr "Nome" #: apps.py:37 msgid "Default queue?" -msgstr "" +msgstr "Fila padrão?" #: apps.py:41 msgid "Is transient?" -msgstr "" +msgstr "É temporário?" #: apps.py:45 msgid "Type" -msgstr "" +msgstr "Tipo" #: apps.py:48 msgid "Start time" -msgstr "" +msgstr "Hora de início" #: apps.py:51 msgid "Host" @@ -55,56 +55,56 @@ msgstr "" #: apps.py:55 msgid "Arguments" -msgstr "" +msgstr "Argumentos" #: apps.py:59 msgid "Keyword arguments" -msgstr "" +msgstr "Argumentos por keyword" #: apps.py:63 msgid "Worker process ID" -msgstr "" +msgstr "ID processo de trabalho" #: links.py:16 views.py:15 msgid "Background task queues" -msgstr "" +msgstr "Filas de tarefas em segundo plano" #: links.py:20 msgid "Active tasks" -msgstr "" +msgstr "Tarefas ativas" #: links.py:24 msgid "Reserved tasks" -msgstr "" +msgstr "Tarefas reservadas" #: links.py:28 msgid "Scheduled tasks" -msgstr "" +msgstr "Tarefas agendadas" #: permissions.py:10 msgid "View tasks" -msgstr "" +msgstr "Ver tarefas" #: tests/literals.py:5 msgid "Test queue" -msgstr "" +msgstr "Testar fila" #: views.py:30 #, python-format msgid "Active tasks in queue: %s" -msgstr "" +msgstr "Tarefas ativas na fila: %s" #: views.py:42 #, python-format msgid "Unable to retrieve task list; %s" -msgstr "" +msgstr "Não é possível recuperar a lista de tarefas; %s" #: views.py:56 #, python-format msgid "Scheduled tasks in queue: %s" -msgstr "" +msgstr "Tarefas agendadas na fila: %s" #: views.py:68 #, python-format msgid "Reserved tasks in queue: %s" -msgstr "" +msgstr "Tarefas reservadas na fila: %s" 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 f98ee79772978f6dcb1ff559bea648f8a1345e6b..11fd978efb78c7ce2f266354e22bc24bdfd237d2 100644 GIT binary patch literal 5434 zcmb`K+ix958Nin|TxuZDlv^n!(?CdE`y4wagv5#KI*C();v^(aC1|B;e0F@iu)A}* zvwIv@eL#JwkPs3eBou^bgt$tPKnNr*50y^Uhdu!k>H~s5pnc;3Q63P#Z)VRq>q{#h zSb6t%=KkI0oAKWd?E6l{bC&mGywi6@(HG&FeSCOcczYDR58j6R;Vb>UW79K3sCxN_yJfz{-Wpkdwt;h!mAf};098pUqynvX!4?=lqqo`7P91d2Wu%DCsC z==Dt~cKk6!`?e?=K=I=glZfBWKxw}YrT>#q^z6Yi@M}=|zYJxaSE2a%H7NaL z(NBQ;q0F-Y#aa&+Kf zSVEci78JRE0guC%p!nkrI1T>;#cop!M&#%ulyMiJtotOCbvjVwdKO}$=-W{A`2m#q zehR+|@4yFPo6RBqz64n!N}3L}0VJ`FFyKR{Xc9+Z%F z1*JR(@5Wyj>-rU(D(gH2KMXCTDS94?9lr-f&)-1VFN3=NZ&2j=7kmKjry%n@44FP! z6E#Tl{x|_hH^s zyn8*TsT6<8bBI@BOCE_;c`%!Q?&2$PD6t`NB{3m!FFtPZN-W8Koa2?}(*X#drmEa9 zs$1Bq=h~xkyp6;W>^S%_--z=yKQFsoR%2zu{WG`F}moK?vzR2EJl~~P_oM+-u0@77G4#d$I6v@ zJ@{a(Cqb9nQt33cnL%+uflwApMdnNi7E|Ra`?Nl4>Z&lY8C#dVXob++od)~cOX6IZXau9ho%D_SmV`?1|Rg zDK&dyer|4RmS;ltZfmvBxl46vNuAg1nkg{QHS2VdSUTk03InuOjn3xPRTitdM4(Ye zH_Ea%KQptrx!EpdhGgB`YQ)b7OLMcF>7_c!PfKDeu;0Rs)eEhY<9@Q@x+z-AdB?{1U|yYEOUjYF^Qu=) zTurM&r!5j@=H^x2^F_BXcUpy?3rBPH(1JQPd3u605nJ+}BS@;Am0UBdsLCXLCeg7i zBn2(ygJ0!IX33P&PsNGr*?e%PZxRB4u51b4wQeCr(r}3*Pm^Lqn?4aM=kefnk&s%c z3`+=jM(Mwd}Gf7Nct>vwb-w#;fhFV*1^c zepAWe9;9yy?3?8L6_GvOQoFiGJ=JhTaK$zaLdUVFI}{Afeq2KWWqX6441O)H=0c|4 zM9zi*{Md7r+f!ndTnGw@vySz51f``exMSN~d*2pRblGwelRA<$?gE?_q|uS7CE|3- zQAJR>O74vLh7RG(;U$4y7vvBaml!pk1K))BA8mtO8m^iwOkEEf-0qunFl^i8Uu*sA zS%eEntt*?5Br4YsPCL1klNomkLw<<8dF8r+$7q*ZL{Z}H7@f2t_m{e@&T~A-#+Eya zB$0~$5##{%xoE81wCdZ=;OF?OKz(P^q~l%Btg%_g;$ftZl-h8q=KLHfGYp*T_0W;S z3U+#3XhsMd%ycTE3#Vnx`^#v?=>Inr!Mbi0&1&T&EV=oR zMF}HXhxZ(>a$7CS?IbpRbTp1&=P2V}uQwkdK`dKx$23=lX)E7E$EBh4ri)%PS{K~#jxRAZ3bl<>aIhk@*Op`3gTZ^RgaZcqV I%tmAMUrKWn$^ZZW delta 856 zcmX}qKWGzS7{~FeCYQ8nb7^|5wx;zK1yfKdA{4QMR1m>Iq@u*-Fh>ofi6rOH4#r6b z5&t|oi9#k_gcec3%|9rJgR2hGRhvGfF^z9g34TB={1c1#3$;$3M+HYv<0cOk7vmt_MJ3q9w9}z7 zUKIERD)2{KWEa*^6&@psGCzx1yoj2&jQaluDuIWn%GPi@zDLbp#|iv~0j4s&dArah zzH^8deQ*S)u!3561-0OHRKPACz-P!>&Ue&z8%VCs0MV|XhXZ&EcjJ9j0k3fzen#!Y z26hzS4=+2==U^#3$yyU9>Dsy+eY5Gq&8B0~>GLfSR^eO?O1crvz0!r;`)|Ni0d5 zNh((Mx;)&Sq;g0q(6&-sa_-uJak^^{(sQ=gowsZ5@zl|3EwKCGRP;Ca6;#$475>}fnYxv{d!vA5^c1}mO-}5a$TKWs!YG^|M 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 9db64d737d..e00c77b700 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 @@ -51,11 +51,11 @@ msgstr "" #: apps.py:113 search.py:20 msgid "First name" -msgstr "" +msgstr "Nome" #: apps.py:114 search.py:29 msgid "Last name" -msgstr "" +msgstr "Apelidos" #: apps.py:115 search.py:23 msgid "Email" @@ -63,11 +63,11 @@ msgstr "Correio eletrónico" #: apps.py:116 msgid "Is active?" -msgstr "" +msgstr "Esta Activo" #: apps.py:119 apps.py:123 msgid "Has usable password?" -msgstr "" +msgstr "Tem senha utilizável?" #: apps.py:138 msgid "All the groups." @@ -79,35 +79,35 @@ msgstr "Todos os utilziadores." #: dashboard_widgets.py:16 msgid "Total users" -msgstr "" +msgstr "Total de utilizadores" #: dashboard_widgets.py:32 msgid "Total groups" -msgstr "" +msgstr "Total de grupos" #: events.py:12 msgid "Group created" -msgstr "" +msgstr "Grupo criado" #: events.py:15 msgid "Group edited" -msgstr "" +msgstr "Grupo editado" #: events.py:19 msgid "User created" -msgstr "" +msgstr "Utilizador criado" #: events.py:22 msgid "User edited" -msgstr "" +msgstr "Utiliador editado" #: events.py:25 msgid "User logged in" -msgstr "" +msgstr "Utilizador entrou" #: events.py:28 msgid "User logged out" -msgstr "" +msgstr "Utilizador saiu" #: links.py:16 msgid "User details" @@ -115,7 +115,7 @@ msgstr "Detalhes do utilizador" #: links.py:20 msgid "Edit details" -msgstr "" +msgstr "Editar detalhes" #: links.py:24 views.py:56 msgid "Create new group" @@ -135,19 +135,19 @@ msgstr "Criar novo utilziador" #: links.py:92 msgid "User options" -msgstr "" +msgstr "Opções utilizador" #: models.py:22 msgid "Forbid this user from changing their password." -msgstr "" +msgstr "Proibir este utilizador de alterar sua senha" #: models.py:28 msgid "User settings" -msgstr "" +msgstr "definições do utilizaodr" #: models.py:29 msgid "Users settings" -msgstr "" +msgstr "definições do utilizaodr" #: permissions.py:12 msgid "Create new groups" @@ -183,11 +183,11 @@ msgstr "Ver utilizadores existentes" #: search.py:32 msgid "username" -msgstr "" +msgstr "nome utilizador" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "" +msgstr "Lista de chaves primárias de grupos, separados por vírgula" #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -199,11 +199,11 @@ msgstr "Anónimo" #: views.py:37 msgid "Current user details" -msgstr "" +msgstr "Detalhes dados atuais do utilizador" #: views.py:45 msgid "Edit current user details" -msgstr "" +msgstr "Editar dados atuais do utilizador" #: views.py:78 #, python-format @@ -220,45 +220,45 @@ 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 "Grupos de utilizadores são unidades de organização. Eles devem espelhar as unidades de organização da sua organização. Os grupos não podem ser usados para controle de acesso. Use funções para permissões e controle de acesso, adicione grupos a eles." #: views.py:119 msgid "There are no user groups" -msgstr "" +msgstr "Não há grupos de utilizadores" #: views.py:132 msgid "Available users" -msgstr "" +msgstr "Utilizadores disponiveis" #: views.py:133 msgid "Group users" -msgstr "" +msgstr "Grupo de utilizadores" #: views.py:141 #, python-format msgid "Users of group: %s" -msgstr "" +msgstr "Utilizadores no grupo: %s" #: views.py:173 #, python-format msgid "User delete request performed on %(count)d user" -msgstr "" +msgstr "Solicitação de remoção do utilizador executada em %(count)d utilizador" #: views.py:175 #, python-format msgid "User delete request performed on %(count)d users" -msgstr "" +msgstr "Solicitação de remoção do utilizador executada em %(count)d utilizadores" #: views.py:183 msgid "Delete user" msgid_plural "Delete users" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Remover utilizador" +msgstr[1] "Remover utilizadores" #: views.py:193 #, python-format msgid "Delete user: %s" -msgstr "" +msgstr "Remover utilizador: %s" #: views.py:204 msgid "" @@ -279,7 +279,7 @@ msgstr "Erro ao eliminar o utilizador \"%(user)s\": %(error)s " #: views.py:236 #, python-format msgid "Details of user: %s" -msgstr "" +msgstr "Detalhes do utilizador: %s" #: views.py:251 #, python-format @@ -294,7 +294,7 @@ msgstr "Grupos disponíveis" #. user. #: views.py:269 msgid "User groups" -msgstr "" +msgstr "Grupos de utilizadores" #: views.py:277 #, python-format @@ -305,13 +305,13 @@ msgstr "Grupos do utilizador: %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 "Contas de utilizador podem ser criadas a partir desta vista. Depois de criar uma conta de utilizador, você será solicitado a definir uma senha para ela." #: views.py:301 msgid "There are no user accounts" -msgstr "" +msgstr "Não há contas de utilizador" #: views.py:316 #, python-format msgid "Edit options for user: %s" -msgstr "" +msgstr "Editar opções para o utilizador: %s" From 557a20d6cc213d8290127cf11130d00158924ffb Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 03:10:42 -0400 Subject: [PATCH 12/21] Update translations Signed-off-by: Roberto Rosario --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 2 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/cs/LC_MESSAGES/django.po | 2 +- .../acls/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/lv/LC_MESSAGES/django.po | 2 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pt/LC_MESSAGES/django.mo | Bin 4795 -> 721 bytes .../apps/acls/locale/pt/LC_MESSAGES/django.po | 70 +-- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 2 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../acls/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 1377 -> 1377 bytes .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 874 -> 874 bytes .../locale/bg/LC_MESSAGES/django.po | 16 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2821 -> 2821 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/cs/LC_MESSAGES/django.mo | Bin 492 -> 492 bytes .../locale/cs/LC_MESSAGES/django.po | 16 +- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 1254 -> 1254 bytes .../locale/da_DK/LC_MESSAGES/django.po | 16 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 7715 -> 7715 bytes .../locale/de_DE/LC_MESSAGES/django.po | 16 +- .../locale/el/LC_MESSAGES/django.mo | Bin 2729 -> 2729 bytes .../locale/el/LC_MESSAGES/django.po | 16 +- .../locale/en/LC_MESSAGES/django.po | 14 +- .../locale/es/LC_MESSAGES/django.mo | Bin 8080 -> 8290 bytes .../locale/es/LC_MESSAGES/django.po | 16 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 2694 -> 2694 bytes .../locale/fa/LC_MESSAGES/django.po | 16 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 7913 -> 7963 bytes .../locale/fr/LC_MESSAGES/django.po | 19 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 877 -> 877 bytes .../locale/hu/LC_MESSAGES/django.po | 16 +- .../locale/id/LC_MESSAGES/django.mo | Bin 576 -> 576 bytes .../locale/id/LC_MESSAGES/django.po | 16 +- .../locale/it/LC_MESSAGES/django.mo | Bin 7411 -> 7411 bytes .../locale/it/LC_MESSAGES/django.po | 16 +- .../locale/lv/LC_MESSAGES/django.mo | Bin 7612 -> 7586 bytes .../locale/lv/LC_MESSAGES/django.po | 18 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2793 -> 2793 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 2736 -> 2736 bytes .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 4370 -> 1223 bytes .../locale/pt/LC_MESSAGES/django.po | 87 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 7136 -> 7136 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 16 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 7779 -> 7779 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 3999 -> 3999 bytes .../locale/ru/LC_MESSAGES/django.po | 16 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 2193 -> 2193 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 2328 -> 2328 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 16 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 653 -> 653 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 16 +- .../locale/zh/LC_MESSAGES/django.mo | Bin 7154 -> 7154 bytes .../locale/zh/LC_MESSAGES/django.po | 16 +- .../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.mo | Bin 3329 -> 3631 bytes .../locale/fr/LC_MESSAGES/django.po | 8 +- .../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.mo | Bin 3422 -> 1335 bytes .../locale/pt/LC_MESSAGES/django.po | 47 +- .../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 +- .../autoadmin/locale/ar/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/cs/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/da/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/el/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/en/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/es/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/fa/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/fr/LC_MESSAGES/django.mo | Bin 2331 -> 2386 bytes .../autoadmin/locale/fr/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/hu/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/id/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/it/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/pl/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/pt/LC_MESSAGES/django.mo | Bin 2293 -> 854 bytes .../autoadmin/locale/pt/LC_MESSAGES/django.po | 28 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../autoadmin/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 +- .../autoadmin/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/ar/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/el/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/en/LC_MESSAGES/django.po | 6 +- .../cabinets/locale/es/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/fa/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/fr/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/hu/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/id/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/it/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/pl/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/pt/LC_MESSAGES/django.mo | Bin 5742 -> 713 bytes .../cabinets/locale/pt/LC_MESSAGES/django.po | 97 ++-- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../cabinets/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 +- .../cabinets/locale/zh/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/ar/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/el/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/en/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fr/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/pt/LC_MESSAGES/django.mo | Bin 4254 -> 505 bytes .../checkouts/locale/pt/LC_MESSAGES/django.po | 96 ++-- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../checkouts/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 +- .../checkouts/locale/zh/LC_MESSAGES/django.po | 2 +- .../common/locale/ar/LC_MESSAGES/django.po | 2 +- .../common/locale/bg/LC_MESSAGES/django.po | 2 +- .../common/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../common/locale/cs/LC_MESSAGES/django.po | 2 +- .../common/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../common/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../common/locale/el/LC_MESSAGES/django.po | 2 +- .../common/locale/en/LC_MESSAGES/django.po | 2 +- .../common/locale/es/LC_MESSAGES/django.mo | Bin 28322 -> 29445 bytes .../common/locale/es/LC_MESSAGES/django.po | 8 +- .../common/locale/fa/LC_MESSAGES/django.po | 2 +- .../common/locale/fr/LC_MESSAGES/django.po | 2 +- .../common/locale/hu/LC_MESSAGES/django.po | 2 +- .../common/locale/id/LC_MESSAGES/django.po | 2 +- .../common/locale/it/LC_MESSAGES/django.po | 2 +- .../common/locale/lv/LC_MESSAGES/django.mo | Bin 27240 -> 28376 bytes .../common/locale/lv/LC_MESSAGES/django.po | 10 +- .../common/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../common/locale/pl/LC_MESSAGES/django.po | 2 +- .../common/locale/pt/LC_MESSAGES/django.mo | Bin 27572 -> 1264 bytes .../common/locale/pt/LC_MESSAGES/django.po | 288 +++------- .../common/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../common/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../common/locale/ru/LC_MESSAGES/django.po | 2 +- .../common/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../common/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../common/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../common/locale/zh/LC_MESSAGES/django.po | 2 +- .../converter/locale/ar/LC_MESSAGES/django.po | 2 +- .../converter/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../converter/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../converter/locale/el/LC_MESSAGES/django.po | 2 +- .../converter/locale/en/LC_MESSAGES/django.po | 2 +- .../converter/locale/es/LC_MESSAGES/django.po | 2 +- .../converter/locale/fa/LC_MESSAGES/django.po | 2 +- .../converter/locale/fr/LC_MESSAGES/django.po | 2 +- .../converter/locale/hu/LC_MESSAGES/django.po | 2 +- .../converter/locale/id/LC_MESSAGES/django.po | 2 +- .../converter/locale/it/LC_MESSAGES/django.po | 2 +- .../converter/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../converter/locale/pl/LC_MESSAGES/django.po | 2 +- .../converter/locale/pt/LC_MESSAGES/django.mo | Bin 4180 -> 627 bytes .../converter/locale/pt/LC_MESSAGES/django.po | 78 ++- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../converter/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 +- .../converter/locale/zh/LC_MESSAGES/django.po | 2 +- .../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.mo | Bin 510 -> 382 bytes .../locale/pt/LC_MESSAGES/django.po | 10 +- .../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 +- .../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.mo | Bin 6823 -> 711 bytes .../locale/pt/LC_MESSAGES/django.po | 128 ++--- .../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 +- .../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.mo | Bin 5255 -> 2271 bytes .../locale/pt/LC_MESSAGES/django.po | 77 ++- .../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 +- .../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.mo | Bin 1941 -> 961 bytes .../locale/pt/LC_MESSAGES/django.po | 28 +- .../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 +- .../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.mo | Bin 8036 -> 1936 bytes .../locale/pt/LC_MESSAGES/django.po | 129 ++--- .../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 +- .../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.mo | Bin 4505 -> 766 bytes .../locale/pt/LC_MESSAGES/django.po | 88 +-- .../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 +- .../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.mo | Bin 6387 -> 1046 bytes .../locale/pt/LC_MESSAGES/django.po | 121 ++-- .../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 +- .../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.mo | Bin 18186 -> 18316 bytes .../locale/es/LC_MESSAGES/django.po | 6 +- .../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.mo | Bin 17027 -> 17179 bytes .../locale/lv/LC_MESSAGES/django.po | 8 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 17992 -> 810 bytes .../locale/pt/LC_MESSAGES/django.po | 324 ++++++----- .../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 +- .../documents/locale/ar/LC_MESSAGES/django.po | 2 +- .../documents/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../documents/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../documents/locale/el/LC_MESSAGES/django.po | 2 +- .../documents/locale/en/LC_MESSAGES/django.po | 2 +- .../documents/locale/es/LC_MESSAGES/django.po | 2 +- .../documents/locale/fa/LC_MESSAGES/django.po | 2 +- .../documents/locale/fr/LC_MESSAGES/django.po | 2 +- .../documents/locale/hu/LC_MESSAGES/django.po | 2 +- .../documents/locale/id/LC_MESSAGES/django.po | 2 +- .../documents/locale/it/LC_MESSAGES/django.po | 2 +- .../documents/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../documents/locale/pl/LC_MESSAGES/django.po | 2 +- .../documents/locale/pt/LC_MESSAGES/django.mo | Bin 32385 -> 4600 bytes .../documents/locale/pt/LC_MESSAGES/django.po | 537 +++++++++--------- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../documents/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 +- .../documents/locale/zh/LC_MESSAGES/django.po | 2 +- .../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.mo | Bin 1466 -> 1469 bytes .../locale/de_DE/LC_MESSAGES/django.po | 6 +- .../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.mo | Bin 1517 -> 555 bytes .../locale/pt/LC_MESSAGES/django.po | 26 +- .../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 +- .../events/locale/ar/LC_MESSAGES/django.po | 2 +- .../events/locale/bg/LC_MESSAGES/django.po | 2 +- .../events/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../events/locale/cs/LC_MESSAGES/django.po | 2 +- .../events/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../events/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../events/locale/el/LC_MESSAGES/django.po | 2 +- .../events/locale/en/LC_MESSAGES/django.po | 2 +- .../events/locale/es/LC_MESSAGES/django.po | 2 +- .../events/locale/fa/LC_MESSAGES/django.po | 2 +- .../events/locale/fr/LC_MESSAGES/django.po | 2 +- .../events/locale/hu/LC_MESSAGES/django.po | 2 +- .../events/locale/id/LC_MESSAGES/django.po | 2 +- .../events/locale/it/LC_MESSAGES/django.po | 2 +- .../events/locale/lv/LC_MESSAGES/django.po | 2 +- .../events/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../events/locale/pl/LC_MESSAGES/django.po | 2 +- .../events/locale/pt/LC_MESSAGES/django.mo | Bin 3178 -> 895 bytes .../events/locale/pt/LC_MESSAGES/django.po | 70 +-- .../events/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../events/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../events/locale/ru/LC_MESSAGES/django.po | 2 +- .../events/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../events/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../events/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../events/locale/zh/LC_MESSAGES/django.po | 2 +- .../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.mo | Bin 5777 -> 574 bytes .../locale/pt/LC_MESSAGES/django.po | 94 +-- .../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 +- .../linking/locale/ar/LC_MESSAGES/django.po | 4 +- .../linking/locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../linking/locale/cs/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.po | 4 +- .../linking/locale/el/LC_MESSAGES/django.po | 4 +- .../linking/locale/en/LC_MESSAGES/django.po | 4 +- .../linking/locale/es/LC_MESSAGES/django.po | 4 +- .../linking/locale/fa/LC_MESSAGES/django.po | 4 +- .../linking/locale/fr/LC_MESSAGES/django.po | 4 +- .../linking/locale/hu/LC_MESSAGES/django.po | 4 +- .../linking/locale/id/LC_MESSAGES/django.po | 4 +- .../linking/locale/it/LC_MESSAGES/django.po | 4 +- .../linking/locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../linking/locale/pl/LC_MESSAGES/django.po | 4 +- .../linking/locale/pt/LC_MESSAGES/django.mo | Bin 6674 -> 2721 bytes .../linking/locale/pt/LC_MESSAGES/django.po | 80 +-- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../linking/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../linking/locale/zh/LC_MESSAGES/django.po | 4 +- .../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.mo | Bin 1014 -> 451 bytes .../locale/pt/LC_MESSAGES/django.po | 18 +- .../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 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 2 +- .../mailer/locale/bg/LC_MESSAGES/django.po | 2 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../mailer/locale/cs/LC_MESSAGES/django.po | 2 +- .../mailer/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../mailer/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../mailer/locale/el/LC_MESSAGES/django.po | 2 +- .../mailer/locale/en/LC_MESSAGES/django.po | 2 +- .../mailer/locale/es/LC_MESSAGES/django.mo | Bin 9586 -> 9649 bytes .../mailer/locale/es/LC_MESSAGES/django.po | 6 +- .../mailer/locale/fa/LC_MESSAGES/django.po | 2 +- .../mailer/locale/fr/LC_MESSAGES/django.po | 2 +- .../mailer/locale/hu/LC_MESSAGES/django.po | 2 +- .../mailer/locale/id/LC_MESSAGES/django.po | 2 +- .../mailer/locale/it/LC_MESSAGES/django.po | 2 +- .../mailer/locale/lv/LC_MESSAGES/django.mo | Bin 8944 -> 9034 bytes .../mailer/locale/lv/LC_MESSAGES/django.po | 8 +- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pl/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pt/LC_MESSAGES/django.mo | Bin 9181 -> 1432 bytes .../mailer/locale/pt/LC_MESSAGES/django.po | 150 +++-- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ru/LC_MESSAGES/django.po | 2 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../mailer/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../mailer/locale/zh/LC_MESSAGES/django.po | 2 +- .../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.mo | Bin 1806 -> 980 bytes .../locale/pt/LC_MESSAGES/django.po | 26 +- .../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 +- .../metadata/locale/ar/LC_MESSAGES/django.po | 2 +- .../metadata/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../metadata/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../metadata/locale/el/LC_MESSAGES/django.po | 2 +- .../metadata/locale/en/LC_MESSAGES/django.po | 2 +- .../metadata/locale/es/LC_MESSAGES/django.po | 2 +- .../metadata/locale/fa/LC_MESSAGES/django.po | 2 +- .../metadata/locale/fr/LC_MESSAGES/django.po | 2 +- .../metadata/locale/hu/LC_MESSAGES/django.po | 2 +- .../metadata/locale/id/LC_MESSAGES/django.po | 2 +- .../metadata/locale/it/LC_MESSAGES/django.po | 2 +- .../metadata/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../metadata/locale/pl/LC_MESSAGES/django.po | 2 +- .../metadata/locale/pt/LC_MESSAGES/django.mo | Bin 11724 -> 2295 bytes .../metadata/locale/pt/LC_MESSAGES/django.po | 167 +++--- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../metadata/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 +- .../metadata/locale/zh/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/ar/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/el/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/en/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../mirroring/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 +- .../mirroring/locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 2 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/cs/LC_MESSAGES/django.po | 2 +- .../motd/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/lv/LC_MESSAGES/django.po | 2 +- .../motd/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/pt/LC_MESSAGES/django.mo | Bin 2186 -> 548 bytes .../apps/motd/locale/pt/LC_MESSAGES/django.po | 44 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 2 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../motd/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../motd/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/zh/LC_MESSAGES/django.po | 2 +- .../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 | 2 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 2 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/cs/LC_MESSAGES/django.po | 2 +- .../ocr/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/lv/LC_MESSAGES/django.po | 2 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.mo | Bin 3975 -> 783 bytes .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 76 +-- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 2 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../ocr/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/zh/LC_MESSAGES/django.po | 2 +- .../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.mo | Bin 3348 -> 3390 bytes .../locale/es/LC_MESSAGES/django.po | 6 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 3550 -> 3622 bytes .../locale/fr/LC_MESSAGES/django.po | 8 +- .../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.mo | Bin 3325 -> 3395 bytes .../locale/lv/LC_MESSAGES/django.po | 8 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 3503 -> 995 bytes .../locale/pt/LC_MESSAGES/django.po | 54 +- .../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 +- .../platform/locale/ar/LC_MESSAGES/django.po | 2 +- .../platform/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../platform/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../platform/locale/el/LC_MESSAGES/django.po | 2 +- .../platform/locale/en/LC_MESSAGES/django.po | 2 +- .../platform/locale/es/LC_MESSAGES/django.po | 2 +- .../platform/locale/fa/LC_MESSAGES/django.po | 2 +- .../platform/locale/fr/LC_MESSAGES/django.po | 2 +- .../platform/locale/hu/LC_MESSAGES/django.po | 2 +- .../platform/locale/id/LC_MESSAGES/django.po | 2 +- .../platform/locale/it/LC_MESSAGES/django.po | 2 +- .../platform/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../platform/locale/pl/LC_MESSAGES/django.po | 2 +- .../platform/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../platform/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 +- .../platform/locale/zh/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/el/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../rest_api/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 +- .../rest_api/locale/zh/LC_MESSAGES/django.po | 2 +- .../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.mo | Bin 1912 -> 621 bytes .../locale/pt/LC_MESSAGES/django.po | 36 +- .../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 +- .../sources/locale/ar/LC_MESSAGES/django.po | 50 +- .../sources/locale/bg/LC_MESSAGES/django.po | 50 +- .../locale/bs_BA/LC_MESSAGES/django.po | 50 +- .../sources/locale/cs/LC_MESSAGES/django.po | 50 +- .../locale/da_DK/LC_MESSAGES/django.po | 50 +- .../locale/de_DE/LC_MESSAGES/django.po | 50 +- .../sources/locale/el/LC_MESSAGES/django.po | 50 +- .../sources/locale/en/LC_MESSAGES/django.po | 50 +- .../sources/locale/es/LC_MESSAGES/django.mo | Bin 15860 -> 16179 bytes .../sources/locale/es/LC_MESSAGES/django.po | 54 +- .../sources/locale/fa/LC_MESSAGES/django.po | 50 +- .../sources/locale/fr/LC_MESSAGES/django.po | 50 +- .../sources/locale/hu/LC_MESSAGES/django.po | 50 +- .../sources/locale/id/LC_MESSAGES/django.po | 50 +- .../sources/locale/it/LC_MESSAGES/django.po | 50 +- .../sources/locale/lv/LC_MESSAGES/django.mo | Bin 15335 -> 15658 bytes .../sources/locale/lv/LC_MESSAGES/django.po | 56 +- .../locale/nl_NL/LC_MESSAGES/django.po | 50 +- .../sources/locale/pl/LC_MESSAGES/django.po | 50 +- .../sources/locale/pt/LC_MESSAGES/django.po | 50 +- .../locale/pt_BR/LC_MESSAGES/django.po | 50 +- .../locale/ro_RO/LC_MESSAGES/django.po | 50 +- .../sources/locale/ru/LC_MESSAGES/django.po | 50 +- .../locale/sl_SI/LC_MESSAGES/django.po | 50 +- .../locale/tr_TR/LC_MESSAGES/django.po | 50 +- .../locale/vi_VN/LC_MESSAGES/django.po | 50 +- .../sources/locale/zh/LC_MESSAGES/django.po | 50 +- .../storage/locale/ar/LC_MESSAGES/django.po | 2 +- .../storage/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../storage/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../storage/locale/el/LC_MESSAGES/django.po | 2 +- .../storage/locale/en/LC_MESSAGES/django.po | 2 +- .../storage/locale/es/LC_MESSAGES/django.po | 2 +- .../storage/locale/fa/LC_MESSAGES/django.po | 2 +- .../storage/locale/fr/LC_MESSAGES/django.po | 2 +- .../storage/locale/hu/LC_MESSAGES/django.po | 2 +- .../storage/locale/id/LC_MESSAGES/django.po | 2 +- .../storage/locale/it/LC_MESSAGES/django.po | 2 +- .../storage/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../storage/locale/pl/LC_MESSAGES/django.po | 2 +- .../storage/locale/pt/LC_MESSAGES/django.mo | Bin 672 -> 463 bytes .../storage/locale/pt/LC_MESSAGES/django.po | 6 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../storage/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 +- .../storage/locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 6 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/cs/LC_MESSAGES/django.po | 6 +- .../tags/locale/da_DK/LC_MESSAGES/django.po | 6 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/el/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/lv/LC_MESSAGES/django.po | 6 +- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/pt/LC_MESSAGES/django.mo | Bin 6055 -> 1321 bytes .../apps/tags/locale/pt/LC_MESSAGES/django.po | 116 ++-- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 6 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 6 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 6 +- .../tags/locale/tr_TR/LC_MESSAGES/django.po | 6 +- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/zh/LC_MESSAGES/django.po | 6 +- .../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.mo | Bin 1546 -> 524 bytes .../locale/pt/LC_MESSAGES/django.po | 40 +- .../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 +- .../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.mo | Bin 5466 -> 5587 bytes .../locale/es/LC_MESSAGES/django.po | 8 +- .../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.mo | Bin 5542 -> 5687 bytes .../locale/lv/LC_MESSAGES/django.po | 10 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 5434 -> 2352 bytes .../locale/pt/LC_MESSAGES/django.po | 76 +-- .../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 +- 1024 files changed, 3402 insertions(+), 3521 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 266f7c0345..289c44f18a 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index c63866b825..a9dc481f13 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 106436b792..ab03067e61 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po index 1aa27dae94..0b1835e270 100644 --- a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/cs/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 16cfec73c6..6a68c3040f 100644 --- a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da_DK/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 a6463d208f..91d86cf0d8 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po index 2a203bec79..11dd26494c 100644 --- a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/el/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 515977122a..d6beaf1567 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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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 da325b1542..6bfe7543c7 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index 89a25cfd42..dd8a1f27b7 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index 7946f444fa..535376b9d5 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index d9b1915d55..d3222752af 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index f05b38b412..6794f0a30b 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/id/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 05002f4535..02eecd22d1 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po index 8acb9dad4d..9531a4ed48 100644 --- a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/lv/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-0400\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" 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 43f782289e..30a67238cd 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index cdad323055..7d834ffbf5 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.mo index 350821fd5543ef27bbc3ba880a52714610068924..982de1ae2dfa0678427ca40bdcb77a6ff705b263 100644 GIT binary patch delta 360 zcmXwzKWhR(5XDF1Ut$r0rNuSk=MXiOg`}`bbDV=LthaD;5v%wqQpHlR7D*MXEYwEu z3#75LmehH(>cDT`usiR~{?w28>F;yylTam418?9F%z)Mo0Mgx{m4P4)J3x(I$1I{AQ#cI|M`DIWoj1o0l zU7=cSC9FyMQJ k(>~NxM;&WMCJqxH6($-6%Pnp5%|b8l@n+$>KHuN}0c5*IhX4Qo literal 4795 zcmbuBON<;x8OJ*i^H{(naR>wmlnusShncZW9Go#eEZ%iku$|R<9pwNLwcRx{W%qPV zy1Hj~;gSOfE=ULoa^OM~B=8{z9=RnFVs1!qLx>9}AK-)#hlrf`eN{b=jW-Svt(pG! zqxyUNzejz4d+7cjCmg5vf0}=OUy@t^UwaQHj$ghvNj?PL2A9BB!5sV@ct6rF{1nP`?D?C2HLwWufCz0C%#lNqEkAoVN?|;zT|D<{Ud+=*K|0}o#9(y3l8-NnG8WexN z2VMt%2yTFPz)kSngK^#WL5bUopy>Gx_$2sRgZ~DFuTu{t$qDcY@H5~y!E@kuL3#fx z5Vryc!0Zqog@}8s9Y=@C!6b!gW|_2{^GxIFYy-6q|_v~lGoz%7x+uAK}9$u-pR_PD=ICG zu1prLO=hQ;zS2eJRnL`bB~6X@>XIv}(&g%k^_AkKvR-L5Dotv=QA1M=T&7gzRN5@8 zy(yKBAM@C4-!y6El`T{?Fv{=w$_(40*C#6*>*~hl6*Y3UsBF;}F~~OM(0XrOAs>|{ z*OgrJP6RZPr`mEci&r}Xn+}w%f_YV?(}Bs_YHNVCq5;TkuV+eAuzaASF{v(GVN;!} z9arA!)F)K*Ue&l&FqNmL@Z&wj&+e&AwTszr} zE;PY!?%tXco1}FjC+IyXDwZL6ZZ63v9`i1SjJNM@HD(~x$1}lpbmPY5y92#Naq^mf z;X+mi<-ygcKG`C8Q$pTd5Z;zO*{-c#y}q<*My{+{ zSAE}Rt*_R7-`a9rwY2d}3kt0)Z>`e6y6WudGf%ZnKiN8SPM!X8_lfh5pXOM)qJ7oc zq8L3Jf;7ubw{1$|w&}bstz$vauXW$Fwu~Nj)dtGyer@381lu#a z?bHoBW&F1648_it$%ej@H*z|os%F7jJA`Zk?a66OC*=t+gVh^oo90o!_?A%-*gVRZAOrUFy7b*_A`zRmCXW`io~T zsCaqtWTB2;RA-hiEG5##($eb8g-hAKr`O*03yM3{2X5adWfRvbGt*t&$@PjfF}M6h zHMy;v?C2(QWNPlz^EF!|{59K`=5Aecbt#kdDNJp4!isbpU4KB zVG+CP^EGKWg21prXjQXwHAOLb*(vGB?Dvyj$j#(uVJi#vHWnDMSIb=DM3V8<8kgr&}qCGBu-9?Z_vvr)pR zCZEQW+gK{qQ`9QV5pjgjffQ=s(u~*`#kbrmEj1OViv1y;GqEr7R>q4sT}*S4oC=X^ zCWmq8^vN|hhC~@Fgv(hLE>u!*K7M41!TyR2kJpr46lPx<61r>v| zNYUbT6cDL2Wtc(wghs@676Tge%)AOS2-}iapi?I3c5+FIXkJ6o)(QxorMo1f^o6Oa zcW7db!2MOZkYKdH(1YKp%}A3T+ajgZ<9H(8MZUtcGQZuQXqTHpO5%mIl!a-9Y*{Sh y;Mn58(*D0cTM&@eH}8=-*FxJMov6uK>!l$yVUJlb3tSV%K;1orGNgz+s`J115U~9K diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 8a7c28fc30..2fe6e80553 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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-07-05 01:27-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" @@ -27,19 +27,19 @@ msgstr "Listas de controlo de acesso" #: events.py:12 msgid "ACL created" -msgstr "ACL criado" +msgstr "" #: events.py:15 msgid "ACL edited" -msgstr "ACL editado" +msgstr "" #: forms.py:15 models.py:49 msgid "Role" -msgstr "Função" +msgstr "" #: links.py:34 msgid "New ACL" -msgstr "Novo ACL" +msgstr "" #: links.py:39 msgid "Delete" @@ -52,25 +52,25 @@ msgstr "Permissões" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "Objeto \"%s\" não é um modelo e não pode ser verificado para acesso." +msgstr "" #: managers.py:236 #, python-format msgid "Insufficient access for: %s" -msgstr "Permissões insuficientes para aceder a: %s" +msgstr "" #: models.py:57 msgid "Access entry" -msgstr "Acesso" +msgstr "" #: models.py:58 msgid "Access entries" -msgstr "Acessos" +msgstr "" #: models.py:62 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" -msgstr "Funções \"%(role)s\" de permissões para \"%(object)s\"." +msgstr "" #: permissions.py:10 msgid "Edit ACLs" @@ -84,76 +84,69 @@ msgstr "Ver ACL's" msgid "" "API URL pointing to the list of permissions for this access control list." msgstr "" -"URL da API que aponta para a lista de permissões para essa 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 "" -"URL da API que aponta para uma permissão em relação à lista de controle de acesso" -"que está ligado. Este URL é diferente do URL do 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 conceder à lista de controle de acesso." +msgstr "" #: serializers.py:115 serializers.py:191 #, python-format msgid "No such permission: %s" -msgstr "Nenhuma permissão: %s" +msgstr "" #: serializers.py:130 msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." msgstr "" -"Lista separada por vírgula de chaves primárias de permissão para conceder a essa lista " -"de controle de acesso." #: serializers.py:142 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Chaves primárias da função à qual essa lista de controle de acesso se vincula." +msgstr "" #: views.py:62 #, python-format msgid "New access control lists for: %s" -msgstr "Novas listas de controle de acesso para: %s" +msgstr "" #: views.py:100 #, python-format msgid "Delete ACL: %s" -msgstr "Excluir ACL: %s" +msgstr "" #: views.py:147 msgid "There are no ACLs for this object" -msgstr "Não há ACLs para este objeto" +msgstr "" #: views.py:150 msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." msgstr "" -"ACL significa Access Control List (Lista de Controlo de Acceso), é o metedo pelo qual se controla " -"o acceso do utilizador a objectos pelo sistema." #: views.py:154 #, python-format msgid "Access control lists for: %s" -msgstr "Lista de Controlo de Accesos for: %s" +msgstr "" #: views.py:170 msgid "Granted permissions" -msgstr "Permissões concedidas" +msgstr "" #: views.py:171 msgid "Available permissions" -msgstr "Permissões disponíveis" +msgstr "" #: views.py:215 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"." -msgstr "Funções \"%(role)s\" de permissões para \"%(object)s\"." +msgstr "" #: views.py:224 msgid "" @@ -162,27 +155,23 @@ msgid "" "to be removed from the parent object's ACL or from them role via the Setup " "menu." msgstr "" -"As permissões desativadas são herdadas de um objeto pai ou são concedidas diretamente " -"para a função e não pode ser removido dessa exibição. Permissões herdadas precisam " -"para ser removido da ACL do objeto pai ou da função deles através do menu Setup." #: workflow_actions.py:26 msgid "Object type" -msgstr "Tipo de objeto" +msgstr "" #: workflow_actions.py:29 msgid "Type of the object for which the access will be modified." -msgstr "Tipo do objeto para o qual o acesso será modificado." +msgstr "" #: workflow_actions.py:35 msgid "Object ID" -msgstr "ID do objeto" +msgstr "" #: workflow_actions.py:38 msgid "" "Numeric identifier of the object for which the access will be modified." msgstr "" -"Identificador numérico do objeto para o qual o acesso será modificado." #: workflow_actions.py:43 workflow_actions.py:158 msgid "Roles" @@ -190,26 +179,25 @@ msgstr "Funções" #: workflow_actions.py:45 workflow_actions.py:160 msgid "Roles whose access will be modified." -msgstr "Funções cujo acesso será modificado." +msgstr "" #: 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 para conceder/revogar para/da função para o objeto selecionado acima." #: workflow_actions.py:60 msgid "Grant access" -msgstr "Conceder acesso" +msgstr "" #: workflow_actions.py:143 msgid "Revoke access" -msgstr "Revogar acesso" +msgstr "" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "Conceder acesso ao documento" +msgstr "" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "Revogar acesso ao documento" +msgstr "" 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 3ba4681a6f..91f23e16d1 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 a54f03263a..a5c2399b6d 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-0400\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" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index b8494e8cc1..5124140eb0 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 2469b32127..73f37c3e1a 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 94cda22a94..f42b1505a0 100644 --- a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/tr_TR/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" 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 048e0c732d..c0fa3e6de3 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po index 5e0145b33b..94a96771a8 100644 --- a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh/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-29 02:14-0400\n" +"POT-Creation-Date: 2019-07-05 01:27-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" diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.mo index 57e8fafad69e925d4b07d68e9333f6a8e5528741..05429abed705f9584b45e6b695b66ce20bad0e72 100644 GIT binary patch delta 23 fcmaFJ^^j}B5+*KlT?11E15+zw delta 23 fcmaFH`HXYJVTwitter %(icon_social_twitter)s, Facebook %(icon_social_facebook)s, oder Instagram %(icon_social_instagram)s\n " -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Warnung" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Aktionen" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Ausklappmenü ein-/ausschalten" diff --git a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.mo index d7bf5d4bd51c0760bd0426d0c021cb1a01cada08..489b2aec6b6e28d6dd1f25522c8c9ddda61f8908 100644 GIT binary patch delta 23 fcmZ1}x>9t*Cl)SqT?11E15+zw9t*Cl)R\n" "Language-Team: LANGUAGE \n" @@ -203,16 +203,22 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo index 44cb07533236457f9b006d038e23f978145bfe7a..3e1fe1a06a2ca94c6440b0509f37e81fbb3b1fdf 100644 GIT binary patch delta 1451 zcmXxkTWl0n9LMp0u|ivVR}c!tQ>>!4EN$%#wXunyhIok&0x5wwY-iUgb++A|O^QCO ziGhF#2`@$;Of-=M62b%77l@El;eo_7sR=X|+s5*M7D+Jrpz#v<{?_S9&wS1~bIzPI z|Nm@HzHn=>u+Uiku~GV|8>w?;W^dqU4{)J;Uv9P^XYmI1J!p0hYgU?dGxuNoiGEjw z*)eRYG@D}lOFV$%tIb$q)756Ha0aVz0c*?(wnXDO2L3?S*fWf3!T@f3$DBg@dSdBe)ZD zr~_ZzNc{C?lktRWs2qNWM9=1twAo$cZ1z`tzoGg695$oocjBu!fJ)&Sf7hdC1kc_?hAf3|;Sp3S zen73ei`wUR)Pes&rLdyl_~L0)qb3fb7QT!Mcfis-K}sJC#7|+c{AB$D`aTFKtx)T#`ccmD*F)!=6@x1RwGdY*^-aQy#>TUPe~S2T z8KsljME&41>&0u8TqsZcX2>=%B+H18Ix%u2L_3(Q9FH%`$%7%)4bv8v5@ z)y8Yg=Hp`w;xk-mmbXc6w$bq(`Npd0)eBKnu-q6Qp7y+4Y~X*ZC$>^_EY z95v1hT#9ep^N(0Z`#T1h-)6YU(owa@tOEC;KHQIN+KwSVJH=%g_PhS8sENn05$_^< zunA1zBx>Q)IE;T>`!cK30!O%nncwbka|9n@E&90V!w4#54bC_!D{a_;3DkRMke~H& z(Sio?ETO-GmuUY8oBh@E2xHQpWBWP0xS04?a`QP#-g)6`z1ct7FPE5I$L9^Rq3&VZ z8h8&XGKWw*IElNlAC-y;_xv@s(SC>eZW?=V2DRW_95ijLw~6@cg#&abcSn&ZSq{mH z4Ipc>A@}?qDt8ZD`xWk`{T7wFx@JO(^{5G2k-b?GncK3i|1@gezGmXTlAH5%=)>E% z10SMRTEbEM>Dm`Kkwne%sKa@a%V8{_QV>`^`&}byf;ehp?Wojca5HwH#y^+mMjsBK zLO6^>-WxoPT3op(GCIj*#T%SW+Xku@w2rF7r}V6+CaDSP8mbncbSRSgo6jxz)pJ@3 zS-GrrH=9t0O((qF^(j(XblkN$SKfJ8fhnp|w~CsfmW%#LDvAPo^wL5qGhW^l5*5y! ySM>jmQ57O0@8zx)RTQO-g`z(iENl(cRs=JNR7Wh?*_GZ>I2fL)DGauheE$K+6KP%m diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index e97af56b61..dd5efe7a17 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 06:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -182,16 +182,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Advertencia" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "Configuraciones actualizadas, reinicie su instalación para que los cambios tengas efecto." + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Acciones" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Alternar desplegable" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.mo index ddc249789cb859e3afe2fb2c199c3b966576fa04..3defe0aeafe01b92c1c6ed885c35602ee3689b7e 100644 GIT binary patch delta 23 ecmZn@Z4=#)&B|r2YhbEiU}|M-yt$NBkQD$)#08Q7 delta 23 ecmZn@Z4=#)&B|q_YiO!qU~Xk%vAL90kQD$)`30H) diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index 2e43200f63..f483e256c3 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -182,16 +182,22 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "عملیات" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "تغییر وضعیت dropdown" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo index daa14ece3e93d2c6bcbcc74014ca65d70ef2f887..3aa0d73f974dbadcfb844759251c8630ea302c68 100644 GIT binary patch delta 1257 zcmX}rTS!zv9LMp$u9>@=c}X*KZI5Z0+2&=vKsV_{5h{cvgXp?h7}0_l1U^_4rRako zLQ+ul5L*vXY)JSLCQ%S2fznG<1flj4bb$!LzQ6V8uyZ~$vvbbO|3BxtC@IE@)A%zofEtYPkSs@V*EUz%Aj{=~P8cYDo_=~;d= zrdn*3*-CtbJ{-k#vmP6#v6F#Gc$o%Xgh-Z>;#trjJo6fsD%e{J&qtT z*i)>+an#0t;dT7y_OGxzZLpV17VFzh8i(*9W?~W--I$F^S-xu#>Qu_G7DK3c5#(p* zxM)M&c#70t!{hX4vKEi7DVv2EFC_f47|J34f0!_wYxV~F*P4CckG4E^j1~Ed4;&>t zZR9yB<*!f+zQ=?36?wMRksf8P8H=$Mb>Agy!po=)zeZ(XvVi<+$DbL{+0CLJ@Z0S# zpw7zAo2mbUsD3%JM{B?uY(r&c014IxQSZn-w;w}du`$$hrcmpC36TFFjX8Isx6rJb zegP`d19%4yqjvrmnQ9A2(k#Fm+KSbvg>Rtdji4gGi@aVILv3&r_u?38-n>IYsr0Z5 z4dfu1PrUhxtazx;6YSZpf2ieDy<*DIHfkj`MBPkPTxC?wF!3?Na@n-pTHMxBx72MY zWW7ofZC#+N3NUfqOt`ce;b*bokQBkZ!lE{$`Oy5oVv0xy&Q163e;-~a#s delta 1208 zcmX|=OGs2<6vzLKuhh~}vzJraLwinYj#F6%ZYJCXWkHZpK?4Pn1VR+eq6il)f(YzE zFX*vJh@o7z$q1VXT8I@9A%qw~v?Vj#TeW@aJ)#0F?Y0Bn!^8EA`QaH`BIkgQ>9Wb+)*wuRYMCT zrsxhVgOA`sDWzu^I~jNhS)+f!gd)DK#1BKxP&3>Gs7iu{5&BuRBa9wm6y!Jc5eANs%nxE!V+G3zF5g^!^F z{s=F_uYsQ=DhJlbs|sF#2RL6>F~V>Pdf^}FQq2S`;iJ1z3EN=}^t^7!qrJQw&{24d zlAnY}@UxuamPM;s%Xk54Ct=MZ={Mu&Y6<==M*m`If)AZbh#1x`%Wrs_^c=`T=u$t0 zK5zu?gKr>vD?)i(>SnkGc0jM|g?r!$=zxbIIq5lcz@v54-#vTBfH(LA?SF&r(XYTS z;%3^ff-%?#U6Di3rR;^i6Q=`z0Fr|Sq4#?Lec&*xha=GICL+{-E5ks)yR$V|Kz$_xKufDgIs*q!9s7fE@$Oyzr}W0 k1CoAGm?%vbS7btE@n~y%L(8^~*!J}2@bU8W!N{x7f8LdB`v3p{ diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index 27b7bc130b..c98e552eea 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -6,14 +6,15 @@ # Christophe CHAUVET , 2017 # Frédéric Escudero , 2017 # Frédéric Sheedy , 2019 +# Frédéric Sheedy , 2019 # Thierry Schott , 2016 # Yves Dubois , 2018 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -28,7 +29,7 @@ msgstr "Apparence" #: dependencies.py:10 msgid "Lato font" -msgstr "" +msgstr "Police d'écriture Lato" #: dependencies.py:14 msgid "Bootstrap" @@ -186,16 +187,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Avertissement" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Actions" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Activer la liste déroulante" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.mo index 0ea5bdb41485709ff914a5d2b7d6348ec53f831d..b00b748084f0d36c2d83ad2db9e3a2544f7ef301 100644 GIT binary patch delta 23 fcmaFM_LgnK5k@X^T?11E15+zwd_ delta 23 fcmaFM_LgnK5k@XET|-j^19K}Ai_Pa4=Q9ETVWkIt diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index a75c46e5bd..95e7184aa9 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -182,16 +182,22 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Műveletek" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.mo index 76470acc24b0f9663ce1937ef78fd30a6c2f8336..ea3b46b8f6ff32d97883cf3f4b93e51bfad0b3cf 100644 GIT binary patch delta 23 ecmX@Wa)4!nAS0K#u7Rn7fvJ_T@n&g8RYm|w3I#X- delta 23 ecmX@Wa)4!nAS0KVuA!-dfw`55#b#+nRYm|wKLtPl diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index fbd6543a5d..54f3419b41 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -181,16 +181,22 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Aksi" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo index 5a03aa23a25bfd8005ef98699d65b94b76b66051..788787c94a07dd981e7bda325fe1cbfaaf2dff54 100644 GIT binary patch delta 23 ecmext`Pp*AB>^sTT?11E15+zw^roT|-j^19K}Ai_Lcg#CZU0W(TbR diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index ebb8335248..cbabc26b88 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -184,16 +184,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Attenzione" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Azioni " -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Apri dropdown" diff --git a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo index 46be54c44630f07afc5fa8fc7f8373b788698cea..072547b84485745b24e6e1c1607f0ac9960ad7e3 100644 GIT binary patch delta 507 zcmXZYze_?<6u|LgLO)FVNtvnOP!Oc?KqOI{qDTsYC}@3ALlC`q>L3IX22nvngdj9X zR9hfOn|n)cK|}NxG(|N84Sf&3w|wro=iYnHdCl}qy8hxSow!7f2ShR=;vEucVHV%e zKP)mu{tI7;Ln9(p{Kg0NFGfX@m>CmsvtI~^^k5OYu#BYS92fD{$$y}S_$MGGnP4H~ zBAqaa^BBc$JV1S@=)_0ZOMHg?SiwHLM?XF~`z@qrc}FeuiA(s0+UP>CeJ>jgUdQd74=*V^?Om%88mxK$0WAVSasU7T delta 533 zcmXZYJxhX76u|Lg(wnBezo~&kL{N%3s8m!Ch(*z2HO7NT2wI@hmpP*5N-^Kn8_E0McT25tyo63q# z77h|EIFE}M#x^`cy{OoTPtZzyft^@EJ3iwezBTf{$n5fm+Q{k@iQoY0pj)VQF=wuR zVVVR#LH5yw1=N>ZqYiS1JXW4i8-L&={xtS`DJl`WP#;o7J$H{<_k!#AjoK$TQa=|7 zvCtQ;p$#`tCyb*uNT6O=LM<$#p1Z9cnwM\n" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -182,16 +182,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Brīdinājums" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Darbības" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Toggle Dropdown" diff --git a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.mo index 4ac909689ddeb403d692c55c5c6fb75bfccc29e2..b62920b39f84972857ec455c8a71ee28dc2e9bac 100644 GIT binary patch delta 23 ecmaDU`cia5C>xi#u7Rn7fvJ_T@#c88E*1b;=?10% delta 23 ecmaDU`cia5C>xiVuA!-dfw`55#pZanE*1b<9tN%e 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 96c1442715..bbd8dd24ec 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -184,16 +184,22 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Waarschuwing" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Acties" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Toggle Dropdown" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.mo index 11493a223f69c754cc46fc9f126c20e893be1c42..14e493695f57542152ddee09e082b4f354f0a64c 100644 GIT binary patch delta 23 ecmdlWxI)kW}sv3PL(z4wxPcg<~nZ1yG#@jH#klB?uBxh(4#Kg0zZc!@e* zqlGt^LxnT=G(CU8IQt={aWvh(;U@bJlzS2sac@scvY6#y2}_v6Io!u4FV|5981a&v zk1>VsxPlXuhTkX+e^44EIg~%Lh*Dp`GTJEjoJ8k6P3y3rM(g4>USSf4NPjIu%7qeA zD9z=$gnWs4GC|50lraB@hLI)nM+3@Q`p7U*R2v=7@>^}K=Cm5_sruB{RoBSJ51eyX zeHj(w&<)z2-%@pRM?IQ#tGrPxtrbfZ+aAnY*;u+7_QO~Azg|xlR6lL&duL8??5M3w YO_v+O2lbrYP5DQG*K|7JAn<(c7n0&a=>Px# literal 4370 zcmb`JU5q6~6@Uv}LF%Zj2^A7=Ip2OpMV75~9flBGE{U1|Lkg51RO9GzK4h@xd20#-QV^3bx!~BhJD{s9E-G%(7u0_Qb*yzw{zh*v`?wezJY8GI*v8D0l}4X=m4 zhcf=p@Midr>G$iH{QW%N1ZDi4a24JS-v&PqW!x7bs;jTT_rPz!Ti`R(_b)-2_ZRTP z@K^9%@J~=|^LNOUYCoO64CkOc{|JhHKZWmuzl4v&SKxc$0!m506^ID+(3BfcO#CFg z8$J!C-#4L*`wm2edLH)h$&2u_Jl}#*ehV+aXW&Vc6#M-Riu_lhtoIU>bzXxrM4uZW zB2)?G`w)u!FTqv#btv=y2HpT)nSTEZ6hHhEiu|h(%B{Kf8J~(}S0M64|H1VzY0kf+8 zG&v;B)r@|fe5W)S>Yo24_!rNYid?V|3OXmjl=ePH&AuX|+emA+?;NHn?| ztktGM?7&v7=-(I}3KQe<{w~8!t8Y!9hdrNK zxv6?K?AI}k3cI{N1yjYY59N{$KAB`^7Z-Bdn>)P!{`=L)-3!(vZM#g@s9W-Oubs4sx=Y78*j8{^U!GmU5^ep2 z)s@A(rYLmkTiv(CKo70XOr?7^-S%2VRyw{;Y9&j~S5d7D1{lFqnN=%TO-vP;;sJHU zqR-@o$m!NaG17Ikdfkk8K7MTdbkn<;S!V6}qVPlfzod?MpCTq4OzwszWqoy2CMnd> zzRk`}N2Z|<=QKvE2p808Y?#7Go1Sr%=EO~Qs7qhkD#f-sTKH(yF%$b8Z$hqCkvZ!4 z^J*2tuMBOZqk3=>hPV>%+FY&W40c^-gIcR%-R-)}@kS49C|!(=86JMLw#>VV$JO+H zU9{E@Sw|G969!LrnMAFd^RBE*UDYN2*S@Q>J_gK^4H4_($)Up!9jkK}2Zb4lW8{m~ zTaL9fo1(2A@tiu?SQjaBTUoVXdN|T2=BcY(ow9{(b`1|qBmxST*(%y4b=quMb(#)Y z(sywaw&;=hvaBnYnZ}eh1Ru6PO&@#+ql238Y@`MIx!Oi7qz5u{=IbJF=12ENg|<3f zcS@JkX5R*TJGEw4$LO$GZ*LdY-4wF3`RIJ@v8LO>2pRtM0!rdE?pk0 z9y_(xJ{#5JxSl9dPnb{<|LQ3l)l+Pw+*h|J-N#qjR+5c&hg`G3)F+dXzAzC2+Ujf* zhEwPh=E6vy@FrK{Di?_5jY(>4t>vxhtV_E#Tt8!s58rtZLYQsUGCSUYa3d}tIX$;gY=<} zOFQ~5=|P&=DC%H}mhADkq^m*m7?X5p8EtW-0^SEg{e$?3MM7*fL~YRTBi^1N=8LE!(ai6%%2p+dkikU=qJ*}4*?aivBRAEcnN))&8OQj87m*Z!tm(4LhZT zmD(Un#8V`U9A7pbPU9C+T{Hv8SjkW-=|v$cr`1xrsz+?quS>NtezxZ-qbm_ak&y5- zxl!bo@kQB=QJjuW|7E2n)ztEzpiX8~Vq44RkW$*_zr(RQsiC4Y0liZ? zr(u9D{Orl5v`q!&XTmtq52J^73^nEAMw#)or6(Sy(T3`~M27IDdsmAOu|5 q!~$lBv3A?Vw29MQQ98*l{Me8jrLr~_eB;tefXHvd_(lHV)qerQ1iJbF diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index 386cefc106..e73192ebf9 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -19,59 +19,59 @@ msgstr "" #: apps.py:12 settings.py:9 msgid "Appearance" -msgstr "aparência" +msgstr "" #: dependencies.py:10 msgid "Lato font" -msgstr "Fonte Lato" +msgstr "" #: dependencies.py:14 msgid "Bootstrap" -msgstr "Bootstrap" +msgstr "" #: dependencies.py:18 msgid "Bootswatch" -msgstr "Bootswatch" +msgstr "" #: dependencies.py:32 msgid "Fancybox" -msgstr "Fancybox" +msgstr "" #: dependencies.py:36 msgid "FontAwesome" -msgstr "FontAwesome" +msgstr "" #: dependencies.py:40 msgid "jQuery" -msgstr "jQuery" +msgstr "" #: dependencies.py:43 msgid "JQuery Form" -msgstr "JQuery Form" +msgstr "" #: dependencies.py:47 msgid "jQuery Lazy Load" -msgstr "jQuery Lazy Load" +msgstr "" #: dependencies.py:51 msgid "JQuery Match Height" -msgstr "JQuery Match Height" +msgstr "" #: dependencies.py:55 msgid "Select 2" -msgstr "Select 2" +msgstr "" #: dependencies.py:59 msgid "Toastr" -msgstr "Toastr" +msgstr "" #: dependencies.py:62 msgid "URI.js" -msgstr "URI.js" +msgstr "" #: settings.py:14 msgid "Maximum number of characters that will be displayed as the view title." -msgstr "Número máximo de characteres que serão mostrados como título de vista." +msgstr "" #: templates/403.html:5 templates/403.html:9 msgid "Insufficient permissions" @@ -91,19 +91,17 @@ msgstr "Desculpe, mas a página solicitada não foi encontrada." #: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52 msgid "Server error" -msgstr "Erro servidor" +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 "" -"Ocorreu um erro. Foi reportado a administração do sit por email e vai ser " -"corrigido brevemente. Obrigado pela sua Paciência" #: templates/appearance/about.html:10 msgid "About" -msgstr "Sobre" +msgstr "" #: templates/appearance/about.html:77 #, python-format @@ -112,9 +110,6 @@ msgid "" " %(setting_project_title)s is based on %(project_title)s\n" " " msgstr "" -"\n" -" %(setting_project_title)s e baseado no %(project_title)s\n" -" " #: templates/appearance/about.html:82 msgid "Version" @@ -127,7 +122,7 @@ msgstr "" #: templates/appearance/about.html:97 msgid "Released under the license:" -msgstr "lançado sobre a licença" +msgstr "" #: templates/appearance/about.html:103 #, python-format @@ -136,9 +131,6 @@ msgid "" " %(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 é gratuito e software de fonte aberta oferecido por por Roberto Rosario e contribuidores.\n" -" " #: templates/appearance/about.html:109 #, python-format @@ -147,9 +139,6 @@ msgid "" " 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" -" Foi um grande esforço para fazer %(project_title)s como característica-rico como é. Necessitamos toda ajuda que conseguirmos!\n" -" " #: templates/appearance/about.html:115 #, python-format @@ -192,23 +181,29 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" -msgstr "Aviso" +msgstr "" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Ações" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" -msgstr "Alternar o menu suspenso" +msgstr "" #: templates/appearance/generic_confirm.html:14 msgid "Are you sure?" -msgstr "Tem a certeza?" +msgstr "" #: templates/appearance/generic_confirm.html:34 msgid "Yes" @@ -249,8 +244,6 @@ msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" msgstr "" -"Total de (%(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 @@ -258,7 +251,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:22 #, python-format msgid "Total: %(total)s" -msgstr "Total: %(total)s" +msgstr "" #: templates/appearance/generic_list_subtemplate.html:55 msgid "Identifier" @@ -266,19 +259,19 @@ msgstr "Identificador" #: templates/appearance/home.html:10 msgid "Dashboard" -msgstr "Painel de controle" +msgstr "" #: templates/appearance/home.html:26 msgid "Getting started" -msgstr "Iniciar" +msgstr "" #: templates/appearance/home.html:29 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Antes de poder usar todas as funcionalidades Mayan EDMS necessita de fazer o seguinte:" +msgstr "" #: templates/appearance/main_menu.html:10 msgid "Toggle navigation" -msgstr "Alternar de navegação" +msgstr "" #: templates/appearance/no_results.html:18 msgid "No results" @@ -286,15 +279,15 @@ msgstr "Sem resultados" #: templates/appearance/root.html:57 msgid "Close" -msgstr "Fechar" +msgstr "" #: templates/appearance/root.html:65 msgid "Server communication error" -msgstr "Erro de comunicação com o servidor" +msgstr "" #: templates/appearance/root.html:67 msgid "Check you network connection and try again in a few moments." -msgstr "Verifique sua ligação de rede e tente novamente em alguns instantes." +msgstr "" #: templatetags/appearance_tags.py:17 msgid "None" diff --git a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.mo index fc03c2c52f3b10912d80e46f041c5d8dd1468686..da8d446765965d0bbe389711d953b2569c06d306 100644 GIT binary patch delta 23 ecmaE0{=j@gAwQS7u7Rn7fvJ_T@#bp&R2~3e%LfGj delta 23 ecmaE0{=j@gAwQRyuA!-dfw`55#pY`MR2~3f00#{K 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 8680fe8824..dacb2e39b3 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -184,16 +184,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Advertência" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Ações" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Mostrar/esconder menu" diff --git a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.mo index 3a1edff0b01eb61ec0f3cc6317e78e5597dbaca9..0b09591d4b55d0e2fcd2400b407268759f972fe6 100644 GIT binary patch delta 23 ecmaEC^Vnv?B>^sTT?11E15+zw^roT|-j^19K}Ai_Lcg+IazM1qcKH 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 75c0d6f315..95ac835b31 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -183,16 +183,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Alertă" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Acţiuni" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Comutare mod listă" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo index 00836c2114f45c2a9fd77e218215171989309682..84c4a96dfeceba9acb01481807609ad6aa2c0d07 100644 GIT binary patch delta 23 ecmbO)KVN=B06Uktu7Rn7fvJ_T@#ZLYR}KJ8^#$Dk delta 23 ecmbO)KVN=B06UkNuA!-dfw`55#pWn>R}KJ9Dh1^L diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index 5160bb15a6..bffc067793 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+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" @@ -183,16 +183,22 @@ msgid "" " " msgstr "" -#: templates/appearance/base.html:32 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "Предупреждение" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "Действия" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "Переключение выпадающего списка" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.mo index 9eafd3e98624788cafa497013786a04651df1fcc..cc36566b10ec53a5aeea60c294d7aaafe16947b2 100644 GIT binary patch delta 23 fcmbOzI8kuJRTeIDT?11E15+zwgkpI6s%Uu7Rn7fvJ_T@#aMSi97&d{|6xe delta 23 ecmexl{>gkpI6s$}uA!-dfw`55#pXo*i97&eGzTdF diff --git a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po index 5e29dc5a22..9e4b94073b 100644 --- a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2019-07-05 01:27-0400\n" +"PO-Revision-Date: 2019-07-05 05:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -182,16 +182,22 @@ msgid "" " " 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 +#: templates/appearance/base.html:32 templates/appearance/base.html:42 msgid "Warning" msgstr "警告" -#: templates/appearance/base.html:51 +#: templates/appearance/base.html:42 +msgid "" +"Settings updated, restart your installation for changes to take proper " +"effect." +msgstr "" + +#: templates/appearance/base.html:59 #: templates/appearance/generic_list_items_subtemplate.html:104 msgid "Actions" msgstr "操作" -#: templates/appearance/base.html:53 +#: templates/appearance/base.html:61 #: templates/appearance/generic_list_items_subtemplate.html:106 msgid "Toggle Dropdown" msgstr "切换下拉列表" diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index d9b1a3992f..27bdabeb75 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index ac6f1f7d84..c5df164c9b 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 df1b019836..0e452690ce 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po index 226f242e3d..11069fa3c8 100644 --- a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/cs/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 c44ead59b9..78cd243589 100644 --- a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da_DK/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 90d40b0ab8..d456706b6c 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po index fe59f438df..2446ce17ff 100644 --- a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/el/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index 271b123659..9426e81198 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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 31755fee92..08223dd65b 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 6d28415e56..b1669d8909 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.mo index 655efd479d622e7a8c7af062b18767b927c33cf2..eac9c422d9ce8b3fa7b86acc9a9865246f148a52 100644 GIT binary patch delta 1025 zcmX}pO-NKx6bJC@XqILlew3fdVJIZbNi&r!!WI>zQfL+kMc4OEGZ){7zWbh9Ee2^9 z1c9_ITM9+SY%PLWMVo5XrnW`9Xjc*a&&xvL$|yYio#Y91<#ZhX4% zX{b`_F#HW=tf!RP4WGb0a1+Y!Uc+Aa2@b=$YNam1F(~^F;5PUS%6L3x%(@CJMdrIp?IcNWgTCW*uS@Ew$k zzEu1U<(yw|9iHD+PUtJ_$NCREB+rZ|EDgy{DwlySDeRZtym_rL)qFylEdyDqw$iNp zC09!t^6H)C5E@&)N|t-quBBSrTQHOE$dIl|qEg&}!u`~ps{Ev0F@EAxY8!R{v5(Sr^(5&Gd~xu(6aG7irCjCATP{j*(DQX=!*6dCS%LzVb8J? z2CmJhOWNAyFmnG-aFz}V-8D|?>_}h#F&Y>e9UAEE$EcssHtxF|>A-qA4x>>z7Zo?$ z;znc~n$9u1x9F4=Z;oY=ftPVY|8(I+ZD)0Uf+=Qy!IEDoY=Hw;2QhiPn6O7lKuK&o zV|C0)gbHlTktQS=uoD+IP)uYOlOE%t8&2rtB!ro^OvUw51g%I+(&<$qk!BBn{KB1@o{Kdr=Em z#USorDL&vhzGDUk$(D)Tn2JNF-yOqRoWvR2Mh|{s1Np_tQ`5}01vSwzZx`bQHsT$Q z>I>L~Jyf}bTiAqOsD;<0i%ei6>P&Z$L(Vzn;U#K;_er0ykNomVryr|Xk4jv|DcnO{ zx&+Q)Ez```>sW+m$g6Ub^bz|RKjSHS$fkwdqKPl4yUI>kk;}PIXRN_$NS4(j$zhe@ zZr4T9AiK35)_{|KQs+}f(~Zz5p%qv?{*uE*quAqSq^qK##cH9}KNdeR)@<=j$BJPF ze9eBZ8SH3nt2YVPKqwmXjYL9A(S=Yf9O>{5ho@&Fu`otMk@;}EGqubf|8@E8f6j7B ACjbBd diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index 3ef61bc378..47b467a4c0 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -12,9 +12,9 @@ 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" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\n" +"PO-Revision-Date: 2019-07-02 15:51+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" @@ -70,7 +70,7 @@ msgstr "Contrôle le mécanisme utilisé pour identifier l'utilisateur. Les opti msgid "" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged" " in. Value is time in seconds." -msgstr "" +msgstr "Le temps maximum pendant lequel un utilisateur restera connecté lorsqu'il a coché la case à cocher \"Se souvenir de moi\". La valeur est le temps en secondes." #: templates/authentication/login.html:11 msgid "Login" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 07f516fbac..e92667aca0 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index dfa093cfd2..b1db142225 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index c223af42cf..a05911479b 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po index e809cc9350..9dce8e3e92 100644 --- a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/lv/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 59421ff75a..ebfa3b0c8f 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index c2f80a7c11..a715f016a8 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo index 3fbd810f978bcab6cb1f55ecbf4b10ae14e9aa43..2180567f90fc42bc020a295d11a1c5f56d757cbb 100644 GIT binary patch delta 408 zcmXZXy-LGS6u|M*FKcUxR6$TW#G&ZmqJs~hlSM>GH(jnaq!%)ob$WqerLM!)|^Zis`o;3hz@Z{w25!RHn$`)kE>|sH?f8X zxQ+dyzQGylJDkPGqJF{w^$RXzt1PmCYZ#PdB7Hh72Hq-dF>_=7uGujUWxA)g$R z>;n|qivqmH5!wrWv5RdMacA~p4YbX!w~yp#;abkw$`7TVwI;bv%;jaCcZVtre0QXb zxrpLHdRsZ_>_>qPg&d6&IV@(x8=su(7-U9l(bY3NeM!QlNZQ6IW4fHT!Ibek3o7ikrAn)Vj88ClXxHcz53Oklmff z&aCa^0tg8Z5>h3ExMFdrkf>Ct>ZL*m>79TRH!f}O+z{6u`up$hTYoecBvx^LZ)bP@ z-~a#Y2aliot>Su$zi;vP$fuNAgdahh3~@`;Q3E0wE@2i z<@p=%Gw>}a&)Yy8AkXr{AG9l5BM1OAHv7se;_WXb2$GqcphSs`Zc@-f79`O zDEpqlsdac2UWUJb_u+exf9iRh6+2fUrmGEzN$L)iIQ;2Z%mlcv5d<3Qc;WvqN2nr($mG0%lUOvrTf z+8kTYg6JIRjfr@IjLHt1rP37klD36$xw=tT74A0c$7YDwu~lo$D{EDSla&oNioLT? z^sejqiwmM@G0YQ%1uL&F2K9=s#<+6N*T=zlNxkOBu5ABD5;|D$byVx-&=qx|qbsa7 ztvPA#(z~+|&2QPl7P~~Yu=6_Iv+3Pkf2a>!o?{z^mOA(2FiYxo0+J>knwj!wof_#ZPP23mTSoWL$hdtqVQxn27w>tI3B)8FC z&^N^0Ca<|G@9JGk4MoUuZHBcevp#17{ko49 z9VVWxyOFawkqbISP=eIpqT9Cvbt39&+Y+5w__p1+B-CoV-Yr}NX=+0l)p`F)TQYr_ zNQVq~kNCFf6~jU_qtTh->nrVaGhC9_8mmoKkWnYzj!bI1E}=df>rt|EqGiM>SDLhS z=X)osQSX^Rm@U=OTc6+Sa+?wH%Kwl!CbzQW4$Vsw4fVRYXG*bcF0WXtY5c|EylB0YC`dF5)d{6ezwyk35B_}rCem$~L%Ga)8Bl_^7R zqGy0?d8(UyZ~0&<=Xs$V*R)8oV@)yCn<%Ttl&IAUdofOiOG^g_2ZJaQ+{hjdsHCN; z-CHdcVrOErA}r;doTW)zTAW+IwZ3-j&dOkUPDTo)lkD7^U~II9acPp%PuC<86HjUSBBn zh3k4{@!Fh>T=X+>r*BUG;MHnQVofEry=P9}QCpSKUf0p(?!L(+Y!}0sce0buPd^L# z)I-ZwX051eRO`&NT6KvbdiqBh22{6Wz0u5kkoGF0=_j$6!yInLFp2|4ebP#q%dLx< zAL!Mf{RD;Y+Mol9h>vILW%h($%;z$*m7TunOA7K0g=et&Gfq|LYn(pcLzNBtpnIm_y5X3jNIXz;0 z8F7LLR3`aY2Z1xAdZ{6iEAR?Km z65=-BWXY7+QcaH}Jv1$8;N;W$CgB~ncPKS^7bob-{DKIm4OYG@OMqiJ4G-^xsLc1QqAP762gJTbcj zt}DioxzE_8ek28z6mMS=Dc=)PPi^8U6j6LajV<>b(NxSIJu>^gx}-BVb{r$5%O>)P zpl3m9$}|#My|K#|!M<(MN-~Y4ni6O&#~Ne=J}26Aid9x4Y5HDB>zt{~9S^%ZeDAZZ zZg%C`NK$K!Kg}V;8CvmXTh3iq%oOh0B4NhctncK0Mzj;;bxQSQzdxukFuyr@Fq|^> z98=oY;*@-sFnDEp@D1T6hNG$}3;B{cKBms@??(!PICiBV*ZTRQ88s9$ox{P!v{^mw UGR`~K)hHU7`f_~HZGNCW2G}ziZ2$lO diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index d7b3f429a2..8b4bd18ab9 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,14 +1,14 @@ # 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:25 settings.py:9 msgid "Authentication" -msgstr "Autenticação" +msgstr "" #: forms.py:17 msgid "Email" @@ -32,15 +32,13 @@ msgstr "Senha" #: forms.py:22 forms.py:73 msgid "Remember me" -msgstr "Recordar-me" +msgstr "" #: forms.py:25 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -"Por favor, digite um e-mail e senha corretos. Observe que o campo de senha faz " -"distinção entre maiúsculas e minúsculas" #: forms.py:27 msgid "This account is inactive." @@ -56,23 +54,19 @@ msgstr "Alterar senha" #: links.py:32 links.py:39 msgid "Set password" -msgstr "Definir senha" +msgstr "" #: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -"Controla o mecanismo usado para o utilizador autenticado. As opções são: " -"nome de utilizador, endereço de correio eletrónico" #: settings.py:20 msgid "" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged" " in. Value is time in seconds." msgstr "" -"O tempo máximo que um usuário clicar na caixa de seleção \"Recordar-me \" " -"permanecerá conectado. O valor é o tempo em segundos." #: templates/authentication/login.html:11 msgid "Login" @@ -81,11 +75,11 @@ msgstr "Iniciar a sessão" #: templates/authentication/login.html:26 #: templates/authentication/login.html:34 msgid "Sign in" -msgstr "Entrar" +msgstr "" #: templates/authentication/login.html:39 msgid "Forgot your password?" -msgstr "Esqueceu sua senha?" +msgstr "" #: templates/authentication/password_reset_complete.html:8 #: templates/authentication/password_reset_confirm.html:8 @@ -94,15 +88,15 @@ msgstr "Esqueceu sua senha?" #: templates/authentication/password_reset_form.html:8 #: templates/authentication/password_reset_form.html:20 msgid "Password reset" -msgstr "Reiniciar a senha" +msgstr "" #: templates/authentication/password_reset_complete.html:15 msgid "Password reset complete! Click the link below to login." -msgstr "Reinicio de senha concluída! Clique no ligação abaixo para fazer o entrar." +msgstr "" #: templates/authentication/password_reset_complete.html:17 msgid "Login page" -msgstr "Página de entrada" +msgstr "" #: templates/authentication/password_reset_confirm.html:29 #: templates/authentication/password_reset_form.html:29 views.py:154 @@ -111,7 +105,7 @@ msgstr "Submeter" #: templates/authentication/password_reset_done.html:15 msgid "Password reset email sent!" -msgstr "Correio electronico para reinicio de senha enviado" +msgstr "" #: views.py:74 msgid "Your password has been successfully changed." @@ -123,42 +117,39 @@ msgstr "Alteração da senha do utilizador atual" #: views.py:89 msgid "Changing the password is not allowed for this account." -msgstr "A alteração da senha não é permitida para esta conta." +msgstr "" #: views.py:145 #, python-format msgid "Password change request performed on %(count)d user" -msgstr "Solicitação de alteração de senha executada em %(count)d utilizadores" +msgstr "" #: views.py:147 #, python-format msgid "Password change request performed on %(count)d users" -msgstr "Solicitação de alteração de senha executada em %(count)d utilizadores" +msgstr "" #: views.py:156 msgid "Change user password" msgid_plural "Change users passwords" -msgstr[0] "Alterar senha do utilizador" -msgstr[1] "Alterar senhas do utilizadores" +msgstr[0] "" +msgstr[1] "" #: views.py:166 #, python-format msgid "Change password for user: %s" -msgstr "Alterar senha para o utilizador: %s" +msgstr "" #: views.py:186 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 msgid "Successful password reset for user: %s." -msgstr "Redefinição de senha bem-sucedida para o utilizar: %s" +msgstr "" #: views.py:202 #, 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 2964f38807..4ea66a7bf3 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 54b41c9dcf..7dd4a6e482 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index 187cfcd29e..9c27bd2e29 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 c0ebe5bc42..6a12efd9ad 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 61ad8a094c..abfdb56d01 100644 --- a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/tr_TR/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 bd910b7728..bbfe289a10 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po index ca724e26b0..1cb0886d94 100644 --- a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po index 3faf2e67a8..774a5bbfe6 100644 --- a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ar/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po index 3d64464ee7..1a28e50743 100644 --- a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bg/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 6ab68449d5..d84bae0b31 100644 --- a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po index ac9a472bd8..1b3d6b7d88 100644 --- a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po index 1240d4101c..472d517843 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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 fdcabf4b72..211d661bd5 100644 --- a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da_DK/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 d20f562f0e..91be443ddf 100644 --- a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po index 2641f822f5..18593a39a4 100644 --- a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/el/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po index 694e2a5854..69a13846be 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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 e13a6a35f1..88ec7d97a5 100644 --- a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po index 86eacd59e0..4e105fd2d9 100644 --- a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.mo index 95d7fe340e2a1e7c4633f0c4bb32566494cc1974..a045061650dd0eca0bf93c935f2c4bf25f04416c 100644 GIT binary patch delta 442 zcmYk&Jx{_w7{KwTP+qLO$U*GlAOo^A(Jw%ZlYs>j6DJ*-;LrgGr3}OYCtpTmm>8*> z85G8Vtj7gXDEFQ!IX7CXeK4Ar8 zJi|AvqLUEWK@ShGfm!Te9=lk_8$8B2jzuQ&#h^jqD*3Z;hHd5_c!A1h5t{^{r_cv;(ZfSLWq-M3a8DsN1zytj5%UOre8CoGwnXT| z+!Vc-pX!sb%mn=kJ(*kJOv2|VS, 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -26,7 +26,7 @@ msgstr "" #: apps.py:16 settings.py:9 msgid "Auto administrator" -msgstr "" +msgstr "Auto administrateur" #: auth/allauth.py:54 msgid "" diff --git a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po index c566d278a2..f9aa93cd1c 100644 --- a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/hu/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po index 8aae84cb30..f12ee2737f 100644 --- a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/id/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po index 1faad4d12c..54aad72f36 100644 --- a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po index 0aae951652..e8b457900a 100644 --- a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/lv/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 629ae8aefd..dd64af58c8 100644 --- a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po index 85ca3547b0..ba1eedd2c3 100644 --- a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.mo index dcbc5536a9fdb59c6ed7237b7a72aafdc38c8fe1..4016b63004589cc3bb1dc81a88e6b3f0d91c342d 100644 GIT binary patch delta 184 zcmew=c#W<8o)F7a1|VPsVi_QI0b+I_&H-W&=m6pXAnpWW0U*8w#2i5U8i>___zMtE zWd!O4;us)%6B7f2G?3D=Y%-JovuOhWw7VK= literal 2293 zcmbVN%WfP+6fH=?V|Xe;VgZY534)E?Gvi>88QTfAV}q4A9@%3f1js6P-|4BSyJ}KZ z?FSMI7VKD(9UBBvWF+_kb|e0Q6@nE%z=};c)jhTc85T)NRj2EDZ=JgL^lz6h-V-P< zqP~jy4eHC``!O^qhrlO+N5IR#FMuxrzXrB}$G|b*-@x*W$A!3pegu39*a5x){1kW{ z_$BZN_zQ3Wc>O}P{&V04`riY0fPVq+;mn&Cg}8+NA81|y{t27}UU))?Pk;?z1Nap% z%>N9$0{j&i_B{Z;2E2qzECJsHT3`tj66NGx7B(nHIXfp) zu8Wmis;ouxuxfOA?e%dE0~2n(F&q)A$~sS8I$XRS~{$hxdG5W|9)RX&6d(4_rwU4%Br6i?q)xOF&WmhMhA8wJ;f$}|yL8vmi zE=~`)Q{a8OA@X`)R%z!!b$HIRpg;uP;n?qbY|QmQLViZZSuYfd!id)wnbN) z)9*&jnP_^3nlr8DJCjY6+AZmP)WJhIST(jq>rxk-N!n7`zNC4jW$Z!7WN$aGW_GPf zT$p?h$)%m@@?jlhUYjZ{;6R-gNQbDyGKafxu1E_8Z{t1h`>xe!92^|f|FySajgwXx z+wj=r8q;sRJv-Cr`^H3VeQkZ^?DEs~W^LJMkHm;NM}6GN^Pz9_GpY1k$YSf*FKl;K zquH}{!OJe&Xhp{+!CSOwc2D_JM_bhQwRTomnMJF{=B`D$Uv}NX)j6s@7sfS>EztDD zTulTAq$oqD6qv#N!FLdxkXwUqLvn?8L(s@XChRDYBVu%Z?Q&3~uDV-r1db9We38sN z@_{6TNB1N&DRhb)*Oo|9jHYl`5AI8<*24~B2JgiPI0%vsf|S?cswjP09x48~hk!Bm8lYH(XGxXuMg_iIB7;UFn6wTezWC#Y!qCwt~l1J8J4A z?MDJ$++bu1lAJ1$0#V2S_#cc0O^T3Rnfgp7#==D4vtqeaus{Zj#UVqFu(wWIOkEtU z5U&|n)i5x1%K6|Js$@%>8FbRXer0llbdU}>IpW?U*caQUw;LtuKh$aodb6(r>t{g+ zPR3}*#DgEma?E>N;MW#(YH*w?gQz>tVX0mb=8&zWbRo?}b%c!N9yAb}D#^k-pGC?4 N3s#8By}_||;vX=D&`$sW diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po index 73fd3597cf..a6e9befb93 100644 --- a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po @@ -2,16 +2,16 @@ # 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" @@ -23,19 +23,17 @@ msgstr "" #: apps.py:16 settings.py:9 msgid "Auto administrator" -msgstr "Administração automática" +msgstr "" #: auth/allauth.py:54 msgid "" "Welcome Admin! You have been given superuser privileges. Use them with " "caution." msgstr "" -"Bem vindo Administrador! Você recebeu privilégios de super-utilizador. Use-os com " -"cautela" #: models.py:15 msgid "Account" -msgstr "Conta" +msgstr "" #: models.py:18 msgid "Password" @@ -47,23 +45,21 @@ msgstr "" #: models.py:27 msgid "Autoadmin properties" -msgstr "Propriadades da administração automática" +msgstr "" #: settings.py:14 msgid "Sets the email of the automatically created super user account." -msgstr "Define o email da conta de super-utilizador criada automaticamente" +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." msgstr "" -"A senha da conta de super-utilizador criada automaticamente. Se for igual a " -"nada, a senha é gerada aleatoriamente" #: settings.py:27 msgid "The username of the automatically created super user account." -msgstr "O nome de utilizador da conta de super-utilizador criada automaticamente" +msgstr "" #: templates/autoadmin/credentials.html:11 msgid "First time login" @@ -75,22 +71,20 @@ msgid "" "You have just finished installing %(project_title)s, " "congratulations!" msgstr "" -"Você acabou de instalar %(project_title)s, " -"parabéns" #: templates/autoadmin/credentials.html:17 msgid "Login using the following credentials:" -msgstr "Entrar usando as seguintes credenciais" +msgstr "" #: templates/autoadmin/credentials.html:18 #, python-format msgid "Username: %(account)s" -msgstr "Utilizador: %(account)s" +msgstr "" #: templates/autoadmin/credentials.html:19 #, python-format msgid "Email: %(email)s" -msgstr "Correio electronico: %(email)s" +msgstr "" #: templates/autoadmin/credentials.html:20 #, python-format 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 8d6b8928ff..3469b3b74e 100644 --- a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 729b663d8e..48402559bc 100644 --- a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po index f4ec6b3da5..4bf0b4bc74 100644 --- a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 16de55ea9f..3f0c1da634 100644 --- a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/sl_SI/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" "MIME-Version: 1.0\n" 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 2cbdad8d7c..d91fe0e414 100644 --- a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 cc4161eefd..761860c6e6 100644 --- a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/vi_VN/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po index e2dd154c6e..c3d8ce0aa8 100644 --- a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 83de52f848..debae60f67 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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 a43ef2a009..a1efc58f6b 100644 --- a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po index 24b99fa6c4..5e8b60b240 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 50549cfa15..ed0dbabfe6 100644 --- a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po index 9efab06517..ba8fc3bb60 100644 --- a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 fc6b99735f..35c07c9c77 100644 --- a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/da_DK/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 cd6ea3e0f6..d329262f4e 100644 --- a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po index e0c06e76d0..a5387204e9 100644 --- a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/el/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po index 9a7a352dcd..1c2e024431 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -319,13 +319,13 @@ msgstr "Document: %(document)s is not in cabinet: %(cabinet)s." msgid "Document: %(document)s removed from cabinet: %(cabinet)s." msgstr "Document: %(document)s removed from cabinet: %(cabinet)s." -#: wizard_steps.py:18 +#: wizard_steps.py:17 #, fuzzy #| msgid "Delete cabinets" msgid "Select cabinets" msgstr "Delete cabinets" -#: wizard_steps.py:32 +#: wizard_steps.py:31 #, fuzzy #| msgid "Cabinets to which the selected documents will be added." msgid "Cabinets to which the document will be added." diff --git a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po index 08b15d7d14..f208f05f8e 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/es/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po index 3656aca8b6..9513c43843 100644 --- a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po index 45d21014a7..ab21d18a89 100644 --- a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po index 683ed541c2..9d75d69075 100644 --- a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po index 93e1432baa..3dd8d42b5f 100644 --- a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po index 04f68c7a0b..967ff26b28 100644 --- a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po index f4761fa5a2..2755ab6d0c 100644 --- a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/lv/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 43e0c02d88..f650fc5517 100644 --- a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po index cbe372c0e5..26d610495b 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.mo index 452b49b992fd844a4478f836609ba7b04eedb2aa..4a402f058340e6afbbf34fc5328cbe98df153a03 100644 GIT binary patch delta 325 zcmYL@tqKBB5QS&`|4U|r58xY^gxw}0X3M%e;FY^xSXZlWAeIG##cCCs#iqe#6r)8D zY(~$h;K0Y3J9p;HJZi`E^jc2Egvfyk=z=0x0*M1if+NU)6Uc%y$b$<=fg4DJJCMF7 zh%KTQRQhI#?~cV!SI`2{l-5XOU<(za9aI+Vp_u=K)bac*kb)c}GZJ#R^i#w4$!5(F zLn2q{5!uEY2Rw{MCleiHeM7W;0_I&C0n11)0 zacorx@mTO!u%HWsgp#m8MT$U_hiJvhSt21e2nmTDu&7kAWPt>~bHC>}O-cCVJOBCa z z$oVxm555k*8{E$#k$VDUiMmj{e*yde@0UTQs;`0X2fqzI1YQH*1O5U$4&DSi;QjB& z&wU&ey*EJq)XRKKfxiQxK>ZyQIj@1D_rF0@R1*_QJpw)iz7yOHz7ISEJ_()$W!)7} z&igI!G4Ok!==n47DeyH=c$`AWDex%xVelK^$H1%LY49c}`#W1n&`WqHc6A`$sD}B#TLSk_=MOCcky}xUe71w3(pK~FHK?ts;g<*98I3bbMT+S zg*@T|^6a6B9pn-JP?J+p(zD^E*hF^P>GdG%>#QF*Jvp@+*symgG%GfA44E*srnjN( zmB3}Lt&S}%=x5KL(Ssz2vmjp6S)z^ZCEa0U<4gy!PHkwiAcs#G5D?w~C?Xo15 z1wq!<%d(e<0eZpes!e5a);Fy3OX4IBx+bgzGnvhMJ!y6Cu1U8`_9^yoW25etk=U;5 z(2i{A=T&da>*&dRaV-o*o*!D5>48mGlQgnDjZ%|S-DDVN)Ab>|th-;feLLR6P@Txh zDltE;L%&#elQ=W*TXOAmlIjGy(o%ixhAYJiD8?=gsyrE{oViCk8``c=UK?l>Ku@yT zG^cd6%fqW1B} zb#8SSh8ykMiQvwcQ3ZFdk5$Wgv!!w3qs(0`D@?4tQ@r`gTJikW;UJaDk%>3T^Wu#2 zy&&@+WuK>3ddm){&PW_pX9|z#_JgoTsH?`?YSD~>H6JfKYOxMv+KjNDSqZIL97ZeL z@rFZjLnKbZW1&la>Dy|Fdr2HMaZl$PpZC74a;O~AjS=C>;U+tG9Q+E=|IgYt+}NpQ zuB+rF(fC#+wHXX-T=<~4y-bCWRq_gc72|&78LZ<|%osnCY-}{hHuAC3sinJcs)l`) zWG8^^`STYR&Mi)yw}T|jT4&u_&}$tZuDRAS`DtS5Twss~>oJoTuoyl0_X6E)CIJ|#mkj+d_oLx9OUn@V?o}D;BFvo9O%Nql<%IuYF zW)PCFn^+2msR>)B$lR`@ zs*k`zV0CXy`b`+(BX zBud0vzobA)q$CQuc!WvoZ`DNY%Og|mC?$uVUFYV6J3}kaRLw9ccVd+2cSD5=y3Wqt{9cBj7V)m@mk*c#Os>%bh{jHK3)YXz;_kRc) z*KaxLB~G0#Y@p6@_eDiwK=Y&ns^iEP8ARTO{A8$;VTNx@sZ}kk57yR%U_-_z>1wR? zZc%bk6ku3R3Mq=~m7w6O7A7YeQdu-d8IlcY!Y@NioKkTa)DR`=yDE&Mlvn9M4Y z+q6{Wk(7W`fJCNB)HX>zhPsSM8jqc|mUH{HvDh7IB@9PRMek&B=`Y(jdc&o48Hm1l zG{Ebsi|tw9_fL>9T=I>XsQs{C4pqOm!?r$0u@~9G>oCD;5cUxza%*wahITEFqiRt! z@1u7$Opb8moIH9l{z_z1f7@#_>)5+taUt2JTuh}HXsZ_qKc%;o*zl5V$H_}Q!Ugx_ zj$(W*suAJuT8gle|91g$>P%6|8KdkRPDSb18@ql*7SpDiTGyr0Ad2|3Cvy=mKM#je zJZAicb53H6nwR@~D{+PMjm&0{, 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" @@ -26,23 +26,23 @@ msgstr "" #: 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 "Gabinetes" +msgstr "" #: links.py:30 links.py:44 msgid "Remove from cabinets" -msgstr "Remover dos gabinetes" +msgstr "" #: links.py:35 links.py:40 msgid "Add to cabinets" -msgstr "Adicionar aos gabinetes" +msgstr "" #: links.py:63 msgid "Add new level" -msgstr "Adicionar novo nível" +msgstr "" #: links.py:69 views.py:45 msgid "Create cabinet" -msgstr "Criar novo gabinete" +msgstr "" #: links.py:75 msgid "Delete" @@ -54,7 +54,7 @@ msgstr "Editar" #: links.py:88 msgid "All" -msgstr "Todos" +msgstr "" #: links.py:92 msgid "Details" @@ -70,149 +70,142 @@ msgstr "Documentos" #: models.py:46 models.py:135 serializers.py:138 msgid "Cabinet" -msgstr "Gabinete" +msgstr "" #: models.py:136 serializers.py:139 msgid "Parent and Label" -msgstr "Pai e None" +msgstr "" #: models.py:143 serializers.py:145 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." -msgstr "%(model_name)s com este %(field_labels)s já existe." +msgstr "" #: models.py:160 msgid "Document cabinet" -msgstr "Gabinete de documentos" +msgstr "" #: models.py:161 msgid "Document cabinets" -msgstr "Gabinetes de documentos" +msgstr "" #: permissions.py:12 msgid "Add documents to cabinets" -msgstr "Adicione documentos aos gabinetes" +msgstr "" #: permissions.py:15 msgid "Create cabinets" -msgstr "Criar gabinetes" +msgstr "" #: permissions.py:18 msgid "Delete cabinets" -msgstr "Remover gabinetes" +msgstr "" #: permissions.py:21 msgid "Edit cabinets" -msgstr "Editar gabinetes" +msgstr "" #: permissions.py:24 msgid "Remove documents from cabinets" -msgstr "Remover documentos dos gabinetes" +msgstr "" #: permissions.py:27 msgid "View cabinets" -msgstr "Ver gabinetes" +msgstr "" #: serializers.py:19 msgid "List of children cabinets." -msgstr "Lista de filhos dos gabinetes" +msgstr "" #: serializers.py:22 msgid "Number of documents on this cabinet level." -msgstr "Número de documentos neste nível de gabinete" +msgstr "" #: serializers.py:26 msgid "The name of this cabinet level appended to the names of its ancestors." -msgstr "O nome deste gabinete nível acrescentado aos nomes de seus antepassados" +msgstr "" #: serializers.py:32 msgid "" "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" -"URL da API mostrando os documentos da lista dentro deste gabinete" #: serializers.py:68 serializers.py:179 msgid "Comma separated list of document primary keys to add to this cabinet." -msgstr "Lista separada por vírgulas de chaves primárias do documento para adicionar a este gabinete." +msgstr "" #: serializers.py:158 msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" -"URL da API que aponta para um documento em relação ao gabinete que o armazena. " -"Este URL é diferente do URL do documento canônico." #: templates/cabinets/cabinet_details.html:17 msgid "Navigation:" -msgstr "Navegação" +msgstr "" #: views.py:60 #, python-format msgid "Add new level to: %s" -msgstr "Adicionar novo nível para: %s" +msgstr "" #: views.py:87 #, python-format msgid "Delete the cabinet: %s?" -msgstr "Excluir o gabinete: %s?" +msgstr "" #: views.py:122 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 "" -"Os níveis de gabinete podem conter documentos ou outros subníveis do gabinete. " -"Para adicionar documentos a um gabinete, selecione a exibição do gabinete de uma exibição de documento" #: views.py:126 msgid "This cabinet level is empty" -msgstr "Este nível de gabinete está vazio" +msgstr "" #: views.py:129 #, python-format msgid "Details of cabinet: %s" -msgstr "Detalhes do gabinete: %s" +msgstr "" #: views.py:149 #, python-format msgid "Edit cabinet: %s" -msgstr "Editar gabinete: %s" +msgstr "" #: views.py:169 msgid "" "Cabinets are a multi-level method to organize documents. Each cabinet can " "contain documents as well as other sub level cabinets." msgstr "" -"Os gabinetes são um método de vários níveis para organizar documentos. " -"Cada gabinete pode conter documentos, bem como outros gabinetes de nível inferior." #: views.py:173 msgid "No cabinets available" -msgstr "Não há gabinetes disponíveis" +msgstr "" #: views.py:205 msgid "Documents can be added to many cabinets." -msgstr "Documentos podem ser adicionados a muitos gabinetes" +msgstr "" #: views.py:208 msgid "This document is not in any cabinet" -msgstr "Este documento pode ser adicionado a muitos gabinetes." +msgstr "" #: views.py:211 #, python-format msgid "Cabinets containing document: %s" -msgstr "Gabinetes contendo documento: %s" +msgstr "" #: views.py:223 #, python-format msgid "Add to cabinet request performed on %(count)d document" -msgstr "Adicionar à solicitação de gabinete executada nos documentos %(count)d" +msgstr "" #: views.py:226 #, python-format msgid "Add to cabinet request performed on %(count)d documents" -msgstr "Adicionar à solicitação do gabinete executada em documentos %(count)d" +msgstr "" #: views.py:233 msgid "Add" @@ -221,31 +214,31 @@ msgstr "Adicionar" #: views.py:248 #, python-format msgid "Add document \"%s\" to cabinets" -msgstr "Adicionar document \"%s\" a gabinetes" +msgstr "" #: views.py:259 msgid "Cabinets to which the selected documents will be added." -msgstr "Gabinetes aos quais os documentos selecionados serão adicionados" +msgstr "" #: views.py:288 #, python-format msgid "Document: %(document)s is already in cabinet: %(cabinet)s." -msgstr "Documento: %(document)s já está no gabinete: %(cabinet)s." +msgstr "" #: views.py:300 #, python-format msgid "Document: %(document)s added to cabinet: %(cabinet)s successfully." -msgstr "Documentos: %(document)s adicionados ao gabinete: %(cabinet)s com sucesso." +msgstr "" #: views.py:313 #, python-format msgid "Remove from cabinet request performed on %(count)d document" -msgstr "Remover da solicitação de gabinete executada no documento %(count)d" +msgstr "" #: views.py:316 #, python-format msgid "Remove from cabinet request performed on %(count)d documents" -msgstr "Remover da solicitação de gabinete executada nos documentos %(count)d" +msgstr "" #: views.py:323 msgid "Remove" @@ -253,14 +246,14 @@ msgstr "Remover" #: views.py:349 msgid "Cabinets from which the selected documents will be removed." -msgstr "Gabinetes dos quais os documentos selecionados serão removidos." +msgstr "" #: views.py:377 #, python-format msgid "Document: %(document)s is not in cabinet: %(cabinet)s." -msgstr "Documento: %(document)s não está em gabinete: %(cabinet)s." +msgstr "" #: views.py:389 #, python-format msgid "Document: %(document)s removed from cabinet: %(cabinet)s." -msgstr "Documento: %(document)s removido do gabinete: %(cabinet)s." +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 3cb99dd56b..5038b5d081 100644 --- a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 3d5357dd74..9179b5615a 100644 --- a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po index 3604e8b5eb..4102c59d00 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 a0e125e20d..282425a4b5 100644 --- a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/sl_SI/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 c9d98eeffc..8af2593b86 100644 --- a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/tr_TR/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 f6cb6e3796..a1383f2d82 100644 --- a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po index f0849feb36..11392aca2a 100644 --- a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/zh/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index d599a50d8f..4d70dc231c 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 8a9d866628..8ffce1ed7d 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 7013597f1f..330aafefa2 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po index ae22ad44bf..fbeb9fc3ab 100644 --- a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/cs/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 e89bf0c5f5..37d32a87a9 100644 --- a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da_DK/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 f2981dda50..e4818709f1 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po index 180f680c1e..d3df626687 100644 --- a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/el/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index a174a46b0a..7657862834 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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 55307447d3..5d2e7d05cf 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index d9c0858ffa..4ddbab4d58 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index fbc1fb7c2e..f72203a61c 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 5bf64d121d..e5d5002058 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index 15daa92738..1a56812f2b 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index f0bd806277..6185914231 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po index a34518464e..0a0a9a3877 100644 --- a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/lv/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 d4f3477295..11c3ce48ed 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 58e9b41ca5..034893206c 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo index 5fc74bbbc2c361292ebaaf1b75ccd3faf2d811b1..2d93cce0d34f7987a4c8ffc4aa6a66fec0edda32 100644 GIT binary patch delta 158 zcmbQI_>;N*o)F7a1|VPoVi_Q|0b*7ljsap2C;(z6AT9)AkeU)8W(ML)AWmmwV5kMs zAn~U_HW!e71*AdpUx73bfdPmQQUfxF!7ra7v^cehAu_d?A)sh;7H1lxh~MGGK+%%S QoXo1kl>8!w;LKbG0HJIbf&c&j literal 4254 zcmai$O^6&t6vs=WCXVqVF@D6TscgPBCOxye8Z{Hw5VMH}-OZZp269lSovxj!Y$VCJ}5h8+K^yWdY{$F=bcg<$hW@mp>)vsQ? zuc|kf)?f8H!!w4@o%o!;g0Vy3L#yx)&tq3HwjVqS-VVM9-Uhx6t^+>?*Mr}HcYr^E zYr(%jl3R5(V?*F3@K*3)kmP6caSOZ|CKS6`F8-vC~R@hz)B=-3$5qH^3_~J`d9R4?vj2z5}b^k03(F z*1&j5!S&!ta2?o0Zd%~|7=K&I>{yLpaEy0=+5I#~`7$8o;boBQdl$S1`~=(q z{+7?LMbb!a2&DD(e0&Vtj&Tzl2VViN2QPx;=Z_#vVSj^EKUd=ABDfjE6nhgSJKhEH z$3D-;7r}=x{uP8vYzvZ1`|Jicf=`0mzy*-(dKIKNz6X;0ry%M53M9Ep;AU_Yl0o^~ z3Q{~C07>suKDHpm;U$pjbs401e+JU}FF~Y${Q_3O-$C+k<4svUwt)%8!ywX;)(nu^ zPyTgLUU=&QRXOx#dK~H1PsS!O8ct8 zCNz(<9&+94MzyAx^EM!Lqwthn@SlKmHYG#&Y(GXw?c5>j46ds#toU8SQz9gZV8h{Ximzg5P(j{ zVq=9(N{vWvd9vA&73!(l$|{+1PI+1x?6Mi-PMIuI(m%kaH2z9eyd^pk8S1x^O{a-w z)3FLgyu=seQhF)5_fVEt$L1=VH8N(Wq+zFY!hPjOJ8_rAs;Q#Bq#z9aMN;L1+`at9 znU3{o*|6SG-#eMzadkc^mPEu4PfVVu9G7h!TW``dmG3>0G>tc->%203%sVbSimpU& z0+n6oV6m>=^%+k;33eVsq?6v4$b)3ex7|DACCBzaXz|he}z4nh{!5m_-H%m zLNaV?-WIXoG2JY@EFaBfm~|kXb)aVwDPk_8j)IWH3FwHl9d+N)3@KCdIG-`^hydEV zXS*Lslix(XFpfavY~f7z4uFPis=|k|VlwMWgj^h#gBO zGTWmD+HGVtLy7m?8{ieW*%QTUoPC^G!^F7BZK0tk4=k^ za8!MNDA~dOF7m~F>74Nn#np_UL$TYI1V|jM=$DL(DbG#(X#akUsu`5 z?lS63b78yhJH}GY`q(WmfnLF^jB&5m2@0!ZQ&bd~3zbzdhrNBp4I>PG_7urQR8M0E zoCEk$-uX_TvbNW&IaozUFk|Ex{psFkZOOD+AF>z;*+?3m+wM4_73$}y3hNShsmO1V<8aU>13KIn{jdULoZ z(ups+n{&0~6-0Inm{!?rx`|1zoIH)FGW0__SyM7<^_Aob>!@LSt zv5r45n9fo!j+Cugs{-{b;vBOR3dcz|y61Qn9{KElJ6JT%G^O~B)mL9>$Nb+YWjEqK D2%ppY diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 3080c4ea6b..071e8adc99 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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" +"POT-Creation-Date: 2019-07-05 01:28-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" @@ -19,35 +19,35 @@ msgstr "" #: apps.py:41 events.py:7 links.py:34 msgid "Checkouts" -msgstr "Verificação" +msgstr "" #: dashboard_widgets.py:16 msgid "Checked out documents" -msgstr "Documentos com verificação" +msgstr "" #: events.py:10 msgid "Document automatically checked in" -msgstr "Documento verificado automaticamente" +msgstr "" #: events.py:14 msgid "Document checked in" -msgstr "Documento verificado em" +msgstr "" #: events.py:17 msgid "Document checked out" -msgstr "Documento retirado" +msgstr "" #: events.py:20 msgid "Document forcefully checked in" -msgstr "Documento com verificação forçada" +msgstr "" #: exceptions.py:27 views.py:108 msgid "Document already checked out." -msgstr "Documento já verificado." +msgstr "" #: forms.py:28 msgid "Document status" -msgstr "Status do documento" +msgstr "" #: forms.py:39 models.py:41 views.py:148 msgid "User" @@ -55,15 +55,15 @@ msgstr "Utilizador" #: forms.py:43 msgid "Check out time" -msgstr "Verificado em" +msgstr "" #: forms.py:48 msgid "Check out expiration" -msgstr "Verificar a expiração" +msgstr "" #: forms.py:53 msgid "New versions allowed?" -msgstr "Novas versões permitidas?" +msgstr "" #: forms.py:54 msgid "Yes" @@ -75,95 +75,95 @@ msgstr "Não" #: links.py:41 msgid "Check out document" -msgstr "Verificar o documento" +msgstr "" #: links.py:47 msgid "Check in document" -msgstr "Verificar no documento" +msgstr "" #: links.py:52 msgid "Check in/out" -msgstr "Verificar entrada/saida" +msgstr "" #: literals.py:12 msgid "Checked out" -msgstr "Verificado" +msgstr "" #: literals.py:13 msgid "Checked in/available" -msgstr "Verificar entrada/disponível" +msgstr "" #: models.py:28 models.py:110 msgid "Document" -msgstr "Documento" +msgstr "" #: models.py:31 msgid "Check out date and time" -msgstr "Verificar data e hora" +msgstr "" #: models.py:35 msgid "Amount of time to hold the document checked out in minutes." -msgstr "Quantidade de tempo para reter o documento em minutos." +msgstr "" #: models.py:37 msgid "Check out expiration date and time" -msgstr "Verificar a data e hora de vencimento" +msgstr "" #: models.py:46 msgid "Do not allow new version of this document to be uploaded." -msgstr "Não permitir que nova versão deste documento seja enviada." +msgstr "" #: models.py:48 msgid "Block new version upload" -msgstr "Bloquear envio de nova versão" +msgstr "" #: models.py:55 permissions.py:7 msgid "Document checkout" -msgstr "documento" +msgstr "" #: models.py:56 msgid "Document checkouts" -msgstr "verificação documentos" +msgstr "" #: models.py:64 msgid "Check out expiration date and time must be in the future." -msgstr "Data e hora de verificação de vencimento deve ser no futuro" +msgstr "" #: models.py:116 msgid "New version block" -msgstr "Nova versão bloqueada" +msgstr "" #: models.py:117 msgid "New version blocks" -msgstr "Nova versão bloqueia" +msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "Verificar documentos" +msgstr "" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "Forçar a verificação de documentos" +msgstr "" #: permissions.py:16 msgid "Check out documents" -msgstr "Verificar documentos" +msgstr "" #: permissions.py:19 msgid "Check out details view" -msgstr "Verificar documentos, vista de detalhe" +msgstr "" #: queues.py:13 msgid "Checkouts periodic" -msgstr "Verificar periodicamente" +msgstr "" #: queues.py:17 msgid "Check expired checkouts" -msgstr "Verificar validações expiradas" +msgstr "" #: serializers.py:26 msgid "Primary key of the document to be checked out." -msgstr "Chave primária do documento a ser verificado." +msgstr "" #: views.py:37 #, python-format @@ -171,17 +171,15 @@ msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -"Você não fez a verificação de documentos originalmente neste documento. " -"Forçar a verificação de documento: %s?" #: views.py:41 #, python-format msgid "Check in the document: %s?" -msgstr "Validadar documento: %s?" +msgstr "" #: views.py:74 msgid "Document has not been checked out." -msgstr "O documento não foi verificado" +msgstr "" #: views.py:80 #, python-format @@ -191,42 +189,40 @@ msgstr "" #: views.py:114 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "Documento \"%s\" verificado com sucesso" +msgstr "" #: views.py:123 #, python-format msgid "Check out document: %s" -msgstr "Verificar documento: %s" +msgstr "" #: views.py:154 msgid "Checkout time and date" -msgstr "Verificado em dia e hora" +msgstr "" #: views.py:160 msgid "Checkout expiration" -msgstr "Válido até" +msgstr "" #: views.py:168 msgid "" "Checking out a document blocks certain document operations for a " "predetermined amount of time." msgstr "" -"A verificação de um documento bloqueia determinadas operações do " -"documento por um período de tempo predeterminado." #: views.py:172 msgid "No documents have been checked out" -msgstr "Nenhum documento foi verificado" +msgstr "" #: views.py:173 msgid "Documents checked out" -msgstr "Documentos verificados" +msgstr "" #: views.py:188 #, python-format msgid "Check out details for document: %s" -msgstr "Detalhes de verificação do documento: %s" +msgstr "" #: widgets.py:25 msgid "Period" -msgstr "Período" +msgstr "" 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 75943ecbef..5454106ce4 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 39422e78f3..43ec1c7e4d 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 6a5f12de10..8693c1d814 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 7eacda3eaf..09c8e05b82 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 d4cc76a4b5..ea09bcfdf6 100644 --- a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/tr_TR/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" 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 aa14c17bd8..8bb67d432d 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po index 695320b536..8345d24af0 100644 --- a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 9d0025c8f1..2d3707b5f7 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index e50efc3245..87a156acc0 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 ff1174e67d..43d881a23c 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po index a83e7fcdb2..c86fd58399 100644 --- a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/cs/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 b07970f8e7..c1f337c518 100644 --- a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da_DK/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 21169640cd..846db6459b 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.po b/mayan/apps/common/locale/el/LC_MESSAGES/django.po index 47b2908871..7839147000 100644 --- a/mayan/apps/common/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/el/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index 016ee5c88e..3a347c9eda 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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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/common/locale/es/LC_MESSAGES/django.mo b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo index d0e4c16c3a67946aaa47a0c32ca926f7d242dfdc..3f2b97d99b78b053ed94590e10955021bc7d6320 100644 GIT binary patch delta 3840 zcmchZeQcH08NiR@g&`C!L#2EOPMr?=a_`&QOYeQ(%YE-f z%LZ2kjE-z%W2o`FkVyPOlg5w4DQ=y{84~|6ME?*(UC2T<)MSkx!EL|iJ#R^uEZH9} zJK?#%bDneFbDpnr%HdNb`_7gWPmdpQNN9VIX-M-3kv_O)BtNvtJ$--lbKKtYJwOo*Fc?L4QIi1P&W!7&dIK5ydM%gIRy3lhoRv4VK@vPnJTgm z)l*l9EMQzuxC=!(Tc(R_X5!?PcmbO+?*o{DD`3os{1M&{7vTEZnIeB@e0P<|e!kx^ zn{YB7R)hDjAKr()TJr>7AUp(DUaYeYz6I5xldz~Bd_+e>at^BHWpizg$3qR}VyNY? z4z7Z?z_suRNcQABRA)8L8o{Yh52%Bh!X~JZX@R=W61V}z>WRNDco0Psd<^RNy=dV{ zs0N*enu@d0cmNVC`3~-b)8^qVJPb88e}YWO`%oQ_1{>i@Nc1IuYS4iO@~@Wu7R7A% z2>c=ZJ)|t;pHSx~&$mT51FmLV2UQF!F8~SQ^Cm$??cc4E;r6w3xUt?=$KX=%m ze-;vTIROcVd<*r!Iu4;;Wi#yMyFD;fLjGqH@8c*AEESm!*DbRTM`k&PQ0@ELM1IPL z&8x7M_u)6NoOR=IQ$4!!dYhUmsKqrOY9trIQE(a5l(xf3a6eSXj=)mA|F6;^x^f)q z2VX+9{2!6N;Rc(M4p@Oc2{q?E@N&2Zsv!?Uf+J5tHQ+<2`<;pSH>m5rh2>DzV5Hvv zQFN+cjD$Une%o3$Wn4*uPr!%Pi~JnDdn3;-{1ld=U%HX2$T+r1bV28 z*t(%!!$)Bmd<}AjybU+NSyZlp1y~Cofcnn72{l4zwi17>_P<1m&*6B+U%?Jo7Pm#& z4XH=TLJi?jsJVVV;>%ETdmQSaoB_$lK$_!%7CW%XYc z>1c>Az$;*R%BG?Qs$p$V=Q|?$Pz~D+3-DgJ9bSMnB_iH7iWxr8Ey9-a4qi3Gri}et z(g~?+c?R-NiUa(Pq7(NlvyiJTyWkCM^fILWWLVZ7yb=C@@oi9RVmH*#AAxVM{x$du z#yfN2-=6R-(D~Vjz5}I*){M3~&JXjEx8v|vuf|=`xIUtK%&iHVzIu8+wK+%|LLmzQ z2>&SUhI%b)k;w>`M1G8r>9DqHU^Sxo54DY8eK@c$At?%*hDk$rGorblh3NI8Hibv? zVp~OT526K1UCAy)-wAEoEW%%{3xXqeB9wE4to?YT#by3#(L9w!angWqZ3CaAk&a;qzcg%AbQOv zBDeRQDtl{0MZyhINzciryrgl`Y2zH+ZYCB}UXW+xCd^j1$M+H@-{l9c@%&r{b&nY` z-(%XH9>+7WmF*iFOw5UQnINCj?Sd}9kk%cHV-kKo&u;5`*vK&NqM2^|F%(sEH~*? zkT-s3WK3ZGv!i)m?aR3te+TAu=KKtx@~Rn3IGHlpf|vI>XH09jBF;H#*uh`NCM44i zb)aPsPxbeCgDFoXoLb|vnvCNG2B~{x2NwGfVGj{1=0eiw^(* delta 2853 zcmYk;drX&A9LMo5@Dq@mf+8qhkc(V3Kv3}(BBH36c*R2EqM??T6uhPUG{pACle$R8x`JVG&%k6+8 zodNzUF}?#v*+~p0Qha6~V0I`UlxtyTiFn;JFx)JidNO9@D+ zauWR-c_$bAvtRhoQbv*3P)x#7%)&Xi9;2}XnT%aRJ>V|t0o|w+`ZC>>2}9kd4_072 z>ibogi|aC3e>EKOI<}z(bOM!%PrUk<$YR(QooPdJk{ge^WKasg0&)JwQo=l>_+ydn+twb`mr z{r92<`nuCj{?Bm{OhY$Dqi?#K%K^x%!4k0-j>WM!2}7_6b;IqRyHWjKMdki5j$Y0k&e+GGLxf8{RE!(b5StcY#Uz$&M|ue{TNL9&sa(Q28r*&33J&Kybtm#IDUMe zxzOwymMkJ|e4k2Z-6w2`*;U$Kz){%1O$X6_u*#j_3DktopkKNEnhWLXC)Do#54E{M z$%~F%A?h?#B41fOG6p-1i5SCK%fQj7y|ENSa69TjEnfX4jG?|CYw+D_^6%p!^hq=J zl|`bKumqLsnV$1exvfIoxDnHE8y>~CaTLy~;k4jZoP>LD2!4gn;2l)I1-0&dcGddb z5$>UZ4Ql&v0iH)aU^r({11ZBuoQIlu4Qi!6Laoeacmuz{oA_S6+rD?1dzucRUPNuE zRGdW(?5f}E(Crzq+#Oj0Hqjv&pT$F%7Qn`OirtK(8#w#4FXw}kYTx2i3|h&m;dES$ z`%s(IR=GwZC({PuEbil<&jtI+TAy|w{3j++@4^&JVBNIzMff>CsKnjWWb$x;XdJHSZ;7C3&2)hn`a-&v*Xgp{3v8)XnC5&O^;yMKg$Xt~k%AmC?!2 zaa>QR1QBZqR^BN}pHdXRFLYdiK7vgy2ArlC$+BJn8U_wk`JjL_eKUPKh3SENcQF@<0s zSs)QlsPIm5UfbnZLuj*UXFpC95#dA$F`Qt}S|brmG!u)7tpr8$=f6tC5@I4ThfwP# zqNfbxVjWT2(}0tS0z$`XFri~RlSn7}6WY|Xh=)txo=R%^+PYQC>l-uLlfpmtwO@#S cCoOEu$h^YDoH66`a@(5=uLQU6E8dXvKh{bwu>b%7 diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index da061bab20..3cf02c6057 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ 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-29 06:21+0000\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\n" +"PO-Revision-Date: 2019-07-05 06:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgid "" "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 "" +msgstr "Una lista de nombres que designan todas las aplicaciones que se eliminarán de la lista que normalmente instala Mayan EDMS. Cada entrada debe ser una ruta de Python con puntos a: una clase de configuración de la aplicación (preferida) o un paquete que contenga una aplicación." #: settings.py:43 msgid "" @@ -337,7 +337,7 @@ msgid "" "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 "" +msgstr "Una lista de nombres que designan todas las aplicaciones que se instalan más allá de las instaladas normalmente por Mayan EDMS. Cada entrada debe ser una ruta de Python con puntos a: una clase de configuración de la aplicación (preferida) o un paquete que contenga una aplicación." #: settings.py:52 msgid "" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 4f49eb05c3..c2fb8b7b6f 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index ce398fd7f3..6da03cad05 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index d2043a58cc..f911c19077 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index c0d1555e9a..1b2c77d81d 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index c3b1100b32..7b05db06d0 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo index f4d6f702306329e9882e4a450e2091c5a168d73a..c233b4ec11f7ace89cc70d796dc9633c1d3b6c28 100644 GIT binary patch delta 3926 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 diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po index 20523c2d05..0d5124dde0 100644 --- a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ 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-29 06:21+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\n" +"PO-Revision-Date: 2019-07-01 05:47+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" @@ -326,7 +326,7 @@ msgid "" "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 "" +msgstr "Saraksts ar virknēm, kas apzīmē visas lietojumprogrammas, kuras jānoņem no saraksta, kuras parasti uzstāda Mayan EDMS. Katrai virknei vajadzētu būt punktveida Python ceļam uz: lietojumprogrammas konfigurācijas klasi (vēlams) vai paketi, kurā ir lietojumprogramma." #: settings.py:43 msgid "" @@ -334,7 +334,7 @@ msgid "" "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 "" +msgstr "Saraksts ar virknēm, kas apzīmē visas lietojumprogrammas, kas ir uzstādītas ārpus tām, ko parasti uzstāda Mayan EDMS. Katrai virknei vajadzētu būt punktveida Python ceļam uz: lietojumprogrammas konfigurācijas klasi (vēlams) vai paketi, kurā ir lietojumprogramma." #: settings.py:52 msgid "" 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 a2821bc6b8..759422bb2a 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index 981986f681..fbbf55c184 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index 24e53ec093833e557e9f8a1969fac5ba99d3ebb0..a9ddfde7063f24151bed416fd32da26a05c082be 100644 GIT binary patch delta 748 zcmY+By=xRf7>D08(In?ba#14UDSHS}QfMJa+9MJW4nLxTf**{xb2?#nM`kxEv?79;Uv`l7CZ_M!ToR%vTs9r zO!Rf3N9bZ|HHb^Q>kz$17UvByvae&9~~e%I7ZbJR_!=X9X%I}X*@DL8|^ zEY=I>;4wa|z{7AIs<9_EpFus~IaHySP+#CRJP1EQHM#|xa2w)Jrb#uRJ$uRj0{!YX zt$J0Tcoch>sDT+$pG*%Qg$m4)YKRA@exI7rn@P7{IG^RxjbmBz*}#Q##3;6jEvzgB zYrxsI9hkMGkY$(HYRF7#rRVxK%We5_q0{q`sg8?sI{SresDY zu0Ep5tXRAMZ;V`F(_F52pX72ix8cqEGp^C<4mXGItlD#ZI!q|9FP~VrXyPz@;W5#_ zXI=29q&A9uG#D*Zu7;bYY~P$Oo3}dCm50LD9zyxboSw5GaD%KcC>Abp4@~TX`~{jp BfUN)k literal 27572 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 NrlC?1byf^6{x4gar0oCz diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 7b23c27c03..2e56c7539e 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,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" @@ -22,31 +22,31 @@ msgstr "" #: apps.py:89 permissions_runtime.py:7 settings.py:14 msgid "Common" -msgstr "Comum" +msgstr "" #: classes.py:126 msgid "Available attributes: \n" -msgstr "Atributos disponíveis: \n" +msgstr "" #: classes.py:166 msgid "Available fields: \n" -msgstr "Campos disponíveis: \n" +msgstr "" #: dependencies.py:396 msgid "Used to allow offline translation of the code text strings." -msgstr "Usado para permitir a tradução off-line das sequências de texto do código." +msgstr "" #: dependencies.py:401 msgid "Provides style checking." -msgstr "Fornece verificação de estilo." +msgstr "" #: dependencies.py:406 msgid "Command line environment with autocompletion." -msgstr "Ambiente de linha de comando com autocompletar." +msgstr "" #: dependencies.py:411 msgid "Checks proper formatting of the README file." -msgstr "Verifica a formatação adequada do arquivo README." +msgstr "" #: forms.py:27 msgid "Selection" @@ -62,9 +62,6 @@ msgid "" "the selection is complete, click the button below or double click the list " "to activate the action." msgstr "" -"Selecione as entradas a serem removidas. Mantenha a tecla \"ctrl\" para selecionar várias " -"entradas. Quando a seleção estiver completa, clique no botão abaixo ou clique duas " -"vezes na lista para efectuar a ação" #: generics.py:154 msgid "" @@ -72,13 +69,10 @@ msgid "" "the selection is complete, click the button below or double click the list " "to activate the action." msgstr "" -"Selecione as entradas a serem acrescentadas. Mantenha a tecla \"ctrl\" para selecionar várias " -"entradas. Quando a seleção estiver completa, clique no botão abaixo ou clique duas " -"vezes na lista para efectuar a ação" #: generics.py:287 msgid "Add all" -msgstr "Adicionar todos" +msgstr "" #: generics.py:296 msgid "Add" @@ -86,7 +80,7 @@ msgstr "Adicionar" #: generics.py:306 msgid "Remove all" -msgstr "Remover todos" +msgstr "" #: generics.py:315 msgid "Remove" @@ -95,65 +89,65 @@ msgstr "Remover" #: generics.py:521 #, python-format msgid "Duplicate data error: %(error)s" -msgstr "Erro, dados duplicados: %(error)s" +msgstr "" #: generics.py:543 #, python-format msgid "%(object)s not created, error: %(error)s" -msgstr "%(object)s não criado, erro: %(error)s" +msgstr "" #: generics.py:556 #, python-format msgid "%(object)s created successfully." -msgstr "%(object)s criado com sucesso." +msgstr "" #: generics.py:595 #, python-format msgid "%(object)s not deleted, error: %(error)s." -msgstr "%(object)s não removido, erro: %(error)s" +msgstr "" #: generics.py:604 #, python-format msgid "%(object)s deleted successfully." -msgstr "%(object)s removido com sucesso." +msgstr "" #: generics.py:697 #, python-format msgid "%(object)s not updated, error: %(error)s." -msgstr "%(object)s não actualizado, erro: %(error)s" +msgstr "" #: generics.py:708 #, python-format msgid "%(object)s updated successfully." -msgstr "%(object)s actualizado com sucesso." +msgstr "" #: links.py:36 msgid "About this" -msgstr "Sobre isto" +msgstr "" #: links.py:40 msgid "Locale profile" -msgstr "Perfil do local" +msgstr "" #: links.py:45 msgid "Edit locale profile" -msgstr "Editar perfil do local" +msgstr "" #: links.py:50 msgid "Documentation" -msgstr "Documentação" +msgstr "" #: links.py:54 links.py:65 msgid "Errors" -msgstr "Erros" +msgstr "" #: links.py:59 msgid "Clear all" -msgstr "Limpar todos" +msgstr "" #: links.py:69 msgid "Forum" -msgstr "Fórum" +msgstr "" #: links.py:73 views.py:109 msgid "License" @@ -165,11 +159,11 @@ msgstr "Configuração" #: links.py:79 msgid "Source code" -msgstr "Código fonte" +msgstr "" #: links.py:83 msgid "Support" -msgstr "Suporte" +msgstr "" #: links.py:87 queues.py:15 views.py:210 msgid "Tools" @@ -179,64 +173,55 @@ msgstr "Ferramentas" msgid "" "This feature has been deprecated and will be removed in a future version." msgstr "" -"Este será descontinuado e será removido em uma versão 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 "" -"Seu back-end de banco de dados está configurado para usar o SQLite. O SQLite " -"só deve ser usado para desenvolvimento e teste, não para produção" #: literals.py:34 msgid "Days" -msgstr "Dias" +msgstr "" #: literals.py:35 msgid "Hours" -msgstr "Horas" +msgstr "" #: literals.py:36 msgid "Minutes" -msgstr "Minutos" +msgstr "" #: management/commands/convertdb.py:40 msgid "" "Restricts dumped data to the specified app_label or app_label.ModelName." msgstr "" -"Restringe os dados despejados (dump) ao app_label especificado ou ao 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 "" -"A base de dados do qual os dados serão exportados. Se omitido o nome da base de dados " -"\"default\" será usado" #: management/commands/convertdb.py:54 msgid "" "The database to which data will be imported. If omitted the database named " "\"default\" will be used." msgstr "" -"A base de dados do qual os dados serão importados. Se omitido o nome da base de dados " -"\"default\" será usado" #: management/commands/convertdb.py:61 msgid "" "Force the conversion of the database even if the receiving database is not " "empty." msgstr "" -"Forçar a conversão da base de dados mesmo se a base de dados que recebe não estiver vazia" #: menus.py:10 msgid "System" -msgstr "Sistema" +msgstr "" #: menus.py:12 menus.py:13 msgid "Facet" -msgstr "Faceta" +msgstr "" #: menus.py:16 msgid "Actions" @@ -244,7 +229,7 @@ msgstr "Ações" #: menus.py:17 msgid "Secondary" -msgstr "Secondario" +msgstr "" #: menus.py:21 models.py:93 msgid "User" @@ -261,23 +246,23 @@ msgstr "Objeto" #: models.py:28 msgid "Namespace" -msgstr "Namespace" +msgstr "" #: models.py:39 models.py:63 msgid "Date time" -msgstr "Data e tempo" +msgstr "" #: models.py:41 views.py:155 msgid "Result" -msgstr "Resultado" +msgstr "" #: models.py:47 msgid "Error log entry" -msgstr "Error log entry" +msgstr "" #: models.py:48 msgid "Error log entries" -msgstr "Erros (log) registados" +msgstr "" #: models.py:59 msgid "File" @@ -289,31 +274,31 @@ msgstr "Nome do ficheiro" #: models.py:67 msgid "Shared uploaded file" -msgstr "Ficheiro enviado partilhado" +msgstr "" #: models.py:68 msgid "Shared uploaded files" -msgstr "Ficheiro enviado partilhado" +msgstr "" #: models.py:97 msgid "Timezone" -msgstr "Fuso horário" +msgstr "" #: models.py:100 msgid "Language" -msgstr "Língua" +msgstr "" #: models.py:106 msgid "User locale profile" -msgstr "Perfil de localidade do utilizador" +msgstr "" #: models.py:107 msgid "User locale profiles" -msgstr "Perfis de localidade de utilizadores" +msgstr "" #: permissions_runtime.py:10 msgid "View error log" -msgstr "Ver erros (log) registados" +msgstr "" #: queues.py:13 msgid "Default" @@ -321,23 +306,21 @@ msgstr "Padrão" #: queues.py:17 msgid "Common periodic" -msgstr "Periódico comum" +msgstr "" #: queues.py:22 msgid "Delete stale uploads" -msgstr "Excluir uploads antigos" +msgstr "" #: settings.py:19 msgid "Automatically enable logging to all apps." -msgstr "Ativar automaticamente o registro de error para todos os aplicativos" +msgstr "" #: settings.py:25 msgid "" "Time to delay background tasks that depend on a database commit to " "propagate." msgstr "" -"Tempo para atrasar as tarefas em segundo plano que dependem de uma submissão " -"para a base de dados para propagar." #: settings.py:33 msgid "" @@ -360,36 +343,34 @@ 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 da vista anexada à ligação da marca no menu principal. Essa também é a " -"vista para a qual os utilizadores serão redirecionados após o entrar." #: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "Especificar número de objectos que são mostrados por página" +msgstr "" #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." -msgstr "Ativar o registo (log) de erros fora dos recursos de registo de erros do sistema" +msgstr "" #: settings.py:75 msgid "Path to the logfile that will track errors during production." -msgstr "Caminho para o arquivo de registo (log) que rastreará erros durante a produção" +msgstr "" #: settings.py:82 msgid "Name to be displayed in the main menu." -msgstr "Nome a ser exibido no menu principal" +msgstr "" #: settings.py:88 msgid "URL of the installation or homepage of the project." -msgstr "URL da instalação ou homepage do projeto" +msgstr "" #: settings.py:94 msgid "A storage backend that all workers can use to share files." -msgstr "Um back-end de armazenamento que todos os subprocessos podem usar para partilhar filcheiros" +msgstr "" #: settings.py:103 msgid "Django" -msgstr "Django" +msgstr "" #: settings.py:108 msgid "" @@ -405,16 +386,6 @@ msgid "" "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 servir. " -"Essa é uma medida de segurança para impedir ataques de cabeçalho de Host HTTP, que são " -"possíveis mesmo em muitas configurações de servidor da Web aparentemente seguras. Os " -"valores nessa lista podem ser totalmente qualificados nomes (por exemplo, www.example.com ')," -" caso em que eles serão correspondidos exatamente com o cabeçalho do host da solicitação " -"(sem distinção entre maiúsculas e minúsculas, não incluindo porta). Um valor que começa com " -"um ponto pode ser usado como um curinga de subdomínio:'. example.com corresponderá a example.com, " -"a www.example.com ea qualquer outro subdomínio de example.com. Um valor de '*' corresponderá a " -"qualquer coisa. Nesse caso, você é responsável por fornecer sua própria validação do cabeçalho " -"do Host. (talvez em um middleware; se assim for, este middleware deve ser listado primeiro no MIDDLEWARE)." #: settings.py:126 msgid "" @@ -425,19 +396,12 @@ msgid "" "used if CommonMiddleware is installed (see Middleware). See also " "PREPEND_WWW." msgstr "" -"Quando definido como True, se o URL de solicitação não corresponder a nenhum dos padrões no URLconf e não " -"terminar em uma barra, um redirecionamento HTTP será emitido para o mesmo URL com uma barra anexada. Observe " -"que o redirecionamento pode causar quaisquer dados enviados em uma solicitação POST serão perdidos. A " -"configuração APPEND_SLASH será usada somente se o CommonMiddleware estiver instalado (consulte Middleware). " -"Consulte também PREPEND_WWW. " #: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -"A lista de validadores que são usados para verificar a segurança das " -"senhas do Utilizadores." #: settings.py:146 msgid "" @@ -447,10 +411,6 @@ msgid "" "setting must configure a default database; any number of additional " "databases may also be specified." msgstr "" -"Um dicionário contendo as configurações para todas as base de dados a serem usados com o Django. " -"É um dicionário cujo conteúdo mapeia um alias de banco de dados para um dicionário contendo as " -"opções para um banco de dados individual. A configuração DATABASES deve configurar uma base de " -"dados padrão; base de dados também podem ser especificados." #: settings.py:158 msgid "" @@ -466,16 +426,6 @@ msgid "" "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 "" -"Padrão: 2621440 (ou seja, 2,5 MB). O tamanho máximo em bytes que um corpo de solicitação " -"pode ser antes de um SuspiciousOperation (RequestDataTooBig) ser gerado. A verificação é " -"feita ao aceder request.body ou request.POST e é calculada em relação ao total solicitado " -"tamanho que exclui dados de upload de arquivo. Você pode definir isso como Nenhum para desabilitar " -"a verificação. Os aplicativos que devem receber mensagens de formulário incomumente grandes devem " -"ajustar essa configuração. A quantidade de dados de solicitação é correlacionada à quantidade de " -"memória necessária para processar a solicitação. e preencher os dicionários GET e POST.Grandes pedidos " -"podem ser usados como um vetor de ataque de negação de serviço se não forem verificados.Como os servidores " -"da Web normalmente não executam a inspeção profunda de solicitações, não é possível executar uma " -"verificação semelhante nesse nível. Veja também FILE_UPLOAD_MAX_MEMORY_SIZE. " #: settings.py:178 msgid "" @@ -483,9 +433,6 @@ msgid "" "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -"Padrão: 'webmaster @ localhost' Endereço de email padrão a ser usado para " -"várias correspondências automatizadas do(s) administradore(s) do site. Isso " -"não inclui mensagens de erro enviadas a ADMINS e MANAGERS; para isso, consulte SERVER_EMAIL." #: settings.py:188 msgid "" @@ -494,22 +441,16 @@ msgid "" "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." msgstr "" -"Padrão: [] (Empty list). Lista de objetos de expressões regulares compiladas " -"representando strings User-Agent que não têm permissão para visitar qualquer " -"página, em todo o sistema. Use isto para robôs / crawlers ruins. Isso é usado " -"somente se o CommonMiddleware estiver instalado Middleware)." #: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -"Padrão: 'django.core.mail.backends.smtp.EmailBackend'. O backend a ser " -"usado para enviar e-mails." #: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." -msgstr "Padrão: 'localhost'. O host a ser usado para enviar email." +msgstr "" #: settings.py:214 msgid "" @@ -518,30 +459,22 @@ msgid "" "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." msgstr "" -"Padrão: '' (vazio). Senha a ser usada para o servidor SMTP definido em " -"EMAIL_HOST. Essa configuração é usada em conjunto com EMAIL_HOST_USER " -"ao autenticar no servidor SMTP. Se qualquer uma dessas configurações " -"estiver vazia, o Django não tentará 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 "" -"Padrão: '' (vazio). Nome de utilizador para usar no servidor SMTP definido " -"em EMAIL_HOST. Se vazio, o Django não tentará autenticação." #: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." -msgstr "Padrão: 25. Porta a ser usada para o servidor SMTP definido em EMAIL_HOST." +msgstr "" #: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -"Padrão: None. Especifica um tempo limite em segundos para operações de " -"bloqueio, como a tentativa de conexão." #: settings.py:249 msgid "" @@ -550,10 +483,6 @@ msgid "" "587. If you are experiencing hanging connections, see the implicit TLS " "setting EMAIL_USE_SSL." msgstr "" -"Padrão: False. Se usar uma conexão TLS (segura) ao falar com o servidor SMTP. " -"Isso é usado para conexões TLS explícitas, geralmente na porta 587. Se você " -"estiver com conexões interrompidas, consulte a configuração implícita de " -"TLS EMAIL_USE_SSL." #: settings.py:259 msgid "" @@ -564,12 +493,6 @@ msgid "" "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." msgstr "" -"Padrão: False. Se usar uma conexão TLS (segura) implícita ao falar com o servidor " -"SMTP. Na maioria das documentações de email, esse tipo de conexão TLS é chamado " -"de SSL. Geralmente, é usado na porta 465. Se você estiver tendo problemas, " -"consulte a configuração TLS explícita EMAIL_USE_TLS. Observe que EMAIL_USE_TLS " -"/ EMAIL_USE_SSL são mutuamente exclusivos, portanto, defina apenas uma dessas " -"configurações como True." #: settings.py:271 msgid "" @@ -577,9 +500,6 @@ msgid "" "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -"Padrão: 2621440 (ou seja, 2,5 MB). O tamanho máximo (em bytes) que um upload " -"será antes de ser transmitido para o sistema de ficheiros. Consulte gestão " -"ficheiros para obter detalhes. Consulte também DATA_UPLOAD_MAX_MEMORY_SIZE." #: settings.py:281 msgid "" @@ -589,12 +509,6 @@ msgid "" "duplication since you don't have to define the URL in two places (settings " "and URLconf)." msgstr "" -"Padrão: '/accounts/login/' A URL onde as solicitações são redirecionadas " -"para entrar, especialmente quando se usa o decorador login_required(). Essa " -"configuração também aceita padrões de URL nomeados que podem ser usados para " -"reduzir a duplicação de configuração, já que você não precisa defenir o URL " -"em dois lugares (settings e URLconf). " - #: settings.py:293 msgid "" @@ -604,12 +518,6 @@ msgid "" "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 "" -"Padrão: '/accounts/profile/' A URL onde as solicitações são redirecionadas " -"após o login quando a visualização contrib.auth.login não recebe o próximo " -"parâmetro. Isso é usado pelo decorador login_required(), por exemplo. Essa " -"configuração também aceita URLs nomeadas padrões que podem ser usados para " -"reduzir a duplicação de configuração, já que você não precisa definir o URL " -"em dois lugares (settings e URLconf). " #: settings.py:305 msgid "" @@ -620,12 +528,6 @@ msgid "" "configuration duplication since you don't have to define the URL in two " "places (settings and URLconf)." msgstr "" -"Padrão: None. A URL em que as solicitações são redirecionadas depois que um utilizador " -"termina sessao usando LogoutView (se a exibição não obtiver um argumento next_page). Se " -"None, nenhum redirecionamento será executado e a exibição de logout será renderizada. " -"Essa configuração também aceita padrões de URL nomeados que podem ser usados para reduzir " -"a duplicação de configuração, já que você não precisa definir o URL em dois lugares " -"(configurações e URLconf). " #: settings.py:318 msgid "" @@ -634,10 +536,6 @@ msgid "" "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -"Uma lista de endereços IP, como strings, que: Permitem que o processador de contexto " -"debug() adicione algumas variáveis ao contexto do modelo. Pode usar os bookmarklets " -"admindocs mesmo se não estiver logado como utilizador da equipa. São marcados como " -"\"internal\"(ao contrário de \"EXTERNAL\") em emails AdminEmailHandler." #: settings.py:329 msgid "" @@ -647,11 +545,6 @@ msgid "" "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 "" -"Uma lista de todos os idiomas disponíveis. A lista é uma lista de duas tuplas no " -"formato (código do idioma, nome do idioma), por exemplo, ('ja', 'Japonês'). " -"Isso especifica quais idiomas estão disponíveis para seleção de idioma. Geralmente, " -"o valor padrão deve ser suficiente. Somente defina essa configuração se você quiser " -"restringir a seleção de idioma para um subconjunto dos idiomas fornecidos pelo Django." #: settings.py:342 msgid "" @@ -664,14 +557,6 @@ msgid "" "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." msgstr "" -"Uma string que representa o código de idioma para esta instalação. Deve estar " -"no formato de ID de idioma padrão. Por exemplo, o inglês dos EUA é \"en-us\". Ele " -"serve a duas finalidades: Se o middleware de localidade não estiver em uso, ele " -"decide qual tradução é veiculada para todos os usuários. Se o middleware de localidade " -"estiver ativo, ele fornecerá um idioma de fallback caso o idioma preferencial do usuário " -"não possa ser determinado ou não seja suportado pelo site. Ele também fornece a tradução " -"de fallback quando uma tradução para um determinado literal não existe para o idioma " -"preferido do usuário. " #: settings.py:357 msgid "" @@ -680,10 +565,6 @@ msgid "" "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 ser usado ao se referir a arquivos estáticos localizados em STATIC_ROOT. " -"Exemplo: \"/static/\" ou \"http://static.example.com/\"Se não for None, ele será " -"usado como o caminho base para definições de ativos (a classe Media) e o aplicativo " -"staticfiles. Ele deve terminar em uma barra se configurado para um valor não vazio. " #: settings.py:368 msgid "" @@ -692,11 +573,6 @@ msgid "" "backend defined in this setting can be found at " "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -"O mecanismo de armazenamento de arquivos a ser usado ao coletar arquivos " -"estáticos com o comando de gerenciamento collectstatic. Uma instância " -"pronta para uso do back-end de armazenamento definido nessa configuração " -"pode ser encontrada em " -"django.contrib.staticfiles.storage.staticfiles_storage." #: settings.py:378 msgid "" @@ -704,10 +580,6 @@ msgid "" "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 "" -"Uma string representando o fuso horário para esta instalação. Note que este " -"não é necessariamente o fuso horário do servidor. Por exemplo, um servidor " -"pode servir vários sites com Django, cada um com uma configuração separada de " -"fuso horário." #: settings.py:388 msgid "" @@ -716,14 +588,10 @@ msgid "" "command will create a simple wsgi.py file with an application callable in " "it, and point this setting to that application." msgstr "" -"O caminho Python completo do objeto de aplicativo WSGI que os servidores " -"integrados do Django (por exemplo, runserver) usarão. O comando django-admin " -"startproject management criará um arquivo wsgi.py simples com um aplicativo " -"que pode ser chamado nele e apontará essa configuração para essa aplicação. " #: settings.py:396 msgid "Celery" -msgstr "Celery" +msgstr "" #: settings.py:401 msgid "" @@ -732,10 +600,6 @@ msgid "" " (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." msgstr "" -"Padrão: \"amqp://\" URL padrão do broker. Esta deve ser uma URL na forma de: " -"transport://userid:senha@hostname:port/virtual_host Somente a parte do esquema " -"(transport://) é obrigatório, o restante é opcional e é padronizado para os " -"valores padrão de transportes específicos. " #: settings.py:411 msgid "" @@ -744,10 +608,6 @@ msgid "" "http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" "backend" msgstr "" -"Padrão: nenhum back-end de resultado ativado por padrão. O back-end usado para " -"armazenar os resultados da tarefa (lápides). Consulte" -"http://docs.celeryproject.org/en/v4.1.0/userguide/configuration.html#result-" -"backend" #: templatetags/common_tags.py:31 msgid "Confirm delete" @@ -756,7 +616,7 @@ msgstr "Confirmar eliminação" #: templatetags/common_tags.py:36 #, python-format msgid "Edit %s" -msgstr "Editar %s" +msgstr "" #: templatetags/common_tags.py:39 msgid "Confirm" @@ -765,12 +625,12 @@ msgstr "Confirmar" #: templatetags/common_tags.py:43 #, python-format msgid "Details for: %s" -msgstr "Detalhes para: %s" +msgstr "" #: templatetags/common_tags.py:47 #, python-format msgid "Edit: %s" -msgstr "Editar: %s" +msgstr "" #: templatetags/common_tags.py:50 msgid "Create" @@ -781,54 +641,50 @@ msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." msgstr "" -"Digite um 'nome interno' válido, composto de letras, números e " -"sublinhados '_'." #: views.py:31 msgid "About" -msgstr "Sobre" +msgstr "" #: views.py:44 msgid "Current user locale profile details" -msgstr "Detalhes do perfil de localidade do utilizador atual" +msgstr "" #: views.py:50 msgid "Edit current user locale profile details" -msgstr "Editar detalhes do perfil de localidade do utilizador atual" +msgstr "" #: views.py:100 msgid "Dashboard" -msgstr "Painel de controle" +msgstr "" #: views.py:118 #, python-format msgid "Clear error log entries for: %s" -msgstr "Limpar entradas do registo (log) de erros para:% s" +msgstr "" #: views.py:135 msgid "Object error log cleared successfully" -msgstr "Registo (log) de erro do objeto limpo com sucesso" +msgstr "" #: views.py:154 msgid "Date and time" -msgstr "Data e tempo" +msgstr "" #: views.py:159 #, python-format msgid "Error log entries for: %s" -msgstr "Registo (log) erros para: %s" +msgstr "" #: views.py:187 msgid "No setup options available." -msgstr "Nenhuma opção de configuração disponível" +msgstr "" #: views.py:189 msgid "" "No results here means that don't have the required permissions to perform " "administrative task." msgstr "" -"Nenhum resultado aqui significa que não tenha as permissões necessárias para " -"realizar tarefas administrativas." #: views.py:195 msgid "Setup items" @@ -836,11 +692,11 @@ msgstr "Itens de configuração" #: views.py:197 msgid "Here you can configure all aspects of the system." -msgstr "Aqui você pode configurar todos os aspectos do sistema." +msgstr "" #: views.py:212 msgid "These modules are used to do system maintenance." -msgstr "Esses módulos são usados para fazer a manutenção do sistema." +msgstr "" #: views.py:240 msgid "No action selected." 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 051da5214c..de16d15d91 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 c4e4e2402c..dc00a1c612 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 3d772cf0cf..454d91915c 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 459122ebcf..e64e993cb9 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 6f6cfdce78..8b8f8396e7 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/tr_TR/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" 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 547495bc80..1fa50d90b5 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-0400\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" diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po index 95b138f61c..d8e8c43324 100644 --- a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh/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-29 02:15-0400\n" +"POT-Creation-Date: 2019-07-05 01:28-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" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 7d0661c048..cb6167e615 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index 1d5683a989..b3c47e3df7 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 db9d8f3dd4..4181357eb8 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po index 401dd00b91..235f8837db 100644 --- a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/cs/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 d8137d5d83..7e7a34e31a 100644 --- a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da_DK/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 46780383bc..79eb43c694 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po index 5c27a089b3..4ef99eaf7d 100644 --- a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/el/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po index f882dd500f..0700a011c8 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 4b4ebbd525..c871bad23a 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 8f4d474ace..2a33a71f81 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index cdbb485023..85c0fa15c0 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index 3ccb0643b7..eb7ae7cdd7 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index fed985edf7..ecf99b1948 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index a57040bfa9..bc40ffb86b 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po index 7a7544e538..62f2e03da6 100644 --- a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\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" 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 03ffc2a3a5..091f341162 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index 4506b2a814..978366300e 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo index 7d6e1a455fcd7132426d1a38b30a1eac06a34228..25aeb40e335584a3a95aa75ba2a0cf0505b089fa 100644 GIT binary patch delta 273 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 KDimeZ(*FS<#pbjC diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index 724e47f354..9a3e820eac 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,7 +10,7 @@ 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-07-05 01:29-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" @@ -22,50 +22,48 @@ msgstr "" #: apps.py:22 permissions.py:7 settings.py:12 msgid "Converter" -msgstr "Conversor" +msgstr "" #: apps.py:31 models.py:57 msgid "Transformation" -msgstr "Transformação" +msgstr "" #: backends/python.py:175 backends/python.py:181 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "Exceção que determina a contagem de páginas em PDF; %s" +msgstr "" #: backends/python.py:195 #, python-format msgid "Exception determining page count using Pillow; %s" -msgstr "Exceção que determina a contagem de páginas usando Pillow; %s" +msgstr "" #: classes.py:118 msgid "LibreOffice not installed or not found." -msgstr "O LibreOffice não está instalado ou não foi encontrado." +msgstr "" #: classes.py:201 msgid "Not an office file format." -msgstr "Não é um formato de office." +msgstr "" #: dependencies.py:16 msgid "Utility from the poppler-utils package used to inspect PDF files." -msgstr "Utilitário do pacote poppler-utils usado para inspecionar arquivos PDF." +msgstr "" #: dependencies.py:21 msgid "" "Utility from the popper-utils package used to extract pages from PDF files " "into PPM format images." msgstr "" -"Utilitário do pacote popper-utils usado para extrair páginas de arquivos " -"PDF em imagens no formato PPM." #: forms.py:28 #, python-format msgid "\"%s\" not a valid entry." -msgstr "\"%s\" não é uma entrada válida." +msgstr "" #: links.py:36 msgid "Create new transformation" -msgstr "Criar nova transformação" +msgstr "" #: links.py:42 msgid "Delete" @@ -77,19 +75,17 @@ msgstr "Editar" #: links.py:53 models.py:58 msgid "Transformations" -msgstr "Transformações" +msgstr "" #: models.py:37 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." msgstr "" -"Ordem em que as transformações serão executadas. Se não forem alteradas, " -"um valor de pedido automático será atribuído." #: models.py:39 msgid "Order" -msgstr "Ordem" +msgstr "" #: models.py:43 msgid "Name" @@ -100,56 +96,54 @@ msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" msgstr "" -"Digite os argumentos para a transformação como um dicionário YAML. Ie:" -"{\"degrees\": 180}" #: models.py:49 msgid "Arguments" -msgstr "Argumentos" +msgstr "" #: permissions.py:10 msgid "Create new transformations" -msgstr "Criar novas transformações" +msgstr "" #: permissions.py:13 msgid "Delete transformations" -msgstr "Remover transformações" +msgstr "" #: permissions.py:16 msgid "Edit transformations" -msgstr "Editar transformações" +msgstr "" #: permissions.py:19 msgid "View existing transformations" -msgstr "Ver transformações existentes" +msgstr "" #: settings.py:16 msgid "Graphics conversion backend to use." -msgstr "Backend de conversão de gráficos para usar." +msgstr "" #: settings.py:35 msgid "Configuration options for the graphics conversion backend." -msgstr "Opções de configuração para o backend de conversão de gráficos." +msgstr "" #: transformations.py:81 msgid "Crop" -msgstr "Recorte" +msgstr "" #: transformations.py:156 msgid "Flip" -msgstr "Virar" +msgstr "" #: transformations.py:167 msgid "Gaussian blur" -msgstr "Gaussian blur" +msgstr "" #: transformations.py:177 msgid "Line art" -msgstr "Line art" +msgstr "" #: transformations.py:188 msgid "Mirror" -msgstr "Espelho" +msgstr "" #: transformations.py:199 msgid "Resize" @@ -161,19 +155,19 @@ msgstr "Rodar" #: transformations.py:252 msgid "Rotate 90 degrees" -msgstr "Rodar 90 graus" +msgstr "" #: transformations.py:263 msgid "Rotate 180 degrees" -msgstr "Rodar 180 graus" +msgstr "" #: transformations.py:274 msgid "Rotate 270 degrees" -msgstr "Rodar 270 graus" +msgstr "" #: transformations.py:284 msgid "Unsharp masking" -msgstr "Máscara não afiada" +msgstr "" #: transformations.py:300 msgid "Zoom" @@ -181,36 +175,34 @@ msgstr "Zoom" #: validators.py:26 msgid "Enter a valid YAML value." -msgstr "Digite um valor YAML válido." +msgstr "" #: views.py:72 #, python-format msgid "Create new transformation for: %s" -msgstr "Criar nova transformação para: %s" +msgstr "" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Remover transformação \"%(transformation)s\" para: %(content_object)s?" +msgstr "" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Editar transformação \"%(transformation)s\" para: %(content_object)s?" +msgstr "" #: views.py:227 msgid "" "Transformations allow changing the visual appearance of documents without " "making permanent changes to the document file themselves." msgstr "" -"As transformações permitem alterar a aparência visual dos documentos sem " -"fazer alterações permanentes no próprio arquivo do documento." #: views.py:231 msgid "No transformations" -msgstr "Sem transformações" +msgstr "" #: views.py:232 #, python-format msgid "Transformations for: %s" -msgstr "transformações para: %s" +msgstr "" 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 ad82fccd3e..849ae6da19 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:29-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" 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 a6a0e9c0b4..b415b6faf8 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index ea66780f41..12137e6260 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c3b8d185b2..3890e86345 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 22791db4ba..df0413aea1 100644 --- a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/tr_TR/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 035d1bb5fb..d60c2ccca0 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po index b29be47ae8..aed90f1227 100644 --- a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po index 545a447c4d..dce76eead7 100644 --- a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ar/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po index 38db37ff97..61d61f8871 100644 --- a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 09189ac228..d0107840e4 100644 --- a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bs_BA/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po index 547cc60bc4..2019b04e5f 100644 --- a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" 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 33ae204438..e6684b36de 100644 --- a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/da_DK/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 15b290e513..b4738d45ac 100644 --- a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po index b4178f3202..57df27f259 100644 --- a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/el/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po index 6f75f71cb0..2a108e36b5 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 8e517375c7..2036ccb3f1 100644 --- a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/es/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po index d00761f889..8599f56958 100644 --- a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fa/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po index fe2820dec6..bfd77afde6 100644 --- a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po index c8bf570139..6dbb6be955 100644 --- a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/hu/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po index 6b1cf8437c..79812bae39 100644 --- a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/id/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po index 35c4762e52..bbdbfc9ffb 100644 --- a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/it/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po index a8e4fe26a3..2b91b83bf7 100644 --- a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c672852925..32d3e82f7b 100644 --- a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/nl_NL/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po index 6379aff1ff..d9d7b50978 100644 --- a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.mo index 3bed6c8bbf48bc903a14adebdcdc1c77bc1290f7..d4d488daa284ac56b8f8c545ea655d437cd932a0 100644 GIT binary patch delta 65 wcmeyz{Ex}vo)F7a1|VPrVi_P-0b*t#)&XJ=umEBgprj>`2C0F8jlFJ+01$=-ZvX%Q delta 195 zcmeyz^pCmzo)F7a1|VPoVi_Q|0b*7ljsap2C;(zEAT9)AkeV7G<^keHAa-G7VCVzV z!a#f($mRsn&w(^Z{v(hEA_gWP1_6*>W)Q, YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: apps.py:14 msgid "Dashboards" -msgstr "Paineis de controle" +msgstr "" #: dashboards.py:7 msgid "Main" -msgstr "Principal" +msgstr "" #: templates/dashboards/numeric_widget.html:27 msgid "View details" -msgstr "Ver detalhes" +msgstr "" 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 457b73a636..3aab11bed3 100644 --- a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 4fec0edfe4..33b5f9d1ce 100644 --- a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ro_RO/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po index 9ddec07492..e5eb3f0d20 100644 --- a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 75d4679536..6781b920dc 100644 --- a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/sl_SI/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 96d2532844..decd749b32 100644 --- a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" "MIME-Version: 1.0\n" 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 0f59501c38..9afe5775d1 100644 --- a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/vi_VN/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po index b902238212..cef3702d01 100644 --- a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po index 36c077d9e4..31e3171954 100644 --- a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po index 48fa5d3d37..79f42277aa 100644 --- a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 9483e5213b..3fed26f907 100644 --- a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po index aadf6bfca0..a52cb8b707 100644 --- a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/cs/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 2ccfc6fa36..ee3fd80676 100644 --- a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/da_DK/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 982158c096..d53dc95cdd 100644 --- a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po index edf2a1cdda..4f82d402cc 100644 --- a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/el/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po index 4b350de685..3504a45b28 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 b5f16a989a..8df66d4193 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po index ef04f4a1dc..ea5ffd70c0 100644 --- a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po index e824bdf1c2..f534ad466c 100644 --- a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po index c2c195185b..fd64f85d16 100644 --- a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po index 382620f0ec..118e764713 100644 --- a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po index a64c8455e5..ae9638ba4e 100644 --- a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po index c3efcb316e..d3286c2ac2 100644 --- a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 fa9bc33475..51cde2acb5 100644 --- a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po index 2e54876f62..e344434581 100644 --- a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.mo index 820a6959141009a0ca943f3dbab509a073b34a76..9890f33b7012ed4310a5ddfe4b9b217535c7be02 100644 GIT binary patch delta 319 zcmXYrs}9026o$`WToMuln%CGHkYLDyLSY7J!jf%W)=lpn2y+C3n8VEA5EH-yAOVBI zV2}v@)9oZ*|6b15Hn+~L^f53qLUq9q%s~%q0oMia`U*PW2HM~bTHpmt@UHWNyV~1ovN5V_#P)(?)4~|H_;Dm&)tBDay{Sa^P1^i(y?&XirNT_AxhOsLH z%wxy(6pbU9go-B4LU?35z93r$f@UI8+%}DhXMbZ@m0ITIUTW1_33iiEDhS%*K?JMB I*D^Q$0Xq&nCIA2c literal 6823 zcmcJTU5q4E700g%q62>62grwBkd<9`yJvUUWtUkNnBAS-4D8HK*ntEzS!=p(cNbe- zx2cbwZQ=uBlwc&jK%!zy7Gek_3lcO2ABd(QF;T<^3^7Kc7{4A&G(4IRf9KY%>h4`O z@rBCN{Hv;OoqO&%|8wrY`;CjwdsJ~8;Jku!=X;g93p{cj|2TehzET&1&w=j)Ujp9` z{u1O*z3TCI;K#WCgTMb5xWxTi;N9RpUiu*T9q>Z%aquJHGvGzwi{K~0UxD|5e+EAX ze(3_GwuASBV*fc%-XDSdsaO5|>!8^Ci+}zWsJZ_y_;K)x50vk12Os4AMsNds3H-j? z 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 diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index 289fe16302..71579b0714 100644 --- a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po @@ -2,18 +2,18 @@ # 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" @@ -25,7 +25,7 @@ msgstr "" #: apps.py:27 links.py:43 permissions.py:7 msgid "Dependencies" -msgstr "Dependências" +msgstr "" #: apps.py:33 apps.py:68 apps.py:76 msgid "Label" @@ -33,7 +33,7 @@ msgstr "Nome" #: apps.py:36 msgid "Internal name" -msgstr "Nome interno" +msgstr "" #: apps.py:39 apps.py:71 apps.py:80 msgid "Description" @@ -41,15 +41,15 @@ msgstr "Descrição" #: apps.py:43 classes.py:172 msgid "Type" -msgstr "Tipo" +msgstr "" #: apps.py:47 classes.py:174 msgid "Other data" -msgstr "Outros dados" +msgstr "" #: apps.py:51 msgid "Declared by" -msgstr "Declarado por" +msgstr "" #: apps.py:55 classes.py:172 msgid "Version" @@ -57,47 +57,41 @@ msgstr "Versão" #: apps.py:59 classes.py:173 classes.py:809 msgid "Environment" -msgstr "Ambiente" +msgstr "" #: apps.py:63 classes.py:174 msgid "Check" -msgstr "Verifica" +msgstr "" #: classes.py:65 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -"Ambiente usado para construir pacotes redistribuíveis do software. " -"Utilizadores finais podem ignorar dependências ausentes neste ambiente." #: classes.py:68 msgid "Build" -msgstr "Build" +msgstr "" #: classes.py:72 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -"Ambiente usado para desenvolvedores fazerem alterações de código. Utilizadores " -"finais podem ignorar dependências ausentes neste ambiente." #: classes.py:74 msgid "Development" -msgstr "Desenvolvimento" +msgstr "" #: classes.py:78 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -"Ambiente normal para utilizadores finais. As dependências ausentes neste " -"ambiente resultarão em problemas e erros durante o uso normal." #: classes.py:80 msgid "Production" -msgstr "Produção" +msgstr "" #: classes.py:84 msgid "" @@ -105,12 +99,10 @@ msgid "" "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -"Ambiente usado para executar o teste para verificar a funcionalidade do " -"código. Dependências neste ambiente não são necessárias para uso normal de produção." #: classes.py:87 msgid "Testing" -msgstr "Testes" +msgstr "" #: classes.py:172 msgid "Name" @@ -118,37 +110,37 @@ msgstr "Nome" #: classes.py:173 msgid "App" -msgstr "App" +msgstr "" #: classes.py:274 msgid "Need to specify at least one: app_label or module." -msgstr "Precisa especificar pelo menos um: app_label ou modulo." +msgstr "" #: classes.py:279 #, python-format msgid "Dependency \"%s\" already registered." -msgstr "Dependência \"%s\" já registrada." +msgstr "" #: classes.py:305 #, python-format msgid "Installing package: %s... " -msgstr "Instalando o pacote:%s ..." +msgstr "" #: classes.py:310 msgid "Already installed." -msgstr "Já instalado." +msgstr "" #: classes.py:313 classes.py:318 classes.py:322 msgid "Complete." -msgstr "Completo." +msgstr "" #: classes.py:348 msgid "Installed and correct version" -msgstr "Versão instalada e correta" +msgstr "" #: classes.py:350 msgid "Missing or incorrect version" -msgstr "Versão ausente ou incorreta" +msgstr "" #: classes.py:379 msgid "None" @@ -156,43 +148,41 @@ msgstr "Nenhum" #: classes.py:388 msgid "Not specified" -msgstr "Não especificado" +msgstr "" #: classes.py:405 msgid "Patching files... " -msgstr "Corrigindo ficheiros ..." +msgstr "" #: classes.py:440 msgid "Executables that are called directly by the code." -msgstr "Executáveis que são chamados diretamente pelo código." +msgstr "" #: classes.py:442 msgid "Binary" -msgstr "Binário" +msgstr "" #: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -"Bibliotecas Javascript baixaram o registro do NPM e usaram para funcionalidade " -"front-end." #: classes.py:462 -msgid "Javascript" -msgstr "Javascript" +msgid "JavaScript" +msgstr "" #: classes.py:496 classes.py:729 msgid "Downloading... " -msgstr "Baixar..." +msgstr "" #: classes.py:499 msgid "Verifying... " -msgstr "Verificando... " +msgstr "" #: classes.py:502 classes.py:732 msgid "Extracting... " -msgstr "Extraindo ..." +msgstr "" #: classes.py:681 msgid "Python packages downloaded from PyPI." @@ -200,39 +190,37 @@ msgstr "" #: classes.py:683 msgid "Python" -msgstr "Pacotes Python baixados do PyPI." +msgstr "" #: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." -msgstr "Fontes baixadas de fonts.googleapis.com." +msgstr "" #: classes.py:712 msgid "Google font" -msgstr "Fontest Google" +msgstr "" #: classes.py:791 msgid "Declared in app" -msgstr "Declarado no aplicativo" +msgstr "" #: classes.py:792 -msgid "Show depedencies by the app that declared them." -msgstr "Mostrar dependências pelo aplicativo que as declarou." +msgid "Show dependencies by the app that declared them." +msgstr "" #: classes.py:796 msgid "Class" -msgstr "Classe" +msgstr "" #: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -"Mostre as diferentes classes de dependências. As classes são geralmente " -"divididas por linguagem ou pelos tipos de arquivo da dependência." #: classes.py:802 msgid "State" -msgstr "Estado" +msgstr "" #: classes.py:803 msgid "" @@ -240,21 +228,16 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -"Mostrar os diferentes estados das dependências. True significa que as " -"dependências estão instaladas e são de uma versão correta. False " -"significa que as depedências estão faltando ou que uma versão incorreta está presente." #: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -"Dependências necessárias para um ambiente podem não ser necessárias para outro." -"Exemplo de ambientes: produção, desenvolvimento." #: links.py:11 views.py:35 msgid "Check for updates" -msgstr "Verificar atualizações" +msgstr "" #: links.py:17 msgid "Groups" @@ -262,7 +245,7 @@ msgstr "Grupos" #: links.py:25 msgid "Entries" -msgstr "Entradas" +msgstr "" #: links.py:33 msgid "Details" @@ -270,71 +253,68 @@ msgstr "Detalhes" #: links.py:38 msgid "Dependencies licenses" -msgstr "Licenças de dependências" +msgstr "" #: management/commands/generaterequirements.py:16 msgid "" "Comma separated names of dependencies to exclude from the list generated." msgstr "" -"Separados por vírgula nomes de dependências para excluir da lista gerada." #: management/commands/generaterequirements.py:22 msgid "" "Comma separated names of dependencies to show in the list while excluding " "every other one." msgstr "" -"Nomes separados por vírgulas de dependências para mostrar na lista, " -"excluindo todos os outros." #: management/commands/installjavascript.py:15 msgid "Process a specific app." -msgstr "Processar um aplicativo específico." +msgstr "" #: management/commands/installjavascript.py:19 msgid "Force installation even if already installed." -msgstr "Forcar a instalação, mesmo se já estiver instalado." +msgstr "" #: permissions.py:10 msgid "View dependencies" -msgstr "Ver dependências" +msgstr "" #: views.py:23 #, python-format msgid "The version you are using is outdated. The latest version is %s" -msgstr "A versão que você está usando está desatualizada. A última versão é %s" +msgstr "" #: views.py:28 msgid "It is not possible to determine the latest version available." -msgstr "Não é possível determinar a versão mais recente disponível." +msgstr "" #: views.py:32 msgid "Your version is up-to-date." -msgstr "Sua versão está atualizada." +msgstr "" #: views.py:49 #, python-format msgid "Entries for dependency group: %s" -msgstr "Entradas para o grupo de dependência: %s" +msgstr "" #: views.py:62 views.py:107 #, python-format msgid "Group %s not found." -msgstr "Grupo %s não encontrado" +msgstr "" #: views.py:75 msgid "Dependency groups" -msgstr "Grupos de dependência" +msgstr "" #: views.py:95 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" -msgstr "Grupo de Dependência e Entrada: %(group)s, %(entry)s" +msgstr "" #: views.py:119 #, python-format msgid "Entry %s not found." -msgstr "Entrada %s não encontrada" +msgstr "" #: views.py:137 msgid "Other packages licenses" -msgstr "Outras licenças de pacotes" +msgstr "" 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 dec46083d6..e8770de445 100644 --- a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c1bb4288c0..cf04e64ab4 100644 --- a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po index b073629e32..651b0200e6 100644 --- a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 d37074267f..bd80a51bc3 100644 --- a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/sl_SI/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 7427e4125e..73cfebf060 100644 --- a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c7af47bac8..1c64e5c336 100644 --- a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po index 2513c0545c..3352344b20 100644 --- a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 d481cc5cef..3f20d697ca 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 336a54dad7..e4adcf8782 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 210caeccfa..70ba28e0f3 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 3d8096c95a..0b0d082935 100644 --- a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/cs/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 a8b6a23fb0..36906d0aa9 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 26bcd9f478..59542417e6 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 @@ -13,7 +13,7 @@ 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-07-05 01:29-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" 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 1e47f63179..b492d76038 100644 --- a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/el/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 6c27e35c2a..6d032e0b1f 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 3a5d75f796..79879e6fc3 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 b3896e0ac5..246609cdf6 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 b7fec258ba..21858233fc 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:29-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" 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 97daa3513c..2badd61f35 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 eca448e13a..46d14a7fc1 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 a96b34ff8a..05e48daab6 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 4247ebe8db..618b01e22e 100644 --- a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 1ce1f5f7a9..1821f0a5a6 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 e43033fe79..b0bcdd3014 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.mo index b3fa50c22622bfbdb8d28b34fea5294cab210c05..5d77811aa247ef24fb72fcf23ed0f3f6651835f3 100644 GIT binary patch delta 890 zcmX}qF=!J}7{Ku_ZJIR3Hfh@0YOACQN*s!U6(=E@K%-O|Ed>RIGd`2U%L$jHT9+UW zDu`5`3OWgPDP4pJf=dS7oLo98P7b;`I0^p0=Javz{odWXd*AooyZgDXBkeDl=rf`0 zrA||$5s@7JL@jH5BE$Fu`|%aVa2=DliE(^~r?HENv7eXKS=9M1;vn8beg6^WMcVR| z&JG@I;S_#D4e$pwa5O4%3`dbm=4o_%0n@k?YLHK4B^+VPg7~sQ zr^;$OIL^Qnv+G1hQ8S)HP2^;FzkrvyU&iD37U%E>9>E!wr#o{Vb){EmN_ZW0o;P?1 zyO<=te5W&lzp#Jh@0XNZNYtx@vu47d1oGvWL2RyVu)h?dqh7@R=s8MFVTmz?zhnG7Fkrn<@ry+7q#%QoDq?=)M1nU%tYycCRQnkFQB!>l&wHyzh&*n_bx zI~kw1)p*K2jAzErn$>KnAWGfwovNuDziIamo=Esc7F$<6w_<-M%F!hg)H^}45wYo^ zi37wadT!nIoj{7WD_+YDvXz>%VtRqRnrU<%4`m|u<8V3F8?pIRuCG+E8>wkKlP;#t e8Nb%5%i@Rk8pE+`nP5zV+>~V#WSz#p`ThcGVRm!? literal 5255 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, 2012 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" @@ -21,7 +21,7 @@ msgstr "" #: apps.py:33 msgid "Django GPG" -msgstr "Django GPG" +msgstr "" #: apps.py:48 apps.py:51 forms.py:17 msgid "Key ID" @@ -29,27 +29,27 @@ msgstr "ID da chave" #: apps.py:52 forms.py:34 models.py:55 msgid "Type" -msgstr "Tipo" +msgstr "" #: apps.py:54 forms.py:23 models.py:36 msgid "Creation date" -msgstr "Data de criação" +msgstr "" #: apps.py:57 msgid "No expiration" -msgstr "Sem prazo de validade" +msgstr "" #: apps.py:58 forms.py:27 models.py:40 msgid "Expiration date" -msgstr "Data de validade" +msgstr "" #: apps.py:60 forms.py:32 models.py:47 msgid "Length" -msgstr "Comprimento" +msgstr "" #: apps.py:63 forms.py:19 models.py:52 msgid "User ID" -msgstr "ID Utilizador" +msgstr "" #: forms.py:28 msgid "None" @@ -57,11 +57,11 @@ msgstr "Nenhum" #: forms.py:31 models.py:44 msgid "Fingerprint" -msgstr "Impressão digital" +msgstr "" #: forms.py:33 models.py:50 msgid "Algorithm" -msgstr "Algoritmo" +msgstr "" #: forms.py:47 msgid "Term" @@ -89,7 +89,7 @@ msgstr "Consultar servidores de chaves" #: links.py:32 msgid "Import" -msgstr "Importar" +msgstr "" #: links.py:37 permissions.py:7 msgid "Key management" @@ -97,15 +97,15 @@ msgstr "Gestão de chaves" #: links.py:41 msgid "Upload key" -msgstr "Enviar chave" +msgstr "" #: links.py:44 views.py:176 msgid "Private keys" -msgstr "Chaves privadas" +msgstr "" #: links.py:48 views.py:200 msgid "Public keys" -msgstr "Chaves públicas" +msgstr "" #: literals.py:6 literals.py:14 msgid "Public" @@ -153,27 +153,27 @@ msgstr "O documento está assinado com uma assinatura válida." #: models.py:32 msgid "ASCII armored version of the key." -msgstr "Versão blindada ASCII da chave." +msgstr "" #: models.py:33 msgid "Key data" -msgstr "Dados da chave" +msgstr "" #: models.py:61 msgid "Key" -msgstr "Chave" +msgstr "" #: models.py:62 msgid "Keys" -msgstr "Chaves" +msgstr "" #: models.py:74 msgid "Invalid key data" -msgstr "Dados chave inválidos" +msgstr "" #: models.py:77 msgid "Key already exists." -msgstr "Chave já existe" +msgstr "" #: permissions.py:10 msgid "Delete keys" @@ -189,11 +189,11 @@ msgstr "Importar chaves de servidores de chaves" #: permissions.py:19 msgid "Use keys to sign content" -msgstr "Use as chaves para assinar conteúdo" +msgstr "" #: permissions.py:22 msgid "Upload keys" -msgstr "Enviar chaves" +msgstr "" #: permissions.py:25 msgid "View keys" @@ -209,26 +209,26 @@ msgstr "Diretório usado para guardar as chaves e os ficheiros de configuração #: settings.py:22 msgid "Path to the GPG binary." -msgstr "Caminho para o binário GPG" +msgstr "" #: settings.py:26 msgid "Keyserver used to query for keys." -msgstr "Keyserver usado para consultar chaves." +msgstr "" #: views.py:35 #, python-format msgid "Delete key: %s" -msgstr "Apagar chave: %s" +msgstr "" #: views.py:51 #, python-format msgid "Details for key: %s" -msgstr "Detalhes de chave: %s" +msgstr "" #: views.py:71 #, python-format msgid "Import key ID: %s?" -msgstr "Importar chave com o ID: %s?" +msgstr "" #: views.py:72 msgid "Import key" @@ -237,28 +237,26 @@ msgstr "Importar chave" #: views.py:81 #, python-format msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "Não foi possível importar a chave: %(key_id)s; %(error)s" +msgstr "" #: views.py:89 #, python-format msgid "Successfully received key: %(key_id)s" -msgstr "Chave recebida com sucesso: %(key_id)s" +msgstr "" #: views.py:106 msgid "" "Use names, last names, key ids or emails to search public keys to import " "from the keyserver." msgstr "" -"Use nomes, sobrenomes, ids de chaves ou e-mails para pesquisar chaves " -"públicas para importar do servidor de chaves." #: views.py:110 msgid "No results returned" -msgstr "Nenhum resultado retornado" +msgstr "" #: views.py:112 msgid "Key query results" -msgstr "Resultados da consulta por chaves" +msgstr "" #: views.py:132 msgid "Search" @@ -270,19 +268,17 @@ msgstr "Consultar servidor de chaves" #: views.py:153 msgid "Upload new key" -msgstr "Carregar nova chave" +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." msgstr "" -"As chaves privadas são usadas para documentos assinados. As chaves privadas só podem " -"ser carregadas pelo utilizador. A exibição para fazer upload de chaves privadas e públicas é a mesma." #: views.py:174 msgid "There no private keys" -msgstr "Não há chaves privadas" +msgstr "" #: views.py:192 msgid "" @@ -290,10 +286,7 @@ msgid "" " by the user or downloaded from keyservers. The view to upload private and " "public keys is the same." msgstr "" -"As chaves públicas são usadas para verificar documentos assinados. As chaves " -"públicas podem ser carregadas pelo usuário ou baixadas dos servidores de chaves. " -"A exibição para fazer upload de chaves privadas e públicas é a mesma." #: views.py:198 msgid "There no public keys" -msgstr "Não há chaves públicas" +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 d7e21e4f13..f71db61189 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 @@ -11,7 +11,7 @@ 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-07-05 01:29-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" 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 ca51ec251a..76800bf956 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 446a835b09..cb341e6202 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 a75d83028f..9bbdb29116 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 2d63aa0c7a..ea68b306ad 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 c7ba9712da..eec40bd459 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 00cdd6af86..48498d5447 100644 --- a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 bf527c5649..41b9856c21 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 69723bf447..db967c326f 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 9ef8b85b38..267b252607 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 809bc7a6b0..a0311076c6 100644 --- a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/cs/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 9393207ec5..5b019c9535 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 e1d068b5d6..9e210a71b6 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 @@ -12,7 +12,7 @@ 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-07-05 01:29-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" 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 9d0622097f..b637ddaddc 100644 --- a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/el/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c0bb58fd84..07ab818bf6 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 cff34d9cd9..c790d75897 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c184dd1f01..9d90ee1342 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 44965da666..e4b2e670d6 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 795b58a6b4..968a236b2e 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 63a3e8dbb8..97359391fd 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 742567bc1b..315613e7ab 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 ec5f00f98d..a5650bcc91 100644 --- a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 19f6df0e5b..d3ee8064b9 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 6301ed0be2..3a07372a42 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.mo index 69d8e9271ff029558c0b3cb5d638e5815693cf1a..ce224b07f9c98973629e7018835d6fcd04272795 100644 GIT binary patch delta 342 zcmYk%zfQtX6vy$?mRkO303iedK_@p87Z@0rz+IUfjdW@Wfa0bE? zu=@-QzKDKLW#A;gesY@Lb9$G>oj2Q`XO==0NQ)$-OumU$$r5Q|89ltlEOxMheLTT? zEaC%ZFu*g65B=Mrf5#6pCs!gfsW|`3dw9x$Tdd;u92DP zMf5$bMR0N()L178OFH52ezj1TMaH{dype*j+x zk3ri1dp-WM<_Sm|{sS+7=T0&9Ik*O%2EPW$egwV;)M$6yPbfak$)K}tETp++%MBTY@C^B~K|)7W0Z2ex``bRNY> z@ld;nPQEB_NC!h|{asK#UqvTf7C<&29XS}r1*ft-G#<;E}xMdT!l?5B5MU=DBb57czFi-6VJb z0q_v1tmd(x%X8D~!@6%qWIHCYcS>`kb(E;nh~} zZm&BJb-mqb-PXCoRRn`cfk5bH!Xgza-{kQ~7%Sb@?%+;vW4?|&?n@JN^H?V;A4dGf zo^mt25ieY;pO!|X!5wWf8}YpGL%VftlUJWxS8~3##n-QHw%Dyi#mJ;EbW>0=eS{FW zm=_dMUR6{xNmbQ+`^uUPcp;3Kl~=vdD4d<^18o;Q_#(qv!AE#pc#Q{2B!YEQl_`i} zJ2KM;a!FME)DGjcR7(?8#ib+M=|T+4C8rlvL*iT|Y7efTFmFhTdeRE2#g!xMl8;5_ zn2~eumfPvE_SJ~^{Tw|4UpL5(Lu#rFCCFdtRI0v&Cp_Oa@1_XY@1FjGe^!|H=|{!- pf}Q?^gR6=~KB+>N?|5Fh%XZ5?B}Jp@qs44mwmWmqP^`;y{{w&(Cfxu4 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 5c33e1e9c4..f148a75d08 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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-07-05 01:29-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" @@ -19,7 +19,7 @@ msgstr "" #: apps.py:39 events.py:8 msgid "Document comments" -msgstr "Comentários do documento" +msgstr "" #: apps.py:84 apps.py:88 links.py:33 models.py:45 permissions.py:7 msgid "Comments" @@ -27,15 +27,15 @@ msgstr "Comentários" #: events.py:12 msgid "Document comment created" -msgstr "Comentário do documento criado" +msgstr "" #: events.py:15 msgid "Document comment deleted" -msgstr "Comentário do documento removido" +msgstr "" #: events.py:18 msgid "Document comment edited" -msgstr "Comentário do documento editado" +msgstr "" #: links.py:18 msgid "Add comment" @@ -51,7 +51,7 @@ msgstr "Editar" #: models.py:28 msgid "Document" -msgstr "Documento" +msgstr "" #: models.py:32 models.py:68 msgid "User" @@ -64,7 +64,7 @@ msgstr "Comentário" #: models.py:38 msgid "Date time submitted" -msgstr "Data da hora enviada" +msgstr "" #: permissions.py:10 msgid "Create new comments" @@ -90,31 +90,29 @@ msgstr "Adicionar comentário ao documento: %s" #: views.py:70 #, python-format msgid "Delete comment: %s?" -msgstr "Remover comentário: %s?" +msgstr "" #: views.py:92 #, python-format msgid "Details for comment: %s?" -msgstr "Detalhes comentário: %s?" +msgstr "" #: views.py:110 #, python-format msgid "Edit comment: %s?" -msgstr "Editar comentário: %s?" +msgstr "" #: views.py:135 msgid "" "Document comments are timestamped text entries from users. They are great " "for collaboration." msgstr "" -"Comentários de documentos são entradas de texto com data e hora dos utilizadores. " -"Eles são ótimos para colaboração." #: views.py:138 msgid "There are no comments" -msgstr "Não há comentários" +msgstr "" #: views.py:140 #, python-format msgid "Comments for document: %s" -msgstr "Comentários para documento: %s" +msgstr "" 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 b9df4111f8..0bc03df478 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 da4ffe7707..b924d02a99 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 5101bbc16a..2e1c0020e6 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 8d0ab87470..99566c3702 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 02f1d272f3..8947849d51 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 e60b676ad7..3002f6a9da 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 7a1ed46df8..113336a01d 100644 --- a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 937efc00bd..939f1d0072 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 8740bb25dc..b0bf600396 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 0669cdb5e1..e039d770aa 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 dfc9bc3728..f3d4217dd6 100644 --- a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/cs/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 ef6d99b279..156bb9ceb9 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 86506bb192..b9ad973249 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 @@ -14,7 +14,7 @@ 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-07-05 01:29-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" 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 4077e88f6d..f23fa002ba 100644 --- a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/el/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 ef41269a60..a3aec1300f 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 aa59be1fa5..9b7854283b 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 a3db4b0018..b005453804 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c46a4dca51..d01909eb0e 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ 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-07-05 01:29-0400\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" 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 cfca730b13..d970adceb9 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 3085ae9a92..dcb1449f7a 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 e9e305a379..94e5720266 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 f77e027631..01c37ff752 100644 --- a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\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" 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 bc9c1bd356..e967996268 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 @@ -10,7 +10,7 @@ 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-07-05 01:29-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" 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 cfdc2fa9ce..9069443854 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.mo index 924a2c536e5f6bc5b3ce54f33b2d0fea5ebb5053..7cdbf62bb050058e06ca4f6a372986846e674862 100644 GIT binary patch delta 649 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 Ia;+lsKOPpfTL1t6 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 4e96543d0b..f8482a772c 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,7 +9,7 @@ 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-07-05 01:29-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" @@ -25,19 +25,19 @@ msgstr "Nenhum" #: admin.py:26 links.py:79 models.py:52 msgid "Document types" -msgstr "Tipos de documentos" +msgstr "" #: apps.py:55 events.py:8 msgid "Document indexing" -msgstr "Indexação de documentos" +msgstr "" #: apps.py:118 msgid "Total levels" -msgstr "Níveis totais" +msgstr "" #: apps.py:126 msgid "Total documents" -msgstr "Total de documentos" +msgstr "" #: apps.py:131 apps.py:143 apps.py:162 msgid "Level" @@ -45,7 +45,7 @@ msgstr "" #: apps.py:148 apps.py:167 msgid "Levels" -msgstr "Níveis" +msgstr "" #: apps.py:156 apps.py:174 models.py:358 msgid "Documents" @@ -53,23 +53,23 @@ msgstr "Documentos" #: events.py:12 msgid "Index created" -msgstr "Índice criado" +msgstr "" #: events.py:15 msgid "Index edited" -msgstr "Índice editado" +msgstr "" #: forms.py:19 msgid "Index templates to be queued for rebuilding." -msgstr "Modelos de índice a serem enfileirados para reconstrução." +msgstr "" #: forms.py:20 links.py:30 msgid "Index templates" -msgstr "Modelos de índice" +msgstr "" #: handlers.py:20 msgid "Creation date" -msgstr "Data de criação" +msgstr "" #: links.py:24 links.py:39 links.py:59 links.py:63 models.py:60 views.py:149 #: views.py:292 @@ -82,11 +82,11 @@ msgstr "Exclui e cria a partir do zero todos os índices de documentos." #: links.py:50 views.py:415 msgid "Rebuild indexes" -msgstr "Reconstruir índices" +msgstr "" #: links.py:67 views.py:87 msgid "Create index" -msgstr "Criar índice" +msgstr "" #: links.py:74 links.py:104 msgid "Delete" @@ -98,11 +98,11 @@ msgstr "Editar" #: links.py:92 msgid "Tree template" -msgstr "Modelo de árvore" +msgstr "" #: links.py:98 msgid "New child node" -msgstr "Novo nó filho" +msgstr "" #: models.py:36 msgid "Label" @@ -110,7 +110,7 @@ msgstr "Nome" #: models.py:40 msgid "This value will be used by other apps to reference this index." -msgstr "Esse valor será usado por outros aplicativos para fazer referência a esse índice." +msgstr "" #: models.py:41 msgid "Slug" @@ -123,30 +123,29 @@ msgstr "Faz com que este índice seja visível e atualizado quando os dados do d #: models.py:49 models.py:235 msgid "Enabled" -msgstr "Incluido" +msgstr "" #: models.py:59 models.py:219 msgid "Index" -msgstr "índice" +msgstr "" #: models.py:191 msgid "Index instance" -msgstr "Indice da instância" +msgstr "index instance" #: models.py:192 msgid "Index instances" -msgstr "Indice da instâncias" +msgstr "" #: models.py:223 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" -msgstr "Digite um modelo para visualizar. Use a linguagem de templates padrão do Django" -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" #: models.py:227 msgid "Indexing expression" -msgstr "Expressão de Indexação" +msgstr "" #: models.py:232 msgid "Causes this node to be visible and updated when document data changes." @@ -160,30 +159,30 @@ msgstr "Escolha esta opção para que este nó atue como contentor para document #: models.py:243 msgid "Link documents" -msgstr "Vincular documentos" +msgstr "" #: models.py:247 msgid "Index node template" -msgstr "Modelo de nó de índice" +msgstr "" #: models.py:248 msgid "Indexes node template" -msgstr "Modelo de nó de índices" +msgstr "" #: models.py:252 msgid "Root" -msgstr "Raiz" +msgstr "" #: models.py:308 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Erro ao indexar documento: %(document)s; expressão: %(expression)s; %(exception)s" +msgstr "" #: models.py:351 msgid "Index template node" -msgstr "Nó do modelo de índice" +msgstr "" #: models.py:354 msgid "Value" @@ -191,19 +190,19 @@ msgstr "Valor" #: models.py:364 msgid "Index node instance" -msgstr "Instância no nó índice" +msgstr "" #: models.py:365 msgid "Indexes node instances" -msgstr "Instâncias no nó índice" +msgstr "" #: models.py:479 msgid "Document index node instance" -msgstr "Documentos para instância nó de índice" +msgstr "" #: models.py:480 msgid "Document indexes node instances" -msgstr "Documentos para instâncias nós de índices" +msgstr "" #: permissions.py:7 queues.py:9 msgid "Indexing" @@ -223,7 +222,7 @@ msgstr "Eliminar índices de documento" #: permissions.py:19 msgid "View document index instances" -msgstr "Visualizar instâncias de índice de documentos" +msgstr "" #: permissions.py:23 msgid "View document indexes" @@ -235,27 +234,27 @@ msgstr "Reconstruir índices de documento" #: queues.py:12 msgid "Delete empty index nodes" -msgstr "Excluir nós de índice vazios" +msgstr "" #: queues.py:16 msgid "Remove document" -msgstr "Remover documento" +msgstr "" #: queues.py:20 msgid "Index document" -msgstr "Indexar documento" +msgstr "" #: queues.py:24 msgid "Rebuild index" -msgstr "reconstruir índice" +msgstr "" #: views.py:46 msgid "Available indexes" -msgstr "Índices disponíveis" +msgstr "" #: views.py:47 msgid "Indexes linked" -msgstr "Índices vinculados" +msgstr "" #: views.py:77 msgid "" @@ -263,23 +262,21 @@ msgid "" "updated. Events of the documents of this type will trigger updates in the " "linked indexes." msgstr "" -"Documentos desse tipo aparecerão nos índices vinculados quando eles forem " -"atualizados. Os eventos dos documentos desse tipo acionarão atualizações nos índices vinculados." #: views.py:81 #, python-format msgid "Indexes linked to document type: %s" -msgstr "Índices vinculados ao tipo de documento: %s" +msgstr "" #: views.py:109 #, python-format msgid "Delete the index: %s?" -msgstr "Remover o índice: %s?" +msgstr "" #: views.py:124 #, python-format msgid "Edit index: %s" -msgstr "Editar o índice: %s?" +msgstr "" #: views.py:143 msgid "" @@ -287,21 +284,18 @@ msgid "" "template whose markers are replaced with direct properties of documents like" " label or description, or that of extended properties like metadata." msgstr "" -"Os índices agrupam o documento automaticamente em níveis. Os arquivos do " -"indice são definidos usando um modelo cujos marcadores são substituídos por " -"propriedades diretas de documentos como rótulo ou descrição, ou de propriedades estendidas como metadados." #: views.py:148 msgid "There are no indexes." -msgstr "Não existem índices" +msgstr "" #: views.py:161 msgid "Available document types" -msgstr "Tipos de documentos disponíveis" +msgstr "" #: views.py:162 msgid "Document types linked" -msgstr "Tipos de documentos vinculado" +msgstr "" #: views.py:172 msgid "" @@ -309,77 +303,70 @@ msgid "" "built. Only the events of the documents of the types select will trigger " "updates in the index." msgstr "" -"Somente os documentos dos tipos selecionados serão mostrados no índice quando " -"criados. Somente os eventos dos documentos dos tipos selecionados ativarão as " -"atualizações no índice." #: views.py:176 #, python-format msgid "Document types linked to index: %s" -msgstr "Tipos de documentos vinculados ao índice: %s" +msgstr "" #: views.py:188 #, python-format msgid "Tree template nodes for index: %s" -msgstr "Nós de modelo de árvore para índice: %s" +msgstr "" #: views.py:218 #, python-format msgid "Create child node of: %s" -msgstr "Criar nó filho de: %s" +msgstr "" #: views.py:241 #, python-format msgid "Delete the index template node: %s?" -msgstr "Remover o nó do modelo de índice: %s" +msgstr "" #: views.py:264 #, python-format msgid "Edit the index template node: %s?" -msgstr "Editar o nó do modelo de índice: %s" +msgstr "" #: views.py:287 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 estão definidos corretamente." #: views.py:291 msgid "There are no index instances available." -msgstr "Não há instâncias de índice disponíveis." +msgstr "" #: views.py:336 #, python-format msgid "Navigation: %s" -msgstr "Navegação: %s" +msgstr "" #: views.py:341 #, python-format msgid "Contents for index: %s" -msgstr "Conteúdo para índice: %s" +msgstr "" #: views.py:394 msgid "" "Assign the document type of this document to an index to have it appear in " "instances of those indexes organization units. " msgstr "" -"Atribuir o tipo de documento deste documento a um índice para que ele apareça " -"em instâncias daquelas unidades de organização de índices." #: views.py:399 msgid "This document is not in any index" -msgstr "Este documento não está em nenhum índice" +msgstr "" #: views.py:403 #, python-format msgid "Indexes nodes containing document: %s" -msgstr "Nós de índices contendo documento: %s" +msgstr "" #: views.py:429 #, python-format msgid "%(count)d index queued for rebuild." msgid_plural "%(count)d indexes queued for rebuild." -msgstr[0] "%(count)d índice de fila de espera para reconstruir" -msgstr[1] "%(count)d índices de fila de espera para reconstruir" +msgstr[0] "" +msgstr[1] "" 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 a2e126fbec..7ebc19cd8b 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 @@ -11,7 +11,7 @@ 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-07-05 01:29-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" 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 e39d4914c1..894e4d27f1 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 cc269a95c4..8f3e20948d 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 1484baa6a5..3e8a96dec0 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 ee5ed6f00e..e2e97da731 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 a690f9565b..de7108f777 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 b72e1586a9..6371a73ac3 100644 --- a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 267690e993..46d113c702 100644 --- a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 dbc4288c06..d8958a83a6 100644 --- a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bg/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 be26a019a5..ba895a1c02 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 de2e737408..4c6fb6f67e 100644 --- a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" 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 25797b01b0..8735906402 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 cd7417ac10..150c2d99af 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 d11b84252d..7d8d83dc0b 100644 --- a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 ea36b1516e..a5edab42ac 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 91528b2c09..1774065af4 100644 --- a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/es/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 1739563b57..46ef09ca78 100644 --- a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 e9aa6eb688..228ddda1ab 100644 --- a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 a739ae3603..22623d7242 100644 --- a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 84e5f611de..578e37cbcc 100644 --- a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 8e710743e4..13ca1f484f 100644 --- a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 9a2087db54..bb25e87667 100644 --- a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/lv/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c42d453661..b86d9ecd20 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 05013ff6db..1b4d5d190b 100644 --- a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.mo index 3d69903734fa0844155818f64e103c2eacf98e75..d127d694fcc28e3445662a46a0217dcacbc35ca4 100644 GIT binary patch delta 210 zcmbQK{ExN%o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~Z#fOsMh^8)cKAoc~~6+qn1 z$iVOoNOJ;l9TNis7m)4%(t<#GGLVh{(o2CfP#M@B79b7eGB7hRXaFfFaL&&wNzE%^ zfYQYbF8Rr&xj+$xlFEYA$+Or3Hal^)GfsZQEi7Ej5RzGtuaJ_ekOEbdKe>i43IO=R BB)R|q literal 4505 zcma)87b6~~K^1ehfWEU=qzDhuAVS@(?B$tun`n~m2yj#k0DmhEizwv@YTW*U0B zI#t#FkTw#xM2RBh0H<7HMG@LV!ih-9F(W~8$^}ITp(x@80*)Xg1pHt1$8_7hftJR< zneM7r@8kcf+MgZ0{pSqVEItq7bK^^lErNfz4S#Tb^kv38@MEw8{sUY9Pu-3W_#Q--_%8Sm_#SvK_*?L+;9tRSfqw_@0$X=5_8stE@Hp58zX7g*^!$177%21SH}dB{ z1If>~L0acSkk*6Z|!J68s%F1^x%5c~b~#8tj6!jt_G1HSjd}F8BlR_aNE114()sJPv*z zyarwaUj(VHpMvD)-}2{2?#cX}18M#uNb^=ficf><;0=)K^$8e(e+DT}&qE{~@D-5! z{Q$fQege|GlQ2s4+5?eZcTqgFR&nwC3;9K3>7v>qr3~_P*U_8^)8!B4Whd~t4|6YxO!=}5+wiy)8zw~E`Lc4myO*xAOnTGq@64q2anV;Wq>6Kh+ zt@IZ@taw(Pid;5NBY~h)p&3>aQcNv#RV^_L?ZlB1L6HsC3qo56pbV;33|C#MNSpO` zeVJGUSuWXQYZq4# zPb9I>8qD&kX|jGjPDfi(&jh%s%|vvtEw%G4e?Wbcm!7LW7o|MibIKwaprpA{m;*m+ zF*^aSOOr;HZAeSqQ<`&Y8W*P2XrED;3{mU5tvw#dzJQ4~*+`RO9NTa*Mtp}hfu{C9 zf9vtii^KaxZXexWI&HF)xJIqDd_FcPdg8>CInlfeigucz`lv9Lb>&juT9=(m~-|4N)nw zQ4Bbs1g(B7ed}EcysKHecKO=U^0Q0N^!U}@`o^Uzms{&HQQCT|W)KG6g>+!NP1WVC zwJYAb+zzS5J=&4Fe17iCA_e^`PwVdsc-X^xPt}9(9 zi9{GLa(_roX3sshx#BHM#?eZBsl8t8s{k$3B&({uXXW^VKux~oZt-NiKL}&m z)+QlL4oaGnjV$AVt-)+%ag1+TxHbZr%ZwnvigRo!Ph~Ac z!#10uuBFKpqA@wOVTgeSxwMv1Giq$AT+NjpPTzX=1*em;ao~YE-C|@lx<*rz0nHXj z9e$LK-w8yc)2={*3Q*N0yCA|{2?3H6rIQMs;r~Ny&P0RYNF&*~4uv9V(3dEyR+iqK z@XKNp#=~4>Kz5#EO!=aSdgLenEOu*ZWVft43PPOK_~MGt5B;GGv0>4XkHbD!;KB2L zDHiB_1Xk7-Lc{AS)g0Q&A661U1x`nk;cN-PWWyKTH#sU$d!qPi`NKf#>r%s9?{Dc zwkdj(K$AdCGEzK$ZKyYMB~Qis#CRX4A!0#Qef%F&C^LVlsK~SIBQjZPROlDdkSgsY Mian*;afgKVU!L}2hyVZp 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 e5007cc78d..44015f17a6 100644 --- a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po @@ -2,17 +2,17 @@ # 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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" @@ -24,11 +24,11 @@ msgstr "" #: apps.py:50 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" -msgstr "Análise de documentos" +msgstr "" #: apps.py:116 models.py:78 msgid "Result" -msgstr "Resultado" +msgstr "" #: apps.py:121 apps.py:125 links.py:16 links.py:22 models.py:27 msgid "Content" @@ -37,20 +37,20 @@ msgstr "Conteúdo" #: dependencies.py:11 msgid "" "Utility from the poppler-utils package used to text content from PDF files." -msgstr "Utilitário do pacote poppler-utils usado para conteúdo de texto de arquivos PDF." +msgstr "" #: events.py:12 msgid "Document version submitted for parsing" -msgstr "Versão do documento enviada para análise" +msgstr "" #: events.py:15 msgid "Document version parsing finished" -msgstr "Análise da versão do documento concluída" +msgstr "" #: forms.py:39 #, python-format msgid "Page %(page_number)d" -msgstr "Página %(page_number)d" +msgstr "" #: forms.py:47 forms.py:59 msgid "Contents" @@ -58,39 +58,39 @@ msgstr "Conteúdos" #: links.py:28 links.py:66 views.py:197 msgid "Parsing errors" -msgstr "Erros de análise" +msgstr "" #: links.py:34 msgid "Download content" -msgstr "Baixe o conteúdo" +msgstr "" #: links.py:39 links.py:46 msgid "Submit for parsing" -msgstr "Enviar para análise" +msgstr "" #: links.py:52 msgid "Setup parsing" -msgstr "configuração da análise" +msgstr "" #: links.py:61 msgid "Parse documents per type" -msgstr "Analisar documentos por tipo" +msgstr "" #: models.py:21 msgid "Document page" -msgstr "Página do documento" +msgstr "" #: models.py:25 msgid "The actual text content as extracted by the document parsing backend." -msgstr "O conteúdo actual do texto, conforme extraído pelo backend de análise do documento." +msgstr "" #: models.py:33 msgid "Document page content" -msgstr "Conteúdo da página do documento" +msgstr "" #: models.py:34 msgid "Document pages contents" -msgstr "Conteúdo das páginas do documento" +msgstr "" #: models.py:46 msgid "Document type" @@ -98,65 +98,65 @@ msgstr "Tipo de documento" #: models.py:50 msgid "Automatically queue newly created documents for parsing." -msgstr "Fila automatica de documentos recém-criados para análise." +msgstr "" #: models.py:61 msgid "Document type settings" -msgstr "Configurações para tipo de documento" +msgstr "" #: models.py:62 msgid "Document types settings" -msgstr "Configurações de tipos de documento" +msgstr "" #: models.py:73 msgid "Document version" -msgstr "Versão do documento" +msgstr "" #: models.py:76 msgid "Date time submitted" -msgstr "Data da hora de envio" +msgstr "" #: models.py:82 msgid "Document version parse error" -msgstr "Erro de análise da versão do documento" +msgstr "" #: models.py:83 msgid "Document version parse errors" -msgstr "Erros de análise da versão do documento" +msgstr "" #: parsers.py:91 #, python-format msgid "Exception parsing page; %s" -msgstr "Exceção na análise da página; %s" +msgstr "" #: parsers.py:117 #, python-format msgid "Cannot find pdftotext executable at: %s" -msgstr "Não é possível encontrar o executável pdftotext em: %s" +msgstr "" #: permissions.py:12 msgid "View the content of a document" -msgstr "Ver o conteúdo de um documento" +msgstr "" #: permissions.py:15 msgid "Change document type parsing settings" -msgstr "Alterar configurações de análise do tipo de documento" +msgstr "" #: permissions.py:19 msgid "Parse the content of a document" -msgstr "Analisar o conteúdo de um documento" +msgstr "" #: queues.py:8 msgid "Parsing" -msgstr "A analisar" +msgstr "" #: queues.py:11 msgid "Document version parsing" -msgstr "Análise de versão do documento" +msgstr "" #: settings.py:12 msgid "Set new document types to perform parsing automatically by default." -msgstr "Definir novos tipos de documentos para efectuar a análise automática por padrão" +msgstr "" #: settings.py:19 msgid "" @@ -169,50 +169,50 @@ msgstr "" #: views.py:43 #, python-format msgid "Content for document: %s" -msgstr "Conteúdo para documento: %s" +msgstr "" #: views.py:78 #, python-format msgid "Content for document page: %s" -msgstr "Conteúdo para a página do documento: %s" +msgstr "" #: views.py:93 #, python-format msgid "Parsing errors for document: %s" -msgstr "Erros de análise para documento: %s" +msgstr "" #: views.py:105 #, python-format msgid "%(count)d document added to the parsing queue" -msgstr "%(count)d documento adicionado à fila de análise" +msgstr "" #: views.py:108 #, python-format -msgid "%(count)d documentos adicionados à fila de análise" +msgid "%(count)d documents added to the parsing queue" msgstr "" #: views.py:116 #, python-format msgid "Submit %(count)d document to the parsing queue?" msgid_plural "Submit %(count)d documents to the parsing queue" -msgstr[0] "Enviar o documento %(count)d para a fila de análise?" -msgstr[1] "Enviar o documentos %(count)d para a fila de análise?" +msgstr[0] "" +msgstr[1] "" #: views.py:129 #, python-format msgid "Submit document \"%s\" to the parsing queue" -msgstr "Enviar o documento \"%s\" para a fila de análise" +msgstr "" #: views.py:154 #, python-format msgid "Edit parsing settings for document type: %s." -msgstr "Editar configurações de análise para o tipo de documento: %s." +msgstr "" #: views.py:164 msgid "Submit all documents of a type for parsing." -msgstr "Envie todos os documentos de um tipo para análise" +msgstr "" #: views.py:185 #, python-format msgid "%(count)d documents added to the parsing queue." -msgstr "%(count)d documentos adicionados à fila de análise." +msgstr "" 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 88ad2cc10c..ff8923c38a 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 c2fd70c398..980b666540 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 cda10d472d..07139243c2 100644 --- a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 43211a9f02..fab09abb03 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 99cec3c0cf..802ac50ffe 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 967eed136c..af08bdf316 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 513b85fcf4..7c2bcbda51 100644 --- a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/zh/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-29 02:16-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 d86ba02543..0857bd61f8 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 81a7938f93..63b670748e 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 49eb01ad37..3a63f61b28 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 @@ -10,7 +10,7 @@ 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-07-05 01:29-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" 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 64d92f8ea0..d470cdedbb 100644 --- a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/cs/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 e623c96d60..97bf0f2dbb 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 3563217200..f22e26a4b0 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 @@ -14,7 +14,7 @@ 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-07-05 01:29-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" 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 924e894eb4..6932e36c8d 100644 --- a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/el/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 25140d385d..0ee65d81cb 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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 af817c84fc..fc69718f90 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 de0da99cf8..ba45a9a35d 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 5910e9f000..61839d7978 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ 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-07-05 01:29-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" 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 1bf3edc9b9..2b9d0c5e30 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 5ae74ba313..e5cc6b9026 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 08b1a21121..663dd5ab03 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 4e60b7f13d..1c090c1be0 100644 --- a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/lv/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-0400\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" 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 0b30c3c2a9..0607d58c88 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 3d0c559112..d0bdce1bf4 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.mo index 0255d1ead3dd4707e9d632e01ace3939f7dbef59..9bac19923b3c72af336621751f56b01ba5e1be15 100644 GIT binary patch delta 412 zcmX}oy-UMD7{~F8);6YAF}?+Lh@j%);Na$9Ar5UfJGlr)do+QwLJYou(8W!+Ls$O; z5uE%ZoOBdHaB>pd#qY)7!7raAchB9Ed~e*igEzl)Ef`~Dk(`rB@=ELo9U)4%gk@aC z3a;Z6Zla5gVtyCx`aRsneH_PI^zaVn@ezBD7>E~cY{Ay>-$wPqCI-B3V-3yl?BTY~4*LPNY1+@P`2noY|AK91h>Va?A|jb75h<;5GMQ*| zUk<#JzCM&)(Nbq7ahvAK3rxG_o6k!1;kgz&Gn7fOqmzTAFH`C>sbgh+CKl!*b<~k* as(QR{L}6Ekomd_#6ZtLkJ{_9nVC@%7Hada; literal 6387 zcmb7|ON?Ac6^6^sgLnc7HjfaVWhV|cPWRZ3oj7fbGxp4wAs%NKk1b$9RMTD4eeL_` z+=s_wg#`)%gu-J%Bp@uXki|oagc2d1VKWekMZ_YD00P7YDN7bakw8Lxr|xsyZO2^A z?f+KYQ>RXy^Pj47=Wp9?enxT4a=)MZaY0z2JX}wq}sDr$N!@f$syq0PY08 z2a5ieiuNCh_UqtH^#2z`mD-HZ+rTa0R`4!R=HCt82_69_zEckBlDNyG94k&*6VS#@IKTLZY$^<*0$Ss3!1&81r z;O7c_8Wercg5s~|i}pIWhxVUA{?x4)Eq>ez{uVq4o(2C6egym^%4I!If_H(R2Sxtd z;C}E$Q1t(^=--4<@1(sG6#sWX8FvPJ7Z`xs!KXmca|L8+>i1xOlTxpMhiD(h$ue&W zZUfgqT&A7|KLkDl3U7W|^uJQzUqG4nAE5YKj1znA2KRt%umyewY=d70_kuqIcYv>f zV%O~ieK$A>;tKWYqHT-z*TGxpf3|2}2ANVl2g>{}f|3t^1jUZmL9ycw79)PY2bB1< zLE+mBI0c>rae?|8_(AZy;9>Arpv2`3PE@HHa$pa?$^HQ0#sKlziJpu*ARjgEIaTp!neuD1P}O_%HA$;Cb*0%7xck z3AV(o1B(4eLGk-%!4CKpQ0)C3DE|KwDD&KglO#Xy12uROlsE^V@bIgk*zt2v{P!9N zUEC$(%IlHhLDnd8avkTEn9H@7Tjo0=jpC9x9po0fK6g`O7}i)@%t>d>?d+b ze#&)A4sKr-uDWX~?q`7w(?q9{9-72qI8!X#iuer8SMWZrf6p81YZ$`&gudXpnX3x4^ zned@o49X9tywmSg>eHf z(b3Qrx&yPOQ*++xBnqrfJ^6{4+;+3nw$%b89S&kfHXbz^ys#U^vF)Z!8F>*}D-lCU zhMT(Q^9j#eJhx!dfxK{xPovmiSduMw{UQ@EU9S#os1shY)Y`GNKhY9<7jTkBC7MjC zS3Td?%T_bo%`3wBtW`V;sxmlR_Pwqf+jQn>8B%7F%3EbDi?Mpg&SVF3u>@0z)_HLQ zgGQOUaZr+LFU_cRCu8MC)fIB(3pdKKUicu3${UVib#uk@ZR0H=EEODWbc?q)XpxR# zY!kM#rX1e#R=jRb+$S=djpR=?b8fD)Dc^gp4wu`=YH>ZV{*XDN3trD^lcj?wP6pmk zTj>b9^o0<>1dv-I1Ubp5wq6=ws)?<}wl$r=Y@S7QU}8rY_PxGs>#5q~x@$tAROtzA z687sj)zOM$Z)K^MCe~lkY@FFpHU(CTs9_ewg{9)%w!#Fr-{+~cAvtm)i#f*kqgCyt z@_Llc1RKwk| zQH?0F#f7d=TS=<3LJnd3hA_v8%7=4a~V>}&6xI39&5iQW-_P^ zu2643qWA4SJfX_UDROyeTr!zha?S|W9PU@llSH!TK3X`ZL@`Yecwwh&1;)Qvr} z{sR}SQnY-Pmuy$PoD1ZX%tPk&J;+fgJRb3edMhNKt67)4VL72QNhpz}p6^{UJq{VE z>ufm40yUFhjw|Ex`Gyg;`SyY=-RCQVBn?ny1D%(BvT{@;x=(8MY|>V5T` zLrdEvUB6t`c&TZtDZSDZ*Xuu`&=cpcU&bGK9-?*Gk2v$O0R@G3+UmF=(+2XvL$Y!- z78M@`$=MZ{OExsQ8=OSO)}~EVy}Cv$^N>*vPz~Zfre!TLRx_S%Ww0(Wpi$771VWVcb}P=hdQcv?gMe#)ZEBYiuL&s^Jxt6PFG3ObyE4h;T!9 z(p+n!-=)Te4YVYEJ*%4a_z?AC=)6I);XP>6PW4Wc%oxxnHq8Aps_zivd2s_tCYGXzu$9w9%xqVQb*ao8mTWXYL)wiqqMrueLF z>t%k*_m=Bu>lr?GwA&AY%p>;`+vh-{>efAPW&OFXr2UuvFFUV{2QMmZFNev(E&MIlcYfdi+UC*+CQid;T>b{05`8F+zo9ozCt5g32y5VEC 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 1700e00f56..4b73d7ee46 100644 --- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po @@ -1,14 +1,14 @@ # 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" @@ -32,7 +32,7 @@ msgstr "ID da chave" #: apps.py:101 forms.py:64 models.py:50 msgid "Signature ID" -msgstr "ID de assinatura" +msgstr "" #: apps.py:102 forms.py:76 msgid "None" @@ -40,73 +40,73 @@ msgstr "Nenhum" #: apps.py:105 msgid "Type" -msgstr "Tipo" +msgstr "" #: forms.py:19 forms.py:33 msgid "Key" -msgstr "Chave" +msgstr "" #: forms.py:24 msgid "" "The passphrase to unlock the key and allow it to be used to sign the " "document version." -msgstr "A frase secreta para desbloquear a chave e permitir que ela seja usada para assinar a versão do documento." +msgstr "" #: forms.py:26 msgid "Passphrase" -msgstr "Frase secreta" +msgstr "" #: forms.py:35 msgid "Private key that will be used to sign this document version." -msgstr "Chave privada que será usada para assinar esta versão do documento." +msgstr "" #: forms.py:46 msgid "Signature is embedded?" -msgstr "Assinatura é incorporada?" +msgstr "" #: forms.py:48 msgid "Signature date" -msgstr "Data de assinatura" +msgstr "" #: forms.py:51 msgid "Signature key ID" -msgstr "ID da chave de assinatura" +msgstr "" #: forms.py:53 msgid "Signature key present?" -msgstr "Chave de assinatura presente?" +msgstr "" #: forms.py:66 msgid "Key fingerprint" -msgstr "Impressão digital chave" +msgstr "" #: forms.py:70 msgid "Key creation date" -msgstr "Data de criação da chave" +msgstr "" #: forms.py:75 msgid "Key expiration date" -msgstr "Data de expiração da chave" +msgstr "" #: forms.py:80 msgid "Key length" -msgstr "Comprimento da chave" +msgstr "" #: forms.py:84 msgid "Key algorithm" -msgstr "Algoritmo chave" +msgstr "" #: forms.py:88 msgid "Key user ID" -msgstr "Chave do utilizador ID" +msgstr "" #: forms.py:92 msgid "Key type" -msgstr "Tipo chave" +msgstr "" #: links.py:32 msgid "Verify all documents" -msgstr "Verificar todos os documentos" +msgstr "" #: links.py:39 links.py:58 queues.py:9 msgid "Signatures" @@ -126,51 +126,51 @@ msgstr "Descarregar" #: links.py:69 msgid "Upload signature" -msgstr "Carregar assinatura" +msgstr "" #: links.py:76 msgid "Sign detached" -msgstr "Assinatura Separada" +msgstr "" #: links.py:83 msgid "Sign embedded" -msgstr "Assinatura incorporada" +msgstr "" #: models.py:40 msgid "Document version" -msgstr "Versão do documento" +msgstr "" #: models.py:44 msgid "Date signed" -msgstr "Data de assinatura" +msgstr "" #: models.py:54 msgid "Public key fingerprint" -msgstr "Impressão digital da chave pública" +msgstr "" #: models.py:60 msgid "Document version signature" -msgstr "Assinatura da versão do documento" +msgstr "" #: models.py:61 msgid "Document version signatures" -msgstr "Assinaturas da versão do documento" +msgstr "" #: models.py:80 msgid "Detached" -msgstr "Separado" +msgstr "" #: models.py:82 msgid "Embedded" -msgstr "Incorporado" +msgstr "" #: models.py:97 msgid "Document version embedded signature" -msgstr "Assinatura incorporada na versão do documento" +msgstr "" #: models.py:98 msgid "Document version embedded signatures" -msgstr "Assinaturas incorporadas na versão do documento" +msgstr "" #: models.py:131 msgid "Signature file" @@ -178,35 +178,35 @@ msgstr "Ficheiro de assinatura" #: models.py:138 msgid "Document version detached signature" -msgstr "Assinatura separada na versão do documento" +msgstr "" #: models.py:139 msgid "Document version detached signatures" -msgstr "Assinaturas separadas na versão do documento" +msgstr "" #: models.py:142 msgid "signature" -msgstr "assinatura" +msgstr "" #: permissions.py:12 msgid "Sign documents with detached signatures" -msgstr "Assinar documentos com assinaturas separadas" +msgstr "" #: permissions.py:16 msgid "Sign documents with embedded signatures" -msgstr "Assinar documentos com assinaturas incorporadas" +msgstr "" #: permissions.py:20 msgid "Delete detached signatures" -msgstr "Remover assinaturas separadas" +msgstr "" #: permissions.py:24 msgid "Download detached document signatures" -msgstr "Baixar assinaturas separadas de documento" +msgstr "" #: permissions.py:28 msgid "Upload detached document signatures" -msgstr "Carregar assinaturas separadas de documento" +msgstr "" #: permissions.py:32 msgid "Verify document signatures" @@ -214,63 +214,63 @@ msgstr "Verificar as assinaturas do documento" #: permissions.py:36 msgid "View details of document signatures" -msgstr "Verificar detalhes das assinaturas do documento" +msgstr "" #: queues.py:12 msgid "Verify key signatures" -msgstr "Verificar chaves de assinaturas" +msgstr "" #: queues.py:16 msgid "Unverify key signatures" -msgstr "Cancelar chaves de assinaturas" +msgstr "" #: queues.py:20 msgid "Verify document version" -msgstr "Verificar a versão do documento" +msgstr "" #: queues.py:25 msgid "Verify missing embedded signature" -msgstr "Verificar a assinatura incorporada ausente" +msgstr "" #: settings.py:15 msgid "Path to the Storage subclass to use when storing detached signatures." -msgstr "Caminho para a subclasse de armazenamento para usar ao armazenar assinaturas separadas" +msgstr "" #: settings.py:24 msgid "Arguments to pass to the SIGNATURE_STORAGE_BACKEND. " -msgstr "Argumentos para passar para o SIGNATURE_STORAGE_BACKEND." +msgstr "" #: views.py:68 views.py:159 msgid "Passphrase is needed to unlock this key." -msgstr "A frase secreta é necessária para desbloquear esta chave." +msgstr "" #: views.py:79 views.py:170 msgid "Passphrase is incorrect." -msgstr "Frase secreta está incorreta." +msgstr "" #: views.py:101 views.py:191 msgid "Document version signed successfully." -msgstr "Versão do documento assinada com sucesso" +msgstr "" #: views.py:127 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Assinar a versão do documento \"%s\" com assinatura separada" +msgstr "" #: views.py:224 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Assinar a versão do documento \"%s\" com assinatura incorporada" +msgstr "" #: views.py:240 #, python-format msgid "Delete detached signature: %s" -msgstr "Remover assinatura separada: %s" +msgstr "" #: views.py:260 #, python-format msgid "Details for signature: %s" -msgstr "Detalhes da assinatura: %s" +msgstr "" #: views.py:300 msgid "" @@ -278,23 +278,20 @@ msgid "" "very secure and hard to forge. A signature can be embedded as part of the " "document itself or uploaded as a separate file." msgstr "" -"As assinaturas ajudam a fornecer evidência de autoria e detecção de adulteração. " -"Elas são muito seguras e difíceis de falsificar. Uma assinatura pode ser incorporada " -"como parte do próprio documento ou carregada como um arquivo separado." #: views.py:328 msgid "There are no signatures for this document." -msgstr "Não há assinaturas para este documento" +msgstr "" #: views.py:331 #, python-format msgid "Signatures for document version: %s" -msgstr "Assinaturas para versão do documento: %s" +msgstr "" #: views.py:361 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "Carregar assinatura separada para versão do documento: %s" +msgstr "" #: views.py:378 msgid "On large databases this operation may take some time to execute." @@ -302,8 +299,8 @@ msgstr "Esta operação pode levar algum tempo em bases de dados grandes." #: views.py:379 msgid "Verify all document for signatures?" -msgstr "Verificar todos os documentos por assinaturas?" +msgstr "" #: views.py:389 msgid "Signature verification queued successfully." -msgstr "Verificação de assinatura em fila com sucesso" +msgstr "" 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 435c4b7f6f..4df81483c6 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 @@ -10,7 +10,7 @@ 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-07-05 01:29-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" 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 6ec3724799..efa63e7a8c 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 @@ -9,7 +9,7 @@ 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-07-05 01:29-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" 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 1387d7b96b..739ab159ef 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 32b4757e62..be62bd4c6a 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 @@ -7,7 +7,7 @@ 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-07-05 01:29-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" 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 400146bd00..621e2770bc 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 5049ded4f6..c380adc3b6 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 @@ -8,7 +8,7 @@ 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-07-05 01:29-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" 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 78d296a2ac..29b5e1dad6 100644 --- a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:29-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" 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 1174566ef0..afe8850621 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ar/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 ea5e15a0fe..a4c613d474 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 eb4f6609e1..a06f802622 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 @@ -8,7 +8,7 @@ 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-07-05 01:30-0400\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" 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 812d303b09..d47f57eaad 100644 --- a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/cs/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 027ed93c1d..92cd8cc688 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 @@ -7,7 +7,7 @@ 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-07-05 01:30-0400\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" 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 c924bed737..07d53a5f83 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 @@ -10,7 +10,7 @@ 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-07-05 01:30-0400\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" 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 db305e3232..ac1e001f34 100644 --- a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/el/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 e6346cf3e1..a1751936a5 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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_states/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo index e86b16e9ddd2ab6865a208e9358bf71a4e8aa218..69c4118c54bbb288bb1ceab501672a5cb4997d1b 100644 GIT binary patch delta 3784 zcmX}u32;qU9LMp0A`wf7#G1tNtcf6$Lc|+ysOdyinQl6*v|4R3I@B<9nN~;J@9*6kXYzlabFTaDIp=@=_qA)*1*}~k;JX$P zwAE+_iN?f)V6z*zs|Fvm*xF{j0?gWCJmaZhX031=Zo$*I21nL0tBO~#CSJ!7yoXKk zPt3&n;XDHuVxpPPZqjMQg{TO#y4VFnnQ$7ISdJ<9GuFb6^~^S7 zFAT*mQ479?T0pJ(W=v)6u_Zo@Va#t+=&(2|Ks{(FM&m|zd<3g8K8@PpIrQKqjKaIv z3_}{2F_*=lp4SsKVG8PdlhA{is0FRWYRqr@>BQhs)B~=#;VR0IBC|z4UkKgh(4Wp3LUL92le2EsFWAsBHZl$dw8UC zUrS8ndZIg?hB}%>$eL{x>ic_889m^794Rj=M{VSjNb;{8f6E23X!lS%2_mo6F%ETB z2^fguP&-IP?P$I`_MwhwH)`So*a45CYT*a>`W@5)A0mHNJ(~RMLMskjU+jU(K!1D+ zN24CJ4BO)|RBC_3jaY;9d2tsG#eY%X8$yN7#rde6K19_(AgkAW)lp-Qk4|qoF*q8h z;&42LnlOX|?1%{%kLjodZN?b<5cR;@I2%=ADKH21ymP46wIKzh%=ScWU<&H{zG6Ds z`Ek@4o%p)qRxH~>ieb0 zTjH~K>8NVYqEdAkRgBk>tl96Vi6bZk-4~DAQD3AkEfY1d4>jR7R4tXd*H7at#+Q+# z+91BHqR&A8`@e*acDxDMob5-Y=mI9;Z>UVPBY!-@`k;z49b+*M`Lhx}R8(hh3szti z%x%NH0cJC?0KXyc$y^`WmU(=1meDzaM{yTUWOg0NBUDBL+c_zVK-EGts+%D{3_nJY&9bRWifjBisoI^ro55-*zNqE91MP&-aWUGL{Q3iTRIMm;baRh)}Z#kd!#Gy52|fcvPTdxU|QNM-A2 zeBJ11f{CavW}wch2y5bYWV5ypb*2@lh1^2z_z%=u(5joWqZHKhvQZ10iEP@IyPiT$ z%kCp}>$B$F%|7Kq3a-OwmiausjXf}ckLB14btL7e39h3D@1TyPW=|H65jY;_p`P;< zY5{S*oY#30a{N|;iOg>o>97+1kH9&z_PB-NK%9%;VJ435?fmqfbo~YOp!$8BObo&L zjOU^34G4%AM+MlIk0sy4z0`qyB6a17(6=)nrq+w=E8@*hqoZjf_EJy8pqiJJHTp2W{F z5LXYT9#Bo0n?)25lL(C~N*5DFL}eRF zNAIoL6rwSqGu}?9ttH+hbpDlX1f4}hBr%B~%TL-2dMyc$dquCHn&$VvUQ#WKXhAI0 zz-=m~k#0W?ClFyoDWRX!IAS`XmQ3huRiLUFUUPp_;Z?QGvus6xC#s69tKOROfU63-CpiKWB}Vj{7Zh#_hdFB59|edw!>^1nkJ+B~8a zF-ikk5Rpj)69Wh}y++&oJ?B+ZH7KOw+}w=3LQi47$6HwF zP0LcRFe}4TSm4c@m94wt%hpBRs97VaL#ISfr>@Bf-OCoVxmu@7|9pMXTacaa$)Azt iJZ*-z!0Yj*=gihWc)XtJUiUd^+2v(CXl&B)u>S#W=#78? delta 3655 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 Wbp=+HR?e\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" @@ -118,7 +118,7 @@ msgstr "Jā" #: forms.py:181 msgid "Optional comment to attach to the transition." -msgstr "" +msgstr "Izvēles komentārs, ko var pievienot pārejai." #: handlers.py:62 #, python-format 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 6c86278bd7..ba41e3c5fe 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 @@ -8,7 +8,7 @@ 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-07-05 01:30-0400\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" 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 27e4df4bd3..2b830bc263 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 963267c24b660be0f8904600d3ecba5ee1151732..0e75c83cd5d447082a59780a6f8f612fe42e7000 100644 GIT binary patch delta 459 zcmXYtyGjF55Qb+piI<3AT1D0-U}C0up1TMJ}Tr*s~ip8$l8B0=7PYSO~V_ z6KrE;X(bl6c0PgMtQpSicjorbVc+h8=gRb}R=O8#1>eAL@iqJtHwy!i1-LciHmnfu zz!Kbr%Ww~t;US!Z?OFW@TK~x`K7;ebeRvVbRL;5Bf_J8>@B=QwZ)k%*a25VSTNp5H ztU#+*q4n3GJ!Bnnq|OKFqQ~?tXJ$QSOL$oZ|HGCrQ8W7!_7F36iZlk9OX9KYC*EtE z$$>_isWgW!ljaqfFuNY9w0eDwq@8eLmCmH^sdvYkzHHWgaN5Y9@>eZX7|9<}mq;^m t-o?GN&;rM9l!QYK)l^N$tF-e+ZW>=sd?Cu}RJxgq+)Zzoq|$L-{s16iN(uk~ literal 17992 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 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 b5656e1394..d6662db2cc 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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-07-05 01:30-0400\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" @@ -20,20 +20,20 @@ msgstr "" #: 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 msgid "Workflows" -msgstr "Fluxos de trabalho" +msgstr "" #: apps.py:104 apps.py:111 msgid "Current state of a workflow" -msgstr "Estado atual de um fluxo de trabalho" +msgstr "" #: apps.py:105 msgid "Return the current state of the selected workflow" -msgstr "Retorna o estado atual do fluxo de trabalho selecionado" +msgstr "" #: apps.py:112 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Retorna o valor de conclusão do estado atual do fluxo de trabalho selecionado" +msgstr "" #: apps.py:167 apps.py:178 apps.py:188 apps.py:194 msgid "None" @@ -41,7 +41,7 @@ msgstr "Nenhum" #: apps.py:172 msgid "Current state" -msgstr "Estado actual" +msgstr "" #: apps.py:176 apps.py:203 models.py:514 msgid "User" @@ -49,19 +49,19 @@ msgstr "Utilizador" #: apps.py:182 msgid "Last transition" -msgstr "Última transição" +msgstr "" #: apps.py:186 apps.py:199 msgid "Date and time" -msgstr "Data e hora" +msgstr "" #: apps.py:192 models.py:211 msgid "Completion" -msgstr "Conclusão" +msgstr "" #: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" -msgstr "transição" +msgstr "" #: apps.py:210 forms.py:182 models.py:516 msgid "Comment" @@ -69,35 +69,35 @@ msgstr "Comentário" #: apps.py:233 msgid "When?" -msgstr "Quando?" +msgstr "" #: apps.py:237 msgid "Action type" -msgstr "Tipo de acão" +msgstr "" #: apps.py:253 msgid "Triggers" -msgstr "Desencadeia" +msgstr "" #: error_logs.py:8 models.py:302 msgid "Workflow state actions" -msgstr "Ações de estado do fluxo de trabalho" +msgstr "" #: events.py:12 msgid "Workflow created" -msgstr "Fluxo de trabalho criado" +msgstr "" #: events.py:15 msgid "Workflow edited" -msgstr "Fluxo de trabalho editado" +msgstr "" #: forms.py:22 msgid "Action" -msgstr "Acão" +msgstr "" #: forms.py:117 msgid "Namespace" -msgstr "Namespace" +msgstr "" #: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" @@ -105,7 +105,7 @@ msgstr "Nome" #: forms.py:125 models.py:282 msgid "Enabled" -msgstr "Incluido" +msgstr "" #: forms.py:127 msgid "No" @@ -122,19 +122,19 @@ msgstr "" #: handlers.py:62 #, python-format msgid "Event trigger: %s" -msgstr "Evento desencadeia: %s" +msgstr "" #: links.py:23 views/workflow_views.py:144 msgid "Create workflow" -msgstr "Fluxo de trabalho criado" +msgstr "" #: links.py:29 links.py:53 links.py:85 links.py:110 msgid "Delete" -msgstr "Remover" +msgstr "Eliminar" #: links.py:35 models.py:52 msgid "Document types" -msgstr "Tipos de documento" +msgstr "" #: links.py:42 links.py:60 links.py:92 links.py:117 msgid "Edit" @@ -146,144 +146,141 @@ msgstr "Ações" #: links.py:72 msgid "Create action" -msgstr "Criar acão" +msgstr "" #: links.py:78 msgid "Create state" -msgstr "Criar estado" +msgstr "" #: links.py:97 links.py:189 msgid "States" -msgstr "Estados" +msgstr "" #: links.py:103 msgid "Create transition" -msgstr "Criar transição" +msgstr "" #: links.py:122 msgid "Transitions" -msgstr "Transições" +msgstr "" #: links.py:129 msgid "Transition triggers" -msgstr "Transição desencadeia" +msgstr "" #: links.py:136 msgid "Preview" -msgstr "Visualizar" +msgstr "" #: links.py:141 queues.py:13 msgid "Launch all workflows" -msgstr "Lançar todos os fluxos de trabalho" +msgstr "" #: links.py:156 msgid "Detail" -msgstr "Detalhe" +msgstr "" #: links.py:170 msgid "Workflow documents" -msgstr "fluxos de trabalho de documentos" +msgstr "" #: links.py:182 msgid "State documents" -msgstr "Estados de documentos" +msgstr "" #: literals.py:9 msgid "On entry" -msgstr "Na entrada" +msgstr "" #: literals.py:10 msgid "On exit" -msgstr "Na saída" +msgstr "" #: models.py:42 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "Esse valor será usado por outros aplicativos para fazer referência a esse " -"fluxo de trabalho. Só pode conter letras, números e sublinhados." +msgstr "" #: models.py:45 msgid "Internal name" -msgstr "Nome interno" +msgstr "" #: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" -msgstr "Fluxo de trabalho" +msgstr "" #: models.py:74 msgid "Initial state" -msgstr "Estado inicial" +msgstr "" #: 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 com o qual você deseja que o fluxo de trabalho inicie. " -"Somente um estado pode ser o estado inicial." +msgstr "" #: models.py:205 msgid "Initial" -msgstr "Inicial" +msgstr "" #: 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 "Digite o percentual de conclusão que esse estado representa em " -"relação ao fluxo de trabalho. Use números sem o sinal de porcentagem." +msgstr "" #: models.py:217 models.py:276 msgid "Workflow state" -msgstr "Estado do fluxo de trabalho" +msgstr "" #: models.py:218 msgid "Workflow states" -msgstr "Estados de fluxos de trabalho" +msgstr "" #: models.py:279 msgid "A simple identifier for this action." -msgstr "Um identificador simples para esta ação." +msgstr "" #: models.py:286 msgid "At which moment of the state this action will execute" -msgstr "Em qual momento do estado essa ação será executada" +msgstr "" #: models.py:287 msgid "When" -msgstr "Quando" +msgstr "" #: models.py:291 msgid "The dotted Python path to the workflow action class to execute." -msgstr "O caminho por pontos do Python para a classe de ação do fluxo de trabalho a ser executada." +msgstr "" #: models.py:292 msgid "Entry action path" -msgstr "Caminho de ação de entrada" +msgstr "" #: models.py:295 msgid "Entry action data" -msgstr "Dados de ação de entrada" +msgstr "" #: models.py:301 msgid "Workflow state action" -msgstr "Ação do estado do fluxo de trabalho" +msgstr "" #: models.py:346 msgid "Origin state" -msgstr "Estado original" +msgstr "" #: models.py:350 msgid "Destination state" -msgstr "Estado destino" +msgstr "" #: models.py:358 msgid "Workflow transition" -msgstr "Transição de fluxo de trabalho" +msgstr "" #: models.py:359 msgid "Workflow transitions" -msgstr "Transições de fluxo de trabalho" +msgstr "" #: models.py:373 msgid "Event type" @@ -291,161 +288,160 @@ msgstr "Tipo de evento" #: models.py:377 msgid "Workflow transition trigger event" -msgstr "Transição de fluxo de trabalho desencadeia evento" +msgstr "" #: models.py:378 msgid "Workflow transitions trigger events" -msgstr "Transições de fluxo de trabalho desencadeia eventos" +msgstr "" #: models.py:392 msgid "Document" -msgstr "Documento" +msgstr "" #: models.py:398 models.py:503 msgid "Workflow instance" -msgstr "Instância do fluxo de trabalho" +msgstr "" #: models.py:399 msgid "Workflow instances" -msgstr "Instâncias do fluxo de trabalho" +msgstr "" #: models.py:506 msgid "Datetime" -msgstr "Data e hora" +msgstr "" #: models.py:520 msgid "Workflow instance log entry" -msgstr "Entrada no registo da instância de fluxo de trabalho" +msgstr "" #: models.py:521 msgid "Workflow instance log entries" -msgstr "Entradas no registo da instância de fluxo de trabalho" +msgstr "" #: models.py:528 msgid "Not a valid transition choice." -msgstr "Não é uma opção de transição válida." +msgstr "" #: models.py:561 msgid "Workflow runtime proxy" -msgstr "Proxy de tempo de execução de fluxo de trabalho" +msgstr "" #: models.py:562 msgid "Workflow runtime proxies" -msgstr "Proxies de tempo de execução de fluxo de trabalho" +msgstr "" #: models.py:568 msgid "Workflow state runtime proxy" -msgstr "Proxy de tempo de execução do estado do fluxo de trabalho" +msgstr "" #: models.py:569 msgid "Workflow state runtime proxies" -msgstr "Proxies de tempo de execução do estado do fluxo de trabalho" +msgstr "" #: permissions.py:8 msgid "Document workflows" -msgstr "Fluxos de trabalho do documento" +msgstr "" #: permissions.py:12 msgid "Create workflows" -msgstr "Criar fluxo de trabalho" +msgstr "" #: permissions.py:15 msgid "Delete workflows" -msgstr "Remover fluxo de trabalho" +msgstr "" #: permissions.py:18 msgid "Edit workflows" -msgstr "Editar fluxo de trabalho" +msgstr "" #: permissions.py:21 msgid "View workflows" -msgstr "Ver fluxo de trabalho" +msgstr "" #: permissions.py:27 msgid "Transition workflows" -msgstr "Fluxos de trabalho de transição" +msgstr "" #: permissions.py:30 msgid "Execute workflow tools" -msgstr "Executar ferramentas de fluxo de trabalho" +msgstr "" #: queues.py:9 msgid "Document states" -msgstr "Estados de documento" +msgstr "" #: serializers.py:22 msgid "Primary key of the document type to be added." -msgstr "Chave primária do tipo de documento a ser adicionado." +msgstr "" #: serializers.py:37 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 da API que aponta para um tipo de documento em relação ao fluxo " -"de trabalho ao qual está anexado. Essa URL é diferente da URL do tipo de documento canônico." +msgstr "" #: serializers.py:116 msgid "Primary key of the destination state to be added." -msgstr "Chave primária do estado de destino a ser adicionado." +msgstr "" #: serializers.py:120 msgid "Primary key of the origin state to be added." -msgstr "Chave primária do estado de origem a ser adicionado." +msgstr "" #: serializers.py:218 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 da API que aponta para um fluxo de trabalho em relação ao documento ao qual está anexado. Essa URL é diferente da URL do fluxo de trabalho canônico." +msgstr "" #: serializers.py:227 msgid "A link to the entire history of this workflow." -msgstr "Uma ligação para todo o histórico deste fluxo de trabalho." +msgstr "" #: serializers.py:259 msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Lista separada por vírgula das chaves primárias do tipo de documento às quais este fluxo de trabalho será anexado." +msgstr "" #: serializers.py:319 msgid "Primary key of the transition to be added." -msgstr "Chave primária da transição a ser adicionada." +msgstr "" #: views/workflow_instance_views.py:44 msgid "" "Assign workflows to the document type of this document to have this document" " execute those workflows. " -msgstr "Atribuir fluxos de trabalho ao tipo de documento deste documento para que este documento execute esses fluxos de trabalho." +msgstr "" #: views/workflow_instance_views.py:48 msgid "There are no workflow for this document" -msgstr "Não há fluxo de trabalho para este documento" +msgstr "" #: views/workflow_instance_views.py:52 #, python-format msgid "Workflows for document: %s" -msgstr "Fluxos de trabalho para documento: %s" +msgstr "" #: views/workflow_instance_views.py:83 msgid "" "This view will show the state changes as a workflow instance is " "transitioned." -msgstr "Esta visualização mostrará as mudanças de estado à medida que uma instância de fluxo de trabalho é transferida." +msgstr "" #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "Não há detalhes para esta instância de fluxo de trabalho" +msgstr "" #: views/workflow_instance_views.py:90 #, python-format msgid "Detail of workflow: %(workflow)s" -msgstr "Detalhe do fluxo de trabalho: %(workflow)s" +msgstr "" #: views/workflow_instance_views.py:114 #, python-format msgid "Document \"%s\" transitioned successfully" -msgstr "Documento \"%s\", transição com sucesso" +msgstr "" #: views/workflow_instance_views.py:123 msgid "Submit" @@ -454,271 +450,270 @@ msgstr "Submeter" #: views/workflow_instance_views.py:125 #, python-format msgid "Do transition for workflow: %s" -msgstr "Fazer a transição para o fluxo de trabalho: %s" +msgstr "" #: views/workflow_proxy_views.py:46 msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "Associar um fluxo de trabalho a alguns tipos de documentos e " -"documentos desses tipos serão listados nesta vista." +msgstr "" #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" -msgstr "Não há documentos executando este fluxo de trabalho" +msgstr "" #: views/workflow_proxy_views.py:53 #, python-format msgid "Documents with the workflow: %s" -msgstr "Documentos com o fluxo de trabalho: %s" +msgstr "" #: views/workflow_proxy_views.py:70 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. Fluxos de trabalho ativos serão mostrados aqui e os documentos para os quais estão sendo executados." +msgstr "" #: views/workflow_proxy_views.py:74 msgid "There are no workflows" -msgstr "Não há fluxos de trabalho" +msgstr "" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "Não existem documentos neste estado de fluxo de trabalho" +msgstr "" #: views/workflow_proxy_views.py:97 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" -msgstr "Documentos no fluxo de trabalho \"%s\", estado \"%s\"" +msgstr "" #: views/workflow_proxy_views.py:142 views/workflow_views.py:511 msgid "Create states and link them using transitions." -msgstr "Criar estados e os vincule usando transições." +msgstr "" #: views/workflow_proxy_views.py:145 msgid "This workflow doesn't have any state" -msgstr "Este fluxo de trabalho não possui nenhum estado" +msgstr "" #: views/workflow_proxy_views.py:148 views/workflow_views.py:517 #, python-format msgid "States of workflow: %s" -msgstr "Estados do fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:72 msgid "Available workflows" -msgstr "Fluxos de trabalho disponíveis" +msgstr "" #: views/workflow_views.py:73 msgid "Workflows assigned this document type" -msgstr "Fluxos de trabalho atribuídos a esse tipo de documento" +msgstr "" #: views/workflow_views.py:83 msgid "" "Removing a workflow from a document type will also remove all running " "instances of that workflow." -msgstr "A remoção de um fluxo de trabalho de um tipo de documento também removerá todas as instâncias em execução desse fluxo de trabalho." +msgstr "" #: views/workflow_views.py:87 #, python-format msgid "Workflows assigned the document type: %s" -msgstr "Fluxos de trabalho atribuídos ao tipo de documento: %s" +msgstr "" #: views/workflow_views.py:132 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 "Os fluxos de trabalho armazenam uma série de estados e acompanham o estado atual de um documento. As transições são usadas para alterar o estado atual para um novo." +msgstr "" #: views/workflow_views.py:137 msgid "No workflows have been defined" -msgstr "Nenhum fluxo de trabalho foi definido" +msgstr "" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "Excluir fluxo de trabalho: %s?" +msgstr "" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "Edit workflow: %s" +msgstr "" #: views/workflow_views.py:196 msgid "Available document types" -msgstr "Tipos de documentos disponíveis" +msgstr "" #: views/workflow_views.py:197 msgid "Document types assigned this workflow" -msgstr "Tipos de documentos atribuídos a esse fluxo de trabalho" +msgstr "" #: views/workflow_views.py:207 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 em execução desse fluxo de trabalho para documentos do tipo de documento que acabou de ser removido." +msgstr "" #: views/workflow_views.py:212 #, python-format msgid "Document types assigned the workflow: %s" -msgstr "Tipos de documentos atribuídos ao fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:265 #, python-format msgid "Create a \"%s\" workflow action" -msgstr "Criar \"%s\" ação de fluxo de trabalho" +msgstr "" #: views/workflow_views.py:305 #, python-format msgid "Delete workflow state action: %s" -msgstr "Remover a ação do estado do fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:328 #, python-format msgid "Edit workflow state action: %s" -msgstr "Editar a ação do estado do fluxo de trabalho: %s" +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." -msgstr "As ações do estado do fluxo de trabalho são macros que são executadas quando os documentos entram ou saem do estado em que residem." +msgstr "" #: views/workflow_views.py:371 msgid "There are no actions for this workflow state" -msgstr "Não há ações para este estado de fluxo de trabalho" +msgstr "" #: views/workflow_views.py:375 #, python-format msgid "Actions for workflow state: %s" -msgstr "Ações para o estado do fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:409 msgid "New workflow state action selection" -msgstr "Nova seleção de ação para estado do fluxo de trabalho" +msgstr "" #: views/workflow_views.py:430 #, python-format msgid "Create states for workflow: %s" -msgstr "Criar estados para fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "Remover estados para fluxo de trabalho: %s?" +msgstr "" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "Editar estados para fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" -msgstr "Este fluxo de trabalho não possui estados" +msgstr "" #: views/workflow_views.py:540 #, python-format msgid "Create transitions for workflow: %s" -msgstr "Criar transições para fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "Criar transições para fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "Editar transições para fluxo de trabalho: %s" +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." +msgstr "" #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" -msgstr "Este fluxo de trabalho não tem transições" +msgstr "" #: views/workflow_views.py:643 #, python-format msgid "Transitions of workflow: %s" -msgstr "Transições do fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:673 #, python-format msgid "Error updating workflow transition trigger events; %s" -msgstr "Erro ao atualizar eventos desencadeados na transição de fluxo de trabalho; %s" +msgstr "" #: views/workflow_views.py:680 msgid "Workflow transition trigger events updated successfully" -msgstr "Eventos desencadeados na transição de fluxo de trabalho atualizados com êxito" +msgstr "" #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Eventos desencadeados na transição de fluxo de trabalho para executar automaticamente" +msgstr "" #: views/workflow_views.py:698 #, python-format msgid "Workflow transition trigger events for: %s" -msgstr "Eventos desencadeados na transição de fluxo de trabalho: %s" +msgstr "" #: views/workflow_views.py:737 msgid "Launch all workflows?" -msgstr "Iniciar todos os fluxos de trabalho" +msgstr "" #: views/workflow_views.py:739 msgid "" "This will launch all workflows created after documents have already been " "uploaded." -msgstr "Isto iniciará todos os fluxos de trabalho criados depois que os documentos já foram enviados." +msgstr "" #: views/workflow_views.py:748 msgid "Workflow launch queued successfully." -msgstr "Iniciar de fluxo de trabalho na fila com sucesso" +msgstr "" #: views/workflow_views.py:774 #, python-format msgid "Preview of: %s" -msgstr "Pré-visualização de: %s" +msgstr "" #: workflow_actions.py:22 msgid "Document label" -msgstr "Etiqueta do documento" +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 etiqueta a ser atribuído ao documento. Pode ser uma string ou um template." +msgstr "" #: workflow_actions.py:30 msgid "Document description" -msgstr "Descrição do documento" +msgstr "" #: workflow_actions.py:33 msgid "" "The new description to be assigned to the document. Can be a string or a " "template." -msgstr "A nova descrição a ser atribuída ao documento. Pode ser uma string ou um modelo." +msgstr "" #: workflow_actions.py:40 msgid "Modify the properties of the document" -msgstr "Modificar as propriedades do documento" +msgstr "" #: workflow_actions.py:62 #, python-format msgid "Document label template error: %s" -msgstr "Erro de modelo de etiqueta de documento: %s" +msgstr "" #: workflow_actions.py:74 #, python-format msgid "Document description template error: %s" -msgstr "Erro do modelo de descrição do documento: %s" +msgstr "" #: workflow_actions.py:90 msgid "URL" -msgstr "URL" +msgstr "" #: workflow_actions.py:93 msgid "" @@ -726,21 +721,19 @@ msgid "" " 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 IP, um domínio ou um modelo. Os modelos recebem a instância de entrada do log de fluxo de trabalho como parte de seu contexto por meio da variável \"entry_log\"." -" The \"entry_log\" por sua vez, fornece o \"workflow_instance\", \"datetime\"," -" \"transition\", \"user\", e \"comment\" atributos." +msgstr "" #: workflow_actions.py:103 msgid "Timeout" -msgstr "Tempo esgotado" +msgstr "" #: workflow_actions.py:105 msgid "Time in seconds to wait for a response." -msgstr "Tempo em segundos para esperar por uma resposta." +msgstr "" #: workflow_actions.py:109 msgid "Payload" -msgstr "Carga" +msgstr "" #: workflow_actions.py:112 msgid "" @@ -749,24 +742,23 @@ msgid "" " 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 para incluir na solicitação. Também pode ser um modelo que retorne um documento JSON. Os modelos recebem a instância de entrada do log de fluxo de trabalho como parte de seu contexto por meio da variável " -"\"entry_log\". The \"entry_log\" por sua vez, fornece o \"workflow_instance\", \"datetime\", \"transition\", \"user\", e \"comment\" atributos." +msgstr "" #: workflow_actions.py:125 msgid "Perform a POST request" -msgstr "Executa uma solicitação POST" +msgstr "" #: workflow_actions.py:144 #, python-format msgid "URL template error: %s" -msgstr "Erro modelo de URL: %s" +msgstr "" #: workflow_actions.py:155 #, python-format msgid "Payload template error: %s" -msgstr "Erro modelo de carga: %s" +msgstr "" #: workflow_actions.py:164 #, python-format msgid "Payload JSON error: %s" -msgstr "Erro carga JSON: %s" +msgstr "" 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 548b436e0b..30b612345e 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 @@ -11,7 +11,7 @@ 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-07-05 01:30-0400\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" 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 f0b4bc5bf0..563fe87601 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 @@ -8,7 +8,7 @@ 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-07-05 01:30-0400\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" 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 ef216aadc8..a863b54d1c 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 4bc81e22b0..95d9dbcbbd 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 @@ -7,7 +7,7 @@ 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-07-05 01:30-0400\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" 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 60a8765970..de7489aff7 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 @@ -8,7 +8,7 @@ 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-07-05 01:30-0400\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" 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 fd6d19484e..7543b13cba 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 @@ -7,7 +7,7 @@ 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-07-05 01:30-0400\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" 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 c88fbf9fa9..be1a83b865 100644 --- a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index 6eca4ef700..34ad5bbfaa 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index c3ba45b80d..48df367917 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 24d6febd7c..95fc36c186 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po index c89f046557..012ff4ea5e 100644 --- a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/cs/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 c0e5ed98c1..159a307e21 100644 --- a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da_DK/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 fbb9d645ff..bef1cd4a4f 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ 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-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po index 580c43abea..2000ae1f87 100644 --- a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/el/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index 37b252ff0c..fe5993f942 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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/" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 00b2f38f7b..e58c636dc6 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 3b7f845b03..61fe71a7fb 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po index 39ea25a16b..55caf83183 100644 --- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:30-0400\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" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index cc91228661..ff3a744e4b 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index 8cffbf5960..bd3ef520f3 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index a25539ede2..cc56abac2b 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po index 0cf2466f07..e552008e34 100644 --- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/lv/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 fa6703aced..64c26a85b8 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index 179c302fcc..86336159e5 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo index 0a6ac86346c362edaae9c79c0e1f03bc90f88ba1..34c49e341a37fcda80df5cacb6bee49e3dbc3cb4 100644 GIT binary patch delta 1979 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 diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index c702b9329d..841564986b 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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-07-05 01:30-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" @@ -25,33 +25,33 @@ msgstr "Documentos" #: apps.py:130 msgid "Create a document type" -msgstr "Criar um tipo de documento" +msgstr "" #: apps.py:132 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Cada documento carregado deve ser atribuído a um tipo de documento, é a forma básica que o Mayan EDMS categoriza documentos." +msgstr "" #: apps.py:151 msgid "Versions comment" -msgstr "Comentário de versões" +msgstr "" #: apps.py:155 msgid "Versions encoding" -msgstr "Codificação de versões" +msgstr "" #: apps.py:159 msgid "Versions mime type" -msgstr "Versões tipo mime" +msgstr "" #: apps.py:163 msgid "Versions timestamp" -msgstr "Carimbo de hora das versões" +msgstr "" #: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:333 msgid "Thumbnail" -msgstr "Miniatura" +msgstr "" #: apps.py:249 apps.py:338 forms/document_forms.py:182 links.py:83 msgid "Pages" @@ -59,72 +59,72 @@ msgstr "Páginas" #: apps.py:258 links.py:420 msgid "Duplicates" -msgstr "Duplicados" +msgstr "" #: apps.py:284 msgid "Type" -msgstr "Tipos" +msgstr "" #: dashboard_widgets.py:24 msgid "Total pages" -msgstr "Total de páginas" +msgstr "" #: dashboard_widgets.py:47 msgid "Total documents" -msgstr "Total documentos" +msgstr "" #: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" -msgstr "Documents no lixo" +msgstr "" #: dashboard_widgets.py:85 links.py:406 links.py:411 permissions.py:55 #: views/document_type_views.py:78 msgid "Document types" -msgstr "Tipos documentos" +msgstr "" #: dashboard_widgets.py:104 msgid "New documents this month" -msgstr "Novos documentos este mês" +msgstr "" #: dashboard_widgets.py:118 msgid "New pages this month" -msgstr "Novas páginas este mês" +msgstr "" #: events.py:10 msgid "Document created" -msgstr "Documento criado" +msgstr "" #: events.py:13 msgid "Document downloaded" -msgstr "Documento baixado" +msgstr "" #: events.py:16 msgid "New version uploaded" -msgstr "Nova versão carregada" +msgstr "" #: events.py:19 msgid "Document properties edited" -msgstr "Propriedades do documento editadas" +msgstr "" #: events.py:23 msgid "Document type changed" -msgstr "Tipo de documento alterado" +msgstr "" #: events.py:27 msgid "Document type created" -msgstr "Tipo de documento criado" +msgstr "" #: events.py:31 msgid "Document type edited" -msgstr "Tipo de documento editado" +msgstr "" #: events.py:34 msgid "Document version reverted" -msgstr "Versão do documento revertida" +msgstr "" #: events.py:37 msgid "Document viewed" -msgstr "Documento visualizado" +msgstr "" #: forms/document_forms.py:26 msgid "Compress" @@ -135,31 +135,31 @@ msgid "" "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 a transferência do documento no formato original ou de forma comprimida. Esta opção é selecionável somente ao transferir um documento, para vários documentos, o pacote sempre será transferido como um arquivo compactado." +msgstr "" #: forms/document_forms.py:35 msgid "Compressed filename" -msgstr "Nome do arquivo compactado" +msgstr "" #: forms/document_forms.py:38 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 conterá os documentos a serem transferidos, se a opção anterior estiver selecionada." +msgstr "" #: forms/document_forms.py:85 msgid "Quick document rename" -msgstr "Alterar nome rápidamente do documento" +msgstr "Renomeação rápida de documento" #: forms/document_forms.py:93 forms/document_version_forms.py:15 msgid "Preserve extension" -msgstr "Preservar extensão" +msgstr "" #: forms/document_forms.py:95 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 "Leva a extensão do arquivo e a move para o final do nome do arquivo, permitindo que os sistemas operativos que dependem de extensões de arquivo abram o documento corretamente." +msgstr "" #: forms/document_forms.py:147 msgid "Date added" @@ -171,11 +171,11 @@ msgstr "UUID" #: forms/document_forms.py:153 models/document_models.py:65 msgid "Language" -msgstr "Lingua" +msgstr "" #: forms/document_forms.py:161 msgid "File mimetype" -msgstr "Tipo MIME do arquivo" +msgstr "Tipo MIME do ficheiro" #: forms/document_forms.py:162 forms/document_forms.py:167 msgid "None" @@ -183,11 +183,11 @@ msgstr "Nenhum" #: forms/document_forms.py:165 msgid "File encoding" -msgstr "Codificação de arquivo" +msgstr "" #: forms/document_forms.py:171 models/document_page_models.py:290 msgid "File size" -msgstr "Tamanho do arquivo" +msgstr "Tamanho do ficheiro" #: forms/document_forms.py:176 msgid "Exists in storage" @@ -195,7 +195,7 @@ msgstr "Existe no armazenamento" #: forms/document_forms.py:178 msgid "File path in storage" -msgstr "Caminho do arquivo no armazenamento" +msgstr "Caminho do ficheiro no armazenamento" #: forms/document_forms.py:181 models/document_version_models.py:111 #: search.py:47 search.py:72 @@ -210,7 +210,7 @@ msgstr "Intervalo de páginas" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "Número da página a partir da qual todas as transformações serão clonadas. As transformações existentes serão perdidas." +msgstr "" #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -223,27 +223,27 @@ 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 "Leva a extensão do arquivo e a move para o final do nome do arquivo, permitindo que os sistemas operativos que dependem de extensões de arquivo abram a versão do documento transferido corretamente." +msgstr "" #: links.py:66 msgid "Preview" -msgstr "Pré-Visualização" +msgstr "" #: links.py:72 msgid "Properties" -msgstr "Propriedades" +msgstr "" #: links.py:78 links.py:238 msgid "Versions" -msgstr "Versões" +msgstr "" #: links.py:92 links.py:179 msgid "Clear transformations" -msgstr "Limpar transformações" +msgstr "" #: links.py:99 msgid "Clone transformations" -msgstr "Clonar transformações" +msgstr "" #: links.py:106 links.py:189 links.py:365 links.py:389 msgid "Delete" @@ -251,57 +251,57 @@ msgstr "Eliminar" #: links.py:112 views/favorite_document_views.py:37 msgid "Favorites" -msgstr "Favoritos" +msgstr "" #: links.py:118 links.py:193 msgid "Add to favorites" -msgstr "Adicionar aos favoritos" +msgstr "" #: links.py:124 links.py:198 msgid "Remove from favorites" -msgstr "Remover dos favoritos" +msgstr "" #: links.py:130 links.py:184 msgid "Move to trash" -msgstr "Mover para o lixo" +msgstr "" #: links.py:137 msgid "Edit properties" -msgstr "Editar propriedades" +msgstr "" #: links.py:142 links.py:203 msgid "Change type" -msgstr "Alterar tipo" +msgstr "" #: links.py:148 links.py:209 msgid "Advanced download" -msgstr "Transferência avançada" +msgstr "" #: links.py:155 msgid "Print" -msgstr "Imprimir" +msgstr "" #: links.py:160 msgid "Quick download" -msgstr "Transferência rápida" +msgstr "" #: links.py:167 links.py:214 msgid "Recalculate page count" -msgstr "Recalcular contagem de páginas" +msgstr "" #: links.py:173 links.py:219 msgid "Restore" -msgstr "Restaurar" +msgstr "" #: links.py:226 msgid "Download version" -msgstr "Versão da transferência" +msgstr "" #: links.py:232 links.py:312 models/document_models.py:93 #: models/document_version_models.py:74 models/misc_models.py:35 #: models/misc_models.py:65 models/misc_models.py:94 msgid "Document" -msgstr "Documento" +msgstr "" #: links.py:245 msgid "Details" @@ -309,19 +309,19 @@ msgstr "Detalhes" #: links.py:251 views/document_views.py:95 msgid "All documents" -msgstr "Todos os documentos" +msgstr "" #: links.py:255 views/document_views.py:712 msgid "Recently accessed" -msgstr "Acedido recentemente" +msgstr "" #: links.py:259 views/document_views.py:738 msgid "Recently added" -msgstr "Adicionado recentemente" +msgstr "" #: links.py:264 msgid "Trash can" -msgstr "Lixo" +msgstr "" #: links.py:271 msgid "" @@ -331,35 +331,35 @@ msgstr "Limpar as representações gráficas usadas para acelerar a exibição e #: links.py:274 msgid "Clear document image cache" -msgstr "Limpar o cache de imagem do documento" +msgstr "" #: links.py:278 permissions.py:51 msgid "Empty trash" -msgstr "Limpar lixo" +msgstr "" #: links.py:287 msgid "First page" -msgstr "Primeira página" +msgstr "" #: links.py:292 msgid "Last page" -msgstr "Última página" +msgstr "" #: links.py:300 msgid "Previous page" -msgstr "Página anterior" +msgstr "" #: links.py:306 msgid "Next page" -msgstr "Próxima página" +msgstr "" #: links.py:318 msgid "Rotate left" -msgstr "Rodar para a esquerda" +msgstr "" #: links.py:323 msgid "Rotate right" -msgstr "Rodar para a direita" +msgstr "" #: links.py:327 msgid "Page image" @@ -367,27 +367,27 @@ msgstr "Imagem da página" #: links.py:332 msgid "Reset view" -msgstr "Limpar vista" +msgstr "" #: links.py:338 msgid "Zoom in" -msgstr "Mais Zoom" +msgstr "" #: links.py:344 msgid "Zoom out" -msgstr "Menos Zoom" +msgstr "" #: links.py:353 msgid "Revert" -msgstr "Reverter" +msgstr "" #: links.py:360 views/document_type_views.py:90 msgid "Create document type" -msgstr "Crie um tipo de documento" +msgstr "" #: links.py:371 msgid "Deletion policies" -msgstr "Políticas de eliminação " +msgstr "" #: links.py:375 links.py:396 msgid "Edit" @@ -395,20 +395,20 @@ msgstr "Editar" #: links.py:382 msgid "Add quick label to document type" -msgstr "Adicionar etiqueta rápida ao tipo de documento" +msgstr "" #: links.py:402 models/document_type_models.py:157 -msgid "Etiquetas rápidas" +msgid "Quick labels" msgstr "" #: links.py:415 models/misc_models.py:38 models/misc_models.py:48 #: views/document_views.py:690 msgid "Duplicated documents" -msgstr "Documentos duplicados" +msgstr "" #: links.py:426 queues.py:70 msgid "Duplicated document scan" -msgstr "Ver a digitalização de documento duplicado" +msgstr "" #: literals.py:31 msgid "Default" @@ -416,17 +416,17 @@ msgstr "Padrão" #: literals.py:40 msgid "All pages" -msgstr "Todas as páginas" +msgstr "" #: models/document_models.py:39 msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "UUID de um documento, universalmente ID exclusivo. Um identificador exclusivo gerado para cada documento." +msgstr "" #: models/document_models.py:49 msgid "The name of the document." -msgstr "O nome do documento." +msgstr "" #: models/document_models.py:49 models/document_page_models.py:259 #: models/document_type_models.py:32 models/document_type_models.py:149 @@ -436,7 +436,7 @@ msgstr "Nome" #: models/document_models.py:53 msgid "An optional short text describing a document." -msgstr "Um texto curto opcional descrevendo um documento." +msgstr "" #: models/document_models.py:54 search.py:41 search.py:69 msgid "Description" @@ -446,65 +446,65 @@ msgstr "Descrição" msgid "" "The server date and time when the document was finally processed and added " "to the system." -msgstr "A data e hora do servidor quando o documento foi finalmente processado e adicionado ao sistema." +msgstr "" #: models/document_models.py:60 models/misc_models.py:41 msgid "Added" -msgstr "Adicionado" +msgstr "" #: models/document_models.py:64 msgid "The dominant language in the document." -msgstr "A língua dominante no documento." +msgstr "" #: models/document_models.py:69 msgid "Whether or not this document is in the trash." -msgstr "Se este documento está ou não no lixo." +msgstr "" #: models/document_models.py:70 msgid "In trash?" -msgstr "No lixo?" +msgstr "" #: models/document_models.py:75 msgid "The server date and time when the document was moved to the trash." -msgstr "A data e hora do servidor quando o documento foi movido para o lixo." +msgstr "" #: models/document_models.py:77 msgid "Date and time trashed" -msgstr "Data e hora no lixo" +msgstr "" #: models/document_models.py:81 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 documento é um documento com uma entrada na base de dados, mas nenhum arquivo enviado. Isto poderia ser um upload interrompido ou um carregamento diferido por meio da API." +msgstr "" #: models/document_models.py:84 msgid "Is stub?" -msgstr "É rascunho" +msgstr "" #: models/document_models.py:97 #, python-format msgid "Document stub, id: %d" -msgstr "Rascunho Documento, id: %d" +msgstr "" #: models/document_page_models.py:42 models/document_version_models.py:116 #: models/document_version_models.py:117 msgid "Document version" -msgstr "Versão do documento" +msgstr "" #: models/document_page_models.py:46 msgid "Page number" -msgstr "Número de página" +msgstr "" #: models/document_page_models.py:53 models/document_page_models.py:283 #: models/document_page_models.py:316 msgid "Document page" -msgstr "Página do documento" +msgstr "" #: models/document_page_models.py:54 models/document_page_models.py:317 msgid "Document pages" -msgstr "Páginas de documentos" +msgstr "" #: models/document_page_models.py:253 #, python-format @@ -513,75 +513,75 @@ msgstr "Página %(page_num)d de %(total_pages)d de %(document)s" #: models/document_page_models.py:286 msgid "Date time" -msgstr "Data e hora" +msgstr "" #: models/document_page_models.py:288 msgid "Filename" -msgstr "Nome do arquivo" +msgstr "Nome do ficheiro" #: models/document_page_models.py:296 msgid "Document page cached image" -msgstr "Imagem em cache da página do documento" +msgstr "" #: models/document_page_models.py:297 msgid "Document page cached images" -msgstr "Imagens em cache da página do documento" +msgstr "" #: models/document_type_models.py:31 msgid "The name of the document type." -msgstr "O nome do tipo de documento." +msgstr "" #: 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 o qual os documentos desse tipo serão movidos para o lixo." +msgstr "" #: models/document_type_models.py:38 msgid "Trash time period" -msgstr "Período no Lixo" +msgstr "" #: models/document_type_models.py:42 msgid "Trash time unit" -msgstr "Unidade de tempo para lixo" +msgstr "" #: models/document_type_models.py:46 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Quantidade de tempo após o qual documenta deste tipo no lixo serão eliminados." +msgstr "" #: models/document_type_models.py:48 msgid "Delete time period" -msgstr "Remover período de tempo" +msgstr "" #: models/document_type_models.py:53 msgid "Delete time unit" -msgstr "Remover unidade de tempo" +msgstr "" #: models/document_type_models.py:61 msgid "Documents types" -msgstr "Tipos de documentos" +msgstr "" #: models/document_type_models.py:151 msgid "Enabled" -msgstr "Ativado" +msgstr "" #: models/document_type_models.py:156 msgid "Quick label" -msgstr "Etiqueta rápido" +msgstr "" #: models/document_version_models.py:78 msgid "The server date and time when the document version was processed." -msgstr "A data e hora do servidor em que a versão do documento foi processada." +msgstr "" #: models/document_version_models.py:79 msgid "Timestamp" -msgstr "Carimbo de tempo" +msgstr "" #: models/document_version_models.py:83 msgid "An optional short text describing the document version." -msgstr "Um texto curto opcional descrevendo a versão do documento." +msgstr "" #: models/document_version_models.py:84 msgid "Comment" @@ -596,7 +596,7 @@ 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 tipo MIME do arquivo da versão do documento. Os tipos MIME são uma maneira padrão de descrever o formato de um arquivo, neste caso o formato de arquivo do documento. EX: \"text/plain\" or \"image/jpeg\"." +msgstr "" #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -606,15 +606,15 @@ msgstr "Tipo MIME" msgid "" "The document version file encoding. binary 7-bit, binary 8-bit, text, " "base64, etc." -msgstr "A codificação do arquivo de versão do documento. Binário de 7 bits, binário de 8 bits, texto, base64 etc." +msgstr "" #: models/document_version_models.py:104 msgid "Encoding" -msgstr "codificação" +msgstr "" #: models/misc_models.py:47 msgid "Duplicated document" -msgstr "Documento duplicado" +msgstr "" #: models/misc_models.py:61 models/misc_models.py:90 msgid "User" @@ -622,23 +622,23 @@ msgstr "Utilizador" #: models/misc_models.py:71 msgid "Favorite document" -msgstr "Documento favorito" +msgstr "" #: models/misc_models.py:72 msgid "Favorite documents" -msgstr "Documentos favoritos" +msgstr "" #: models/misc_models.py:97 msgid "Accessed" -msgstr "Acedido" +msgstr "" #: models/misc_models.py:104 msgid "Recent document" -msgstr "Documento recente" +msgstr "" #: models/misc_models.py:105 msgid "Recent documents" -msgstr "Documentos recentes" +msgstr "" #: permissions.py:10 msgid "Create documents" @@ -650,11 +650,11 @@ msgstr "Excluir documentos" #: permissions.py:16 msgid "Trash documents" -msgstr "Documentos no lixo" +msgstr "" #: permissions.py:19 views/document_views.py:222 msgid "Download documents" -msgstr "Transferir documentos" +msgstr "Descarregar documentos" #: permissions.py:22 msgid "Edit documents" @@ -670,11 +670,11 @@ msgstr "Editar propriedades de documento" #: permissions.py:31 msgid "Print documents" -msgstr "Imprimir documentos" +msgstr "" #: permissions.py:34 msgid "Restore trashed document" -msgstr "Restaurar documento do lixo" +msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" @@ -686,7 +686,7 @@ msgstr "Reverter documentos para uma versão anterior" #: permissions.py:44 msgid "View documents' versions list" -msgstr "Ver lista de versões dos documentos" +msgstr "" #: permissions.py:48 msgid "View documents" @@ -710,119 +710,119 @@ msgstr "Ver tipos de documento" #: queues.py:17 msgid "Converter" -msgstr "Converter" +msgstr "" #: queues.py:20 msgid "Documents periodic" -msgstr "Documentos periódicos" +msgstr "" #: queues.py:23 msgid "Uploads" -msgstr "Transferências" +msgstr "" #: queues.py:31 msgid "Generate document page image" -msgstr "Gerar imagem da página do documento" +msgstr "" #: queues.py:36 msgid "Delete a document" -msgstr "Remover um documento" +msgstr "" #: queues.py:40 msgid "Clean empty duplicate lists" -msgstr "Limpar listas duplicadas vazias" +msgstr "" #: queues.py:45 msgid "Check document type delete periods" -msgstr "Verificar períodos de exclusão do tipo de documento" +msgstr "" #: queues.py:53 msgid "Check document type trash periods" -msgstr "Verificar períodos do lixo do tipo de documento" +msgstr "" #: queues.py:59 msgid "Delete document stubs" -msgstr "Remover rascunho de documentos" +msgstr "" #: queues.py:66 msgid "Clear image cache" -msgstr "Limpar cache de imagem" +msgstr "" #: queues.py:75 msgid "Update document page count" -msgstr "Atualizar contagem de páginas do documento" +msgstr "" #: queues.py:79 msgid "Upload new document version" -msgstr "Carregar nova versão do documento" +msgstr "" #: queues.py:83 msgid "Scan document duplicates" -msgstr "duplicados do documento digitalizados" +msgstr "" #: settings.py:19 msgid "" "Path to the Storage subclass to use when storing the cached document image " "files." -msgstr "Caminho para a subclasse de armazenamento para usar ao armazenar os arquivos de imagem do documento em cache." +msgstr "" #: settings.py:28 msgid "Arguments to pass to the DOCUMENT_CACHE_STORAGE_BACKEND." -msgstr "Argumentos para passar para o DOCUMENT_CACHE_STORAGE_BACKEND" +msgstr "" #: settings.py:34 msgid "" "Disables the first cache tier which stores high resolution, non transformed " "versions of documents's pages." -msgstr "Desativa a primeira camada de cache que armazena as versões não transformadas de alta resolução das páginas dos documentos." +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 "Desativa a segunda camada de cache que armazena versões de média a baixa resolução, transformadas (giradas, ampliadas, etc) das páginas dos documentos." +msgstr "" #: settings.py:55 msgid "Maximum number of favorite documents to remember per user." -msgstr "Número máximo de documentos favoritos para lembrar por utilizador" +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 "Detectar a orientação de cada uma das páginas do documento e criar uma transformação de rotação correspondente para exibi-la ao lado. Este é um recurso experimental e está desativado por padrão." +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." -msgstr "Tamanho dos blocos a serem usados ao calcular a soma de verificação do arquivo do documento. Um valor de 0 desativa o cálculo do bloco e o arquivo inteiro será carregado na memória." +msgstr "" #: settings.py:77 msgid "Default documents language (in ISO639-3 format)." -msgstr "Idioma de documentos padrão (in ISO639-3 format)." +msgstr "" #: settings.py:81 msgid "List of supported document languages. In ISO639-3 format." -msgstr "Lista de idiomas de documentos suportados. No formato ISO639-3." +msgstr "" #: settings.py:86 msgid "" "Time in seconds that the browser should cache the supplied document images. " "The default of 31559626 seconds corresponde to 1 year." -msgstr "Tempo em segundos que o navegador deve armazenar em cache as imagens do documento fornecidas. O padrão de 31559626 segundos corresponde a 1 ano." +msgstr "" #: settings.py:105 msgid "" "Maximum number of recently accessed (created, edited, viewed) documents to " "remember per user." -msgstr "Número máximo de documentos acedidos recentemente (criados, editados, visualizados) para serem lembrados por utilizador." +msgstr "" #: settings.py:112 msgid "Maximum number of recently created documents to show." -msgstr "Número máximo de documentos criados recentemente para mostrar." +msgstr "" #: settings.py:118 msgid "Amount in degrees to rotate a document page per user interaction." @@ -830,15 +830,15 @@ msgstr "Valor em graus para rodar uma página de documento por interação do ut #: settings.py:124 msgid "Path to the Storage subclass to use when storing document files." -msgstr "Caminho para a subclasse de armazenamento para usar ao armazenar arquivos de documento" +msgstr "" #: settings.py:132 msgid "Arguments to pass to the DOCUMENT_STORAGE_BACKEND." -msgstr "Argumentos para passar para o DOCUMENT_STORAGE_BACKEND" +msgstr "" #: settings.py:136 msgid "Height in pixels of the document thumbnail image." -msgstr "Altura em pixels da imagem em miniatura do documento." +msgstr "" #: settings.py:147 msgid "" @@ -858,75 +858,75 @@ msgstr "Percentagem de zoom in/out por interação do utilizador." #: statistics.py:18 msgid "January" -msgstr "Janeiro" +msgstr "" #: statistics.py:18 msgid "February" -msgstr "Fevereiro" +msgstr "" #: statistics.py:18 msgid "March" -msgstr "Março" +msgstr "" #: statistics.py:18 msgid "April" -msgstr "Abril" +msgstr "" #: statistics.py:18 msgid "May" -msgstr "Maio" +msgstr "" #: statistics.py:19 msgid "June" -msgstr "Junho" +msgstr "" #: statistics.py:19 msgid "July" -msgstr "Julho" +msgstr "" #: statistics.py:19 msgid "August" -msgstr "Agosto" +msgstr "" #: statistics.py:19 msgid "September" -msgstr "Setembro" +msgstr "" #: statistics.py:19 msgid "October" -msgstr "Outubro" +msgstr "" #: statistics.py:20 msgid "November" -msgstr "Novembro" +msgstr "" #: statistics.py:20 msgid "December" -msgstr "Dezembro" +msgstr "" #: statistics.py:237 msgid "New documents per month" -msgstr "Novos documentos por mês" +msgstr "" #: statistics.py:244 msgid "New document versions per month" -msgstr "Novas versões de documentos por mês" +msgstr "" #: statistics.py:251 msgid "New document pages per month" -msgstr "Novas páginas de documentos por mês" +msgstr "" #: statistics.py:258 msgid "Total documents at each month" -msgstr "Total de documentos em cada mês" +msgstr "" #: statistics.py:265 msgid "Total document versions at each month" -msgstr "Total de versões do documento em cada mês" +msgstr "" #: statistics.py:272 msgid "Total document pages at each month" -msgstr "Total de páginas do documento a cada mês" +msgstr "" #: templates/documents/forms/widgets/document_page_carousel.html:16 #, python-format @@ -935,18 +935,15 @@ msgid "" " Page %(page_number)s of %(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" -msgstr "Nenhuma página para exibir" +msgstr "" #: utils.py:18 #, python-format msgid "Unknown language \"%s\"" -msgstr "Idioma desconhecido \"%s\"" +msgstr "" #: views/document_page_views.py:54 msgid "" @@ -954,16 +951,16 @@ msgid "" " 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 "Isso pode significar que o documento é de um formato que não é suportado, que está corrompido ou que o processo de tranferencia foi interrompido. Use a ação de recálculo da página do documento para tentar analisar novamente a contagem de páginas novamente." +msgstr "" #: views/document_page_views.py:59 msgid "No document pages available" -msgstr "Nenhuma página do documento disponível" +msgstr "" #: views/document_page_views.py:61 #, python-format msgid "Pages for document: %s" -msgstr "Páginas para documento: %s" +msgstr "" #: views/document_page_views.py:138 msgid "There are no more pages in this document" @@ -976,12 +973,12 @@ msgstr "Já está na primeira página deste documento" #: views/document_page_views.py:177 #, python-format msgid "Image of: %s" -msgstr "Imagem de: %s" +msgstr "" #: views/document_type_views.py:52 #, python-format msgid "Documents of type: %s" -msgstr "Documentos do tipo: %s" +msgstr "" #: views/document_type_views.py:71 msgid "" @@ -989,71 +986,71 @@ msgid "" "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 "Os tipos de documento são as unidades mais básicas de configuração. Tudo no sistema depende deles. Defina um tipo de documento para cada tipo de documento físico que você deseja carregar. Exemplo de tipos de documento: fatura, recibo, manual, prescrição, balanço." +msgstr "" #: views/document_type_views.py:77 msgid "No document types available" -msgstr "Nenhum tipo de documento disponível" +msgstr "" #: views/document_type_views.py:106 msgid "All documents of this type will be deleted too." -msgstr "Todos os documentos desse tipo também serão excluídos." +msgstr "" #: views/document_type_views.py:108 #, python-format msgid "Delete the document type: %s?" -msgstr "Excluir o tipo de documento: %s?" +msgstr "" #: views/document_type_views.py:125 #, python-format msgid "Deletion policies for document type: %s" -msgstr "Políticas de exclusão para o tipo de documento: %s" +msgstr "" #: views/document_type_views.py:144 #, python-format msgid "Edit document type: %s" -msgstr "Editar tipo de documento: %s" +msgstr "" #: views/document_type_views.py:167 #, python-format msgid "Create quick label for document type: %s" -msgstr "Criar uma etiqueta rápida para o tipo de documento: %s" +msgstr "" #: views/document_type_views.py:186 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Excluir a etiqueta rápida: %(label)s, para o tipo de documento \"%(document_type)s\"?" +msgstr "" #: views/document_type_views.py:215 #, python-format msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Editar a etiqueta rápida: %(filename)s, para o tipo de documento \"%(document_type)s\"?" +msgstr "" #: 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 "As etiquetas rápidas são nomes de arquivos predeterminados que permitem a rápida renomeação de documentos à medida que são carregados, selecionando-os em uma lista. As etiquetas rápidas também podem ser usados após a tranferencia dos documentos." +msgstr "" #: views/document_type_views.py:259 msgid "There are no quick labels for this document type" -msgstr "Não há etiquetas rápidas para este tipo de documento" +msgstr "" #: views/document_type_views.py:262 #, python-format msgid "Quick labels for document type: %s" -msgstr "Etiquetas rápidas para este tipo de documento: %s" +msgstr "" #: views/document_version_views.py:46 msgid "Download document version" -msgstr "Transferir a versão do documento" +msgstr "" #: views/document_version_views.py:106 #, python-format msgid "Versions of document: %s" -msgstr "Versões do documento: %s" +msgstr "" #: views/document_version_views.py:121 msgid "All later version after this one will be deleted too." @@ -1061,7 +1058,7 @@ msgstr "Todas as versões posteriores a esta também serão eliminadas." #: views/document_version_views.py:124 msgid "Revert to this version?" -msgstr "Reverter para esta versão?" +msgstr "" #: views/document_version_views.py:135 msgid "Document version reverted successfully" @@ -1075,145 +1072,145 @@ msgstr "Erro ao reverter versão do documento; %s" #: views/document_version_views.py:167 #, python-format msgid "Preview of document version: %s" -msgstr "Pré-visualização de versão do documento: %s" +msgstr "" #: views/document_views.py:69 #, python-format msgid "Error retrieving document list: %(exception)s." -msgstr "Erro ao recuperar a lista de documentos: %(exception)s." +msgstr "" #: views/document_views.py:90 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 "Isso pode significar que nenhum documento foi carregado ou que sua conta de utilizador não recebeu a permissão de visualização para nenhum documento ou tipo de documento." +msgstr "" #: views/document_views.py:94 msgid "No documents available" -msgstr "Nenhum documento disponível" +msgstr "" #: views/document_views.py:107 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "Solicitação de alteração de tipo de documento executada no documento %(count)d" +msgstr "" #: views/document_views.py:110 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "Solicitação de alteração de tipo de documento executada em %(count)d documentos" +msgstr "" #: views/document_views.py:117 msgid "Change" -msgstr "Alterar" +msgstr "" #: views/document_views.py:119 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" -msgstr[0] "Alterar o tipo do documento selecionado" -msgstr[1] "Alterar o tipo nos documentos selecionados" +msgstr[0] "" +msgstr[1] "" #: views/document_views.py:130 #, python-format msgid "Change the type of the document: %s" -msgstr "Alterar o tipo do documento: %s" +msgstr "" #: views/document_views.py:151 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Tipo do documento para \"%s\" alterado com sucesso" +msgstr "" #: views/document_views.py:220 msgid "Download" -msgstr "Tranferir" +msgstr "Descarregar" #: views/document_views.py:343 msgid "Only exact copies of this document will be shown in the this list." -msgstr "Apenas cópias exatas deste documento serão mostradas na lista." +msgstr "" #: views/document_views.py:347 msgid "There are no duplicates for this document" -msgstr "Não há duplicados para este documento" +msgstr "" #: views/document_views.py:350 #, python-format msgid "Duplicates for document: %s" -msgstr "Duplicados para o documento: %s" +msgstr "" #: views/document_views.py:379 #, python-format msgid "Edit properties of document: %s" -msgstr "Editar propriedades do documento: %s" +msgstr "" #: views/document_views.py:415 #, python-format msgid "Preview of document: %s" -msgstr "Pré-visualização de documento: %s" +msgstr "" #: views/document_views.py:433 #, python-format msgid "Properties for document: %s" -msgstr "Propriedades do documento: %s" +msgstr "" #: views/document_views.py:441 #, python-format msgid "%(count)d document queued for page count recalculation" -msgstr "%(count)d documento na fila para a recálculo do número páginas" +msgstr "" #: views/document_views.py:444 #, python-format msgid "%(count)d documents queued for page count recalculation" -msgstr "%(count)d documentos na fila para a recálculo do número páginas" +msgstr "" #: 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] "Recálcular número de páginas do documento selecionado?" -msgstr[1] "Recálcular número de páginas dos documentos selecionados?" +msgstr[0] "" +msgstr[1] "" #: views/document_views.py:463 #, python-format msgid "Recalculate the page count of the document: %s?" -msgstr "Recálcular o número páginas do documento: %s?" +msgstr "" #: views/document_views.py:479 #, python-format msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "O documento \"%(document)s\" está vazio. Transfira de pelo menos uma versão do documento antes de tentar detectar a contagem de páginas." +msgstr "" #: views/document_views.py:492 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "Pedido de remoção de transformação processado para %(count)d documento" +msgstr "" #: views/document_views.py:495 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "Pedido de remoção de transformações processados para %(count)d documentos" +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] "Remover todas as transformações de página do documento selecionado?" -msgstr[1] "Remover todas as transformações de página dos documentos selecionados?" +msgstr[0] "" +msgstr[1] "" #: views/document_views.py:514 #, python-format msgid "Clear all the page transformations for the document: %s?" -msgstr "Remover todas as transformações de página do documento: %s?" +msgstr "" #: views/document_views.py:529 views/document_views.py:557 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erro ao remover 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." -msgstr "Transformações clonadas com sucesso." +msgstr "" #: views/document_views.py:580 views/document_views.py:653 msgid "Submit" @@ -1222,62 +1219,62 @@ msgstr "Submeter" #: views/document_views.py:582 #, python-format msgid "Clone page transformations for document: %s" -msgstr "Clonar transformações de página para documento: %s" +msgstr "" #: views/document_views.py:656 #, python-format msgid "Print: %s" -msgstr "Imprimir: %s" +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." -msgstr "Duplicatas são documentos que são compostos exatamente do mesmo arquivo, até o último byte. Os arquivos que possuem o mesmo texto ou OCR, mas não são idênticos ou foram salvos usando um formato de arquivo diferente, não aparecerão como duplicados." +msgstr "" #: views/document_views.py:688 msgid "There are no duplicated documents" -msgstr "Não há documentos duplicados" +msgstr "" #: 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 visualização listará os documentos mais recentes visualizados ou manipulados de qualquer forma por esta conta de utilizador." +msgstr "" #: views/document_views.py:710 msgid "There are no recently accessed document" -msgstr "Não há nenhum documento acedido recentemente" +msgstr "" #: views/document_views.py:732 msgid "This view will list the latest documents uploaded in the system." -msgstr "Essa visualização listará os documentos mais recentes transferidos para o sistema." +msgstr "" #: views/document_views.py:736 msgid "There are no recently added document" -msgstr "Não há documentos adicionados recentemente" +msgstr "" #: views/favorite_document_views.py:33 #, python-format msgid "" "Favorited documents will be listed in this view. Up to %(count)d documents " "can be favorited per user. " -msgstr "Os documentos favoritos serão listados nesta visualização. Até %(count)d documentos podem ser favorecidos por utilizador." +msgstr "" #: views/favorite_document_views.py:36 msgid "There are no favorited documents." -msgstr "Não existem documentos como favoritos." +msgstr "" #: views/favorite_document_views.py:47 #, python-format msgid "%(count)d document added to favorites." -msgstr "%(count)d documento adicionado aos favoritos." +msgstr "" #: views/favorite_document_views.py:50 #, python-format msgid "%(count)d documents added to favorites." -msgstr "%(count)d documentos adicionados aos favoritos." +msgstr "" #: views/favorite_document_views.py:57 msgid "Add" @@ -1286,23 +1283,23 @@ msgstr "Adicionar" #: views/favorite_document_views.py:60 msgid "Add the selected document to favorites" msgid_plural "Add the selected documents to favorites" -msgstr[0] "Adicionar documento aos favoritos." -msgstr[1] "Adicionar documentos aos favoritos." +msgstr[0] "" +msgstr[1] "" #: views/favorite_document_views.py:73 #, python-format msgid "Document \"%(instance)s\" is not in favorites." -msgstr "Documento \"%(instance)s\" não está nos favoritos." +msgstr "" #: views/favorite_document_views.py:77 #, python-format msgid "%(count)d document removed from favorites." -msgstr "%(count)d documento removido dos favoritos." +msgstr "" #: views/favorite_document_views.py:80 #, python-format msgid "%(count)d documents removed from favorites." -msgstr "%(count)d documentos removidos dos favoritos." +msgstr "" #: views/favorite_document_views.py:87 msgid "Remove" @@ -1311,93 +1308,93 @@ msgstr "Remover" #: views/favorite_document_views.py:90 msgid "Remove the selected document from favorites" msgid_plural "Remove the selected documents from favorites" -msgstr[0] "Remover o documento selecionado dos favoritos" -msgstr[1] "Remover os documentos selecionados dos favoritos" +msgstr[0] "" +msgstr[1] "" #: views/misc_views.py:19 msgid "Clear the document image cache?" -msgstr "Limpar o cache de imagem do documento?" +msgstr "" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "Limpeza da cache de documento na fila com sucesso." +msgstr "" #: views/misc_views.py:32 msgid "Scan for duplicated documents?" -msgstr "Procurar documentos duplicados?" +msgstr "" #: views/misc_views.py:39 msgid "Duplicated document scan queued successfully." -msgstr "Procura de documentos duplicados na fila com sucesso." +msgstr "" #: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." -msgstr "%(count)d documento movido para o lixo." +msgstr "" #: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." -msgstr "%(count)d documentos movidos para o lixo." +msgstr "" #: 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 o documento selecionado para o lixo?" -msgstr[1] "Mover os documentos selecionados para o lixo?" +msgstr[0] "" +msgstr[1] "" #: views/trashed_document_views.py:64 msgid "Empty trash?" -msgstr "Limpar lixo?" +msgstr "" #: views/trashed_document_views.py:78 msgid "Trash emptied successfully" -msgstr "Lixo removido com sucesso" +msgstr "" #: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." -msgstr "%(count)d documento no lixo removido." +msgstr "" #: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." -msgstr "%(count)d documentos no lixo removidos." +msgstr "" #: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" -msgstr[0] "Apagar o documento no lixo selecionado?" -msgstr[1] "Apagar os documentos no lixo selecionados?" +msgstr[0] "" +msgstr[1] "" #: 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 a perda de dados, os documentos não serão excluídos imediatamente. Primeiro, eles são colocados no lixo. A partir daqui podem ser finalmente apagados ou recuperados." +msgstr "" #: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" -msgstr "Não há documentos no lixo" +msgstr "" #: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." -msgstr "%(count)d documento no lixo foi recuperado." +msgstr "" #: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." -msgstr "%(count)d documentos no lixo foram recuperados." +msgstr "" #: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" -msgstr[0] "Recuperar o documento no lixo selecionado?" -msgstr[1] "Recuperar os documentos no lixo selecionados?" +msgstr[0] "" +msgstr[1] "" #: widgets.py:81 widgets.py:85 #, python-format msgid "Pages: %d" -msgstr "Páginas: %d" +msgstr "" 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 6313fe9ea2..985eb68208 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 fc05a3d176..83d751ef54 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index 02fe14e4ee..10f6157597 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 01129e3bd4..be98a040df 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 9e51641e71..eaa021a3d7 100644 --- a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/tr_TR/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 3128db68f7..b0f7c4d2a6 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po index 690d7400b9..fc740ecde2 100644 --- a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 779ed4d1c5..c36304f511 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 50020addf9..ad05a9dac5 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 53dd2e0f17..1d26e35445 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 @@ -9,7 +9,7 @@ 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-07-05 01:30-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" 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 fe7d766399..45d03028af 100644 --- a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/cs/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 6be65a7b3e..23328f9084 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 @@ -7,7 +7,7 @@ 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-07-05 01:30-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" diff --git a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.mo index 590d526cb9b3bdf3848c41bbab072205e8e66302..da619a62bede4174ad95da1a0739ccc8ef328dd1 100644 GIT binary patch delta 210 zcmdnRy_b7JPkk#R1H)n_1_n+B1_n(Q1_l8jZ49MdfHXId9}1-PfOH~|76H-|fHW(R zUJ9fIf%Ix1%?G6S0%>s|eFjML0O=<{+7L*81ky8sv@%c=&^iVVAO_h71e>`TpD{X` z>l&CS7#Ud^8fzN>0hdo=afxn7QDRHkZ3v{_0qL1QS^=mDXdMFw5QFRkg3a8F&lv5@ zbPY`v49u-eEVT`QfXgSbxI{OkC^4@%C$S{I$V$N}wJ5Jr!6perIe^HF#G(}4+{B^^ My_D3=M$Fwz0KZox7XSbN 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 7aca2efd6e..9e10f900d4 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 @@ -14,9 +14,9 @@ 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" -"Last-Translator: Berny \n" +"POT-Creation-Date: 2019-07-05 01:30-0400\n" +"PO-Revision-Date: 2019-07-04 22:13+0000\n" +"Last-Translator: Mathias Behrle \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" 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 3629c8e405..80a6a0c8b4 100644 --- a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/el/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 2fea2d1d6b..9dd81cb6e2 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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 9dd31f9340..bcec7de37d 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 78bd2232fe..db2740fc7f 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 c02ae8f8b6..c3f7e7ec56 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ 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-07-05 01:30-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" 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 5f604e9524..70bbe9ae48 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 3b61e8a7a0..4e0502f030 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 3d65847c80..a575cd5988 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 cae8227af1..4eed769160 100644 --- a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/lv/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 a156d1216d..d6ded2b2f2 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 @@ -10,7 +10,7 @@ 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-07-05 01:30-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" 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 cca3d38c0d..dd777cab93 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:30-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" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.mo index d6dbca3c9e12fb9d7a96493fdad6f0bf3f2d0f55..b64ab3f1b15bd6db1357eb9b0f146f6a384392c3 100644 GIT binary patch delta 190 zcmaFMy_%)|o)F7a1|VPoVi_Q|0b*7ljsap2C;(!9AT9)AHXv>UVjdvw0OE8;1_qF3 zK_LDMWOD#%ekKM6As{UQq=76;PC)Tw0W<;0V-kczI$7v$*i9Ksyin z9QF(BBJ4kyZ+AWr;xxDeeggJD@4E+{0r$Z#!5_g3;BVk5@HzM~_yY9)e}SKZf7kP` z!6l6U1%C!VJ0Zjn{imSUJ-Z;pB6zvxGI$B&4e%=11%19hfj++{pwIgm==1m!`~rLh zdYw1m3b^p05HG3^?H6n&M_dfsB6U{mR-zS1 z4rQY1IT~ma(pOU#s&~9Q?bu{i^v$H&OojC!<76;k!^%;)-X!sG#EPO3M~^sOC9TrQ zOwo;`tFrayph3cEZ0R6De~;ni3Zpn~QYlfWTI9Xk9i=R-gFaU}$7Mv<=pQ(8!A=}} z&&DQNh18J~sc3tvv)kx#u8j*ic9_J$x5dx~eH~JxdoSqmIPvbmmUJA_dVB3g(Ed7D zyGHGA!mBr~w9y*hA$-s`QrT2Ge}g@}$Hr;UN|R_fs9_<89Q0XcA$1X~7#3`qmPgLz zVXJj;aL{yKAsO)FW~8&0srH&y=JO0V&TK2Kby~S=tu#72o$dK?)|&0cEv+0LAm~qW zBqCJOlQ4;gFGWxHP_R?>7z&ZiLR@CoW!id)*C#&WG< zHYCaESX*(I)u_m-iq;e}L-}>*1, 2011 # Vítor Figueiró , 2012 @@ -9,7 +9,7 @@ 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-07-05 01:30-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" @@ -21,21 +21,21 @@ msgstr "" #: apps.py:17 msgid "Dynamic search" -msgstr "Pesquisa dinâmica" +msgstr "" #: classes.py:100 msgid "No search model matching the query" -msgstr "Nenhum modelo de pesquisa correspondente à consulta" +msgstr "" #: forms.py:9 msgid "Match all" -msgstr "Corresponder a todos" +msgstr "" #: forms.py:10 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 assinalado, somente os resultados que corresponderem a todos os campos serão devolvidos. Quando não assinalado os resultados corresponderem a pelo menos um campo, serão devolvidos." +msgstr "" #: forms.py:29 templates/dynamic_search/search_box.html:21 msgid "Search terms" @@ -48,30 +48,30 @@ msgstr "Pesquisa" #: links.py:11 views.py:86 msgid "Advanced search" -msgstr "Pesquisa Avançada" +msgstr "Procura Avançada" #: links.py:15 msgid "Search again" -msgstr "Pesquisar novamente" +msgstr "" #: templates/dynamic_search/search_box.html:24 msgid "Advanced" -msgstr "Avançado" +msgstr "" #: views.py:25 msgid "Try again using different terms. " -msgstr "Tente novamente usando termos diferentes." +msgstr "" #: views.py:27 msgid "No search results" -msgstr "Nenhum resultado de pesquisa" +msgstr "" #: views.py:29 #, python-format msgid "Search results for: %s" -msgstr "Resultados de pesquisa para: %s" +msgstr "" #: views.py:74 #, python-format msgid "Search for: %s" -msgstr "Pesquisar por: %s" +msgstr "" 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 98b15dfe36..732f28883a 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 @@ -11,7 +11,7 @@ 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-07-05 01:30-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" 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 44685d559e..f787136233 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 @@ -9,7 +9,7 @@ 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-07-05 01:30-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" 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 099e5dc374..418a81b6aa 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 10a5072907..47c80c7eff 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 @@ -7,7 +7,7 @@ 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-07-05 01:30-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" 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 6403903284..03d682782a 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 @@ -9,7 +9,7 @@ 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-07-05 01:30-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" 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 b97a511bb0..dbf1860b43 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 @@ -8,7 +8,7 @@ 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-07-05 01:30-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" 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 6dc56d9aaa..97f82b15b1 100644 --- a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index d9b17a5d0a..6839351ec1 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index bdf8655c69..67d42e01cb 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 5f559531a2..da3ed88886 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po index fae2d9f8cc..46a908dca7 100644 --- a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/cs/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 1dc335ae13..fb0d8996e0 100644 --- a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da_DK/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 7a114d37ac..8af3b3b5b3 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/el/LC_MESSAGES/django.po b/mayan/apps/events/locale/el/LC_MESSAGES/django.po index 2486e75905..b9fc874cfc 100644 --- a/mayan/apps/events/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/el/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index baa3176469..c871411405 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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 24c36ebc7e..aa9eef9cdb 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index 3822460e29..afd63fc161 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 5260060032..46bcdbe217 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index 62a70fc6b6..a2da9ca270 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index eaabfc7e46..a754439eea 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index 8982243378..a3c17bc692 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po index cec70652bb..8ce3cf99dc 100644 --- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/lv/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" 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 ec974b1498..47fe7304bf 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index f46ab76167..17e9914660 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo index 78f46edaa9989c30f4ac4c024bde9afaf0c2f9ca..4fded9a497621030c1a7dd8b62e27f333eaa386d 100644 GIT binary patch delta 402 zcmXxg&q@MO6vy#n{woV9Z4qHMwFsn@JC`j~XfqHPv}rNrWf)Me=p{%5-30AiSWnO+ z^a#;gL=Vt21o=JAbl~v0-1(h*FY|Nomz#Z;GOt4I&=q=0@6lhhmX{K#;t6K)0t?v2 z9A04&Z?J?RYHorVoZ|*Qq2`~H{RNVp$qS2PKKzo>!Ad$l@Dz2Rj=R{vGG3w{e4BWe z7-F9N9_j-fa`ZZ@=WNqjn$dgW;%0r_7EOLVs2}uiXl*V((`Wm3B&`QCaGrY{ns_;0 zHnO#%AM}m*Ryx5bH155cU!)H29q~>yv|iVEM#t>`NWE}=;NV8UO$Q literal 3178 zcma)-O>7%Q6vqcz3YgE9Zvu1*4J5Q1rzxndLn@Ufg`&8P5~mzMLgU?uz3qBunVD@G z1nLc`5<)^ysS>Bcp&UR+AbR6MK%y7K0k}{hRa}ZVAdW~N@qe>p$98JO$m5@9cjnE! z|9kWN%a)C28QMqXGn0m*+0lAmw-_wRyO%Fg-m2OypA0!aIO4s!4-ko^4>d{@*<-nf9feA3+~Re-eEsIyJIQ?QwMSml~b#3G{ntfQAscn9zAC_H-`N zn(~p_!{{7+6rD70H`0e1`31LJBQ5Sgr(B{uyc?b3)ozpnq$fKNhSC^ro07|uGPQ=Q zB`#8~>c?eh@!G~J_2_!2G@BMyVrIl`+>&fYYo&RfMZ(5uqp-zIUN@nRGqN$shfV*i zVv~WB={#(PzI!ZP;}I;cn`Zcu(iOMsHQu?C$_R#?084q2tau}KC4)b-#+x-t84x|Au;q{coin6e7*VhHG@<0OY6ExI0#dAq$wbDGnx?zFR_E)!N2`UDqA z!iC`m`}ha#!HSO-J0c)HeVI&z_@(f%@lqTj4hUTLz_6pm$y}g&B^~(YKNguH-2EcX zOA)aJI`V>58gGm3oT}@d7`9O4NL`YCjYQQ&Leh1o1~gY(%TUG;J?(POjIAxlo?Y42 zGr%S*#>y6}3EhyE)tZvxiJmI2BL$>8P`z_{_GF9ciBv7)iqI*IN+j;VnvX7qi$-cT zrxo3y;BXWiliDC06WrOWKff$ zRpE2kEN|q}NIufEHmj7&%gf7SmMp|e^3+(UT4i0V)#VnQGmufsloM~KoZ0edsd~6N zv*ymOvGLMDm0H}Dpym?T%2T$SB_hU!51T?8X{Q!zhl0Ip^JvEwb$&x0I5a?IiZPX* zfzfffRm>PS{4KL^%kw5z5UywA%> cnoy-p8OF#K9NL#sltARcqK)bPMYy2<0#t-\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" 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 3a59ead06c..ef73ec2419 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 49d58f1012..1039d6b242 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 188c458fad..b686002bf7 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 f5ffffcd67..3efe474812 100644 --- a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/tr_TR/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 9db1d6ff53..82dd97b922 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po index 59c314ce3d..fb40697b9e 100644 --- a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 db0b6a158d..f5aee3affa 100644 --- a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 31cb3367af..5d7fdb3643 100644 --- a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 853d050cce..726f129499 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 fb0dfbde9e..90eb47ad45 100644 --- a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/cs/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 004a196c70..599ff6e149 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 240a3aedfa..36d015edf8 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 981bfbb747..0f59811a5f 100644 --- a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/el/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 b49fb54e5d..9c000c7a0f 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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 4eef409729..10ae6d8cf0 100644 --- a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/es/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 0fd2c94361..f69a9cc60a 100644 --- a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 db2645c736..96f085c9fb 100644 --- a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 e4978cc72f..d20d819bad 100644 --- a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 3d1363e89a..996381de4a 100644 --- a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 e36a8aa66f..035a892a01 100644 --- a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 da5e572394..bcd8e0fd92 100644 --- a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/lv/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 5d9758b8d7..45654bd72f 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 @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 b23049c014..138cd22c51 100644 --- a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.mo index 898126218087a2c7aa092b0219c3751e2f0a141d..9289032e11bcbc75ba8b31c92fee1375f3dbd6e5 100644 GIT binary patch delta 179 zcmbQJyN{**o)F7a1|VPoVi_Q|0b*7ljsap2C;(z!AT9)Aka#_mZUxd)85tP5fwUkH zD>6aMFb2{fbrwJxD9ykO#2^6Vg6&{%$xklLP0cG&D5)$+W#INnOiImR2usWVWX{66?N_!Dpjd=oqa{sKG> zegqx@{|9~+JoIo7JOw@veiA$jei2*+KM!`n1@H~tKeab$-xdNak>ji+#bP+bKonW?0W}%3;Z)E`d)^d5{ETV@^Tx*9nS$w@;MZH zC58|15ud-zM=nJ8SW3Kv({eq{NBkbX2$8QTc_$nY`$)U56VmJBATbs{8+_!Fn2CLu z%pA=Uo%KOzAK*p>m0G9iujFWK`EU9crglFHPDe%WS-*ZsjI7&EP`1Rc>QLPiI-R zF-&dWq!}xmOYKJPjPj}m&slIGcS%<}+tyLEQ%F>?+2+2T8tt%RVAW=l4ykVjiya+r znRH@|4~NljjqO?WTv*d!k8FJGv_RYmYpYlgH<_a?x_*p zw6V=PCfvIv%Qw2#Nqi(K(*y*Udkt6f(XM8UF2#>n>FvTTwcRoCBy-fZ7Q51{7SvQ@5(XZn zCbOZzN-xQW-@431o263{gg9~j+YFBsvZa=)5Y+WFhds94@z&vIszO83@mI&88r34@ zx1lpCZlYN%mTZxqW0jWKY_3S4XMz95-_4F?u%vIbfBf5u)uU?V?ar7fubJ^TL+zr6 zcT%Ebd-^)cO|TL>lg2tyG0_SxBj<|VFi~*DZlpTh@!>$$R;s&_dU`_^G^T^q*32i|K+R&OLqU54aS>4pUFDyvL%0TzEjr2xD%&!%FZ;-*N7hE?kPYWJo zJ=3UIQjL)iBpY*m(;>S>%~*YPjJm# z(V1(k(=4+{J1O;59p@&}>V}Q_TAj7AZadE0hRQ`+&l@2oF3P7l_Jm76AQ zEXD04+hPG7C&0LG}R7Z_v*q*gi-1CpwxrH;TxIK3)R?nSNCuh&hOqgyG z8E68Kgg;up+n!wZ9l2U9p3gdCzVV*n!!ZwWo0$= zi0g#5D}r<}|0K*i_1&^)9n_>OtLg~OwulsZXY=u_kur}add-q*G#pRjLv^UdPA#2{{IF|XXG+hcHmARkk z%_ceDSBjfzx~+alvf|pUoIxoeu#?P1lNGs?P*c^FH!Wl3xYcEFqZRCa(8HiwtoJ(> zhE~Dqnyl*$V5Z1MTSZOwIqz9PY?7*T~dYaB{pw42V$5;*W#6NJqM0y|P|0W>y`r;F9SlQJ>hrlL#;IiQG~~ zFhcr4ElL>~n|AMP+ICWpSrZF+u!U39_p*SKT4awWpsK;Ogo)4k(K3-g7yE`8kNNVV z-H2@BOj{FuMkE<4%i@lhQjOvT^d6ZjOLjy2QaVYmM@*R=QALNKmZiN-iwg@)+?f)I z&}O|P-o4Xj@SWI*2wXYP5yLvf_f#sz)SN8h&6wIoM)UrJOzP5m, 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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -29,7 +29,7 @@ msgstr "Nome" #: apps.py:56 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" -msgstr "Metadados do arquivo" +msgstr "" #: apps.py:101 msgid "Return the value of a specific file metadata." @@ -37,44 +37,44 @@ msgstr "" #: apps.py:113 apps.py:117 apps.py:170 apps.py:179 msgid "File metadata key" -msgstr "Devolve o valor de um metadado de arquivo específico." +msgstr "" #: apps.py:174 apps.py:183 msgid "File metadata value" -msgstr "Valor dos metadados do arquivo" +msgstr "" #: dependencies.py:14 msgid "" "Library and program to read and write meta information in multimedia files." -msgstr "Biblioteca e programa para ler e gravar meta informações em arquivos multimedia." +msgstr "" #: drivers/exiftool.py:26 msgid "EXIF Tool" -msgstr "Ferramenta EXIF" +msgstr "" #: events.py:12 msgid "Document version submitted for file metadata processing" -msgstr "Versão do documento submetida para processamento de metadados de arquivo" +msgstr "" #: events.py:16 msgid "Document version file metadata processing finished" -msgstr "Processamento de metadados do arquivo da versão do documento concluído" +msgstr "" #: links.py:24 msgid "Attributes" -msgstr "Atributos" +msgstr "" #: links.py:31 links.py:34 msgid "Submit for file metadata" -msgstr "Submeter para metadados de arquivo" +msgstr "" #: links.py:41 msgid "Setup file metadata" -msgstr "Configuração de Metadados em ficheiro" +msgstr "" #: links.py:46 msgid "File metadata processing per type" -msgstr "Processamento de metadados de arquivo por tipo" +msgstr "" #: methods.py:38 msgid "get_file_metadata(< file metadata dotted path >)" @@ -82,27 +82,27 @@ msgstr "" #: methods.py:41 msgid "Return the specified document file metadata entry." -msgstr "Devolve a entrada de metadados do arquivo de documento especificado." +msgstr "" #: methods.py:62 msgid "Return the specified document version file metadata entry." -msgstr "Devolve a entrada de metadados do arquivo de versão do documento especificado." +msgstr "" #: models.py:22 msgid "Driver path" -msgstr "Caminho para o driver" +msgstr "" #: models.py:25 msgid "Internal name" -msgstr "Nome interno" +msgstr "" #: models.py:30 models.py:74 msgid "Driver" -msgstr "Driver" +msgstr "" #: models.py:31 msgid "Drivers" -msgstr "Drivers" +msgstr "" #: models.py:51 msgid "Document type" @@ -110,43 +110,43 @@ msgstr "Tipo de documento" #: models.py:55 msgid "Automatically queue newly created documents for processing." -msgstr "Fila automatica de documentos recém-criados para processamento." +msgstr "" #: models.py:62 msgid "Document type settings" -msgstr "Configurações de tipo de documento" +msgstr "" #: models.py:63 msgid "Document types settings" -msgstr "Configurações de tipos de documento" +msgstr "" #: models.py:78 msgid "Document version" -msgstr "Versão do documento" +msgstr "" #: models.py:84 models.py:100 msgid "Document version driver entry" -msgstr "Entrada do driver da versão do documento" +msgstr "" #: models.py:85 msgid "Document version driver entries" -msgstr "Entradas do driver da versão do documento" +msgstr "" #: models.py:92 msgid "Attribute count" -msgstr "Contagem de atributos" +msgstr "" #: models.py:104 msgid "Name of the file metadata entry." -msgstr "Nome da entrada de metadados do arquivo." +msgstr "" #: models.py:105 msgid "Key" -msgstr "Chave" +msgstr "" #: models.py:108 msgid "Value of the file metadata entry." -msgstr "Valor da entrada de metadados do arquivo." +msgstr "" #: models.py:109 msgid "Value" @@ -154,37 +154,37 @@ msgstr "Valor" #: models.py:114 msgid "File metadata entry" -msgstr "Entrada de metadados do arquivo" +msgstr "" #: models.py:115 msgid "File metadata entries" -msgstr "Entradas de metadados de arquivos" +msgstr "" #: permissions.py:10 msgid "Change document type file metadata settings" -msgstr "Alterar configurações de metadados do arquivo de tipo de documento" +msgstr "" #: permissions.py:15 msgid "Submit document for file metadata processing" -msgstr "Submeter documento para processamento de metadados de arquivo" +msgstr "" #: permissions.py:19 msgid "View file metadata" -msgstr "Ver metadados do arquivo" +msgstr "" #: queues.py:12 msgid "Process document version" -msgstr "Versão do documento do processado" +msgstr "" #: settings.py:14 msgid "" "Set new document types to perform file metadata processing automatically by " "default." -msgstr "Definir novos tipos de documentos para executar o processamento de metadados de arquivos automaticamente por padrão." +msgstr "" #: settings.py:25 msgid "Arguments to pass to the drivers." -msgstr "Argumentos para passar para os drivers." +msgstr "" #: views.py:35 msgid "" @@ -193,38 +193,38 @@ msgid "" "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 "Metadados de arquivo são os atributos do arquivo do documento. Eles podem variar de informações de câmera usadas para tirar uma foto para o autor que criou um arquivo. Metadados de arquivo são definidos quando o arquivo do documento foi criado. Atributos de metadados de arquivo residem no próprio arquivo Eles não são os mesmos que os metadados do documento, que são definidos pelo utilizador e residem no base de dados. " +msgstr "" #: views.py:43 views.py:62 msgid "No file metadata available." -msgstr "Nenhum metadado de arquivo disponível" +msgstr "" #: views.py:46 #, python-format msgid "File metadata drivers for: %s" -msgstr "Drivers de metadados de arquivo para: %s" +msgstr "" #: views.py:65 #, python-format msgid "File metadata attribures for: %(document)s, for driver: %(driver)s" -msgstr "Atributos de metadados de arquivo para: %(document)s, pelo driver: %(driver)s" +msgstr "" #: views.py:88 msgid "Submit the selected document to the file metadata queue?" msgid_plural "Submit the selected documents to the file metadata queue?" -msgstr[0] "Submeter o documento selecionado para a fila de metadados do arquivo?" -msgstr[1] "Submeter os documentos selecionados para a fila de metadados do arquivo?" +msgstr[0] "" +msgstr[1] "" #: views.py:114 #, python-format msgid "Edit file metadata settings for document type: %s" -msgstr "Editar configurações de metadados do arquivo para o tipo de documento: %s" +msgstr "" #: views.py:125 msgid "Submit all documents of a type for file metadata processing." -msgstr "Enviar todos os documentos de um tipo para processamento de metadados de arquivo." +msgstr "" #: views.py:147 #, python-format msgid "%(count)d documents added to the file metadata processing queue." -msgstr "%(count)d documentos adicionados à fila de processamento de metadados do arquivo" +msgstr "" 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 fcceaa3238..4696a944e8 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 62716f1ce2..e3fffab8d0 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 22608ad045..bcdb87b596 100644 --- a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 0cfd4df8fa..7411e3b782 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 19841b0c9c..ee2fcd22fb 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 b0ef6a6dbc..3a34c08248 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 @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 2b45d320c3..cb7bb6fa40 100644 --- a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/zh/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-29 02:17-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index 62ff6abc67..9573a79f40 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -22,7 +22,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "العنوان" diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 570a8e9fc0..2f53e26918 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -22,7 +22,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "" 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 f03fedea19..71e2ef31fd 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -23,7 +23,7 @@ msgstr "" msgid "Linking" msgstr "Spojni" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Labela" diff --git a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po index 2191d51ab4..31d14861fa 100644 --- a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/cs/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Označení" 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 e166fa63de..177e8149b6 100644 --- a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da_DK/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etiket" 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 d0ba23a0e0..ef885ad239 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -27,7 +27,7 @@ msgstr "" msgid "Linking" msgstr "Verknüpfungen" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Bezeichnung" diff --git a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po index 2a71f44544..83eef506e7 100644 --- a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/el/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Ετικέτα" diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po index 94ceb043a3..f58fbbe605 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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "" diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index f5bbc73fe5..cd66ae0040 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -24,7 +24,7 @@ msgstr "" msgid "Linking" msgstr "Enlaces" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etiqueta" diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index 6377d50224..a948ccf768 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -23,7 +23,7 @@ msgstr "" msgid "Linking" msgstr "ربط دادن" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "برچسب" diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index e0033858a2..6def93ba77 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" @@ -26,7 +26,7 @@ msgstr "" msgid "Linking" msgstr "Liaison" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Libellé" diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index 534079db22..c3b4025555 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -22,7 +22,7 @@ msgstr "" msgid "Linking" msgstr "Összfűzés" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Cimke" diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index 69bf7e1711..6b018841a2 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Label" diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index f9a9cfe5bc..809792c597 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -23,7 +23,7 @@ msgstr "" msgid "Linking" msgstr "Collegamento" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etichetta" diff --git a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po index 13262c1f78..45a5f0bcc2 100644 --- a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/lv/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-0400\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" @@ -22,7 +22,7 @@ msgstr "" msgid "Linking" msgstr "Saistīšana" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etiķete" 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 49ed2c403c..806b054e01 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -23,7 +23,7 @@ msgstr "" msgid "Linking" msgstr "Koppeling" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Label" diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index eb61b65cd5..ce702955bd 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -24,7 +24,7 @@ msgstr "" msgid "Linking" msgstr "Łącza" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etykieta" diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo index caf3754a415c4b3c529fbac3ece1b0a0f7443276..fe0ebca0d79a6db56cc48fab41ed8b24796510c9 100644 GIT binary patch delta 890 zcmYk)Pe{{Y9LMqRn(nthYP#*0(@IT6Q5&w>$%_~+5X4ItBmaepDC!PV6grF!si%S- zBDz_JPCX)pi?0s9XxvI{TU5<;Mwch_B_w``+T40S@xA*{2s4*ZnO^i z6?!&c){mnX_@IS@W?dLTA2WCf?_dZgF^+Q>!40g!N7#g0n801E$M@Kd2Uu-Zv|kLG z`Qa2}7-98w^idn!M*gx14C4%5#zj=X$Ed`gqSn8~7W{x0@f&LXPb8oP`AA^|`-pGt z3~Kmc?B5^vQ32ObMc71b{1CPAHZD-5H#oreI?t>PN3a8zP>DXlR(yd`+(T7tAA9i# z+lX&x479P&Dw#!+wY#XR7{^B3!8GooPV@!I!%mPb>^Exu87kpU%5w`ds08NlCgxEG zevL(K{Eh)@>=3WwSIprlYGRhvnm2?>>>jEzQ>Z`>P=QuZ3Dwedby}-Z|KGG;jpFIr zi{(dA#}{pQjjli{lkQFrM*))bN>ie$lCDUnR?~x0>GcjOO%>8%$f?{oOZl2~C3?te zaqZr~Krh-{ZK%&pd%m0UGO>aU=V#Yf=2zDW?qxXVZbWVxoe>GejVh`e2;(H&r{$f;0vJi{2F{O_!{^X@C{IQ zW_*<2zX|RJ9|vc^mqGdaU*L7%j`tb!Y48Ae6PSb2`#ktA@GQvI%G%6nF-_7CZ~`Xa3GV@$mu{$-ftY7Hopr$339pdj|Xz z_zh6DUsm$+3X(-}vY^&ALFv5{R9wCU@@Lkn_wRtp zpC5s9;7j1;;G5v1;10-Y!KXmk{Y&sh@C~p5&M?`6cZ1@~L*Rb!$KWaObx{5}NRTnt z+yiQ#_kz;rK*jSh@OtnGQ2YJ^xEK5rC_Y@urVwQ;sQByyW%nUad3qnHc|Qa-?>SI; z`VuJK{05Ys--FWgDkystqt9~d!i5_ywrCDjU#3CX{TXiQkq-GoKGyzpDSyQc@mSXl z+_Ft}NN4>*y}6lt7q|Qcjm_2E$|1#5oDuJ}SNTJ=K-VqYv)tEki;vKHbSa;1;-2Te zidz@%3x2kG*>uhDPM8Cqj#OhIcX|FC_l?!JeV}}(OED3j4s*-@w{jog-ovd+oX{mM zDBmvSKFF=ylK+R-=Xns%&7nB9savtFERB;Q$x?5N%=%uG7q*+E4>ax0tNl)MXgNx{ z(dn+Uan>62Tw2&-t?ztoV7$hgTe4m+vflNhJStp_BwyHUY2#ws&lB{l*$3QO(7Mt| zS{++-5??dGt|Z;AJ?(5%6j7_=;#s5*ZLK}pD0f=My)6ZTwhy=$a)xpftB|%>(UUYv00^z`hrdCeYGYYi5*YyHc4xmp~J2q`985@ z+V8ZHx4G+vFvA>%hYVqGEN`Qf(xSCA>Jcb-<+^48`h|aWWg}K@9ti@pq&C}|g|PG3 zEaW*6YrE7zza(wjxUOoy;&E8DKr9Pp zA5CMo>bz~|*`PlXA*bPtK*1S1@B?VM2EB@o^+}IR${~N&cX^SpHcDe9hkKA|R#dB| zgbbUtcZ`yesogHL4Gh-4g5#C6ouuzcl48Zd^kD!9>oTv&l6bxr5` zZ46~3M031NGk&zKkY{oIlOya%s!e)u;3y+bQQsuW*QWg+yf?OSoMQEFDl9`!Y_?o= zxJu>vw6Vh$i9(XLx&yJ;QZykkRE|S6P>7b2oU)6vdb5VfL|9Qy>*d`~9H^uqc4#0| zdCQ#=2l|wp=(!?_qaqS{RC_ZNkN4!Icw;%|EzOFO$TeF%C9%~ zJ1{dR8KP9v>+j0qx~L?~Ao+6F9w__Wxcsnm+kpvcyHu@_&e6*Th4|NGx$y;uc(w1^ z^LBDi=GpzYzi~8f+~sodscDZ#Yf)+!4j;c`>XhqedC@rT+ezHGdC>Na#jI(kPTtly z<(3moZyYAOn|AN~o*NtUH#Fw2xAQkN_wLy}&oy-{@6lYt5X#H=G@%M%F1jZ3CWUMo#iN>%geR-Tu*j3T-@_> z-Ac|}znGhzI)3!{!gxD-X6L799157*ScF(jTe#I?uHS_{`)#We<=zzs?p!?5*f*Xh zjTFnqLfXn==-0ISPAA34-lpvrQzyHFJnA+$Dtf+Y(|&mM2lno_<>P@}slDoe-7~#^ zif$`u;VlS|X3HF$;e10sx5W3e z6pAOFf*aOKQf=|(Iq;xr%i_oqRJ*+XY%WR$(Rg8*_3F#kpU4w^%xr<;4SKQETh1z_ zh~#Z+HCpoZCpg;NY7}R5Q;5q)`+YJqhc@osYu9~phLY!XaK=%LDc$ww>E-ysz>Jip zSX6d$lpQ})HFG_E%j{%ZG%gND7&U87NLdH->i$=+`W71s<+RSt8JFSt^Be% zB4(k>`3?unDc8$5T}M`66!G2Gox}ccxMYItVC2FoXF`$>1#QtUCXLE0PS?Ie>k+jm zmqclT1$0f@kZ`+iHb~0GP2`40n@;fF*4|S6O-LAGO>`$Tmt?{uk)=b51p2^KQh5Cb zw470BCy9VM$PKid7=Yo_$-b#%O^A#+B;Uqa=uK^u(VgaKc3VuVcc;+Q+!8_Djrm92 za(VieLkmN>;yph;B6AxR=2?C>waBWdoe%m^Z%hI*xi?C>nP6L2Kk}UNCbX(~;>wKl zuIIWOc?EJPMlRF`^&X)hWCId^G-1{rn^2W#9(!s`5WtTy$f`(Jg%G{8DZ@S>BguQt zlikEn`RVS*a#oIZL(dxe*yjGouMSJ5{dftTMHepcRuSWG7N3^Ge`9W9Y z9+i&G8DBSG^O)-J1j(7+kHQLK1)J;xFmk@-q!5*C{6TCS-bS6wF<%-~A?wh0DXXBQe zF58m~ihsREJ((;QA>i*W`j z7VFRShG=({P5An=%dSh-apV*#H0l diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index 5f9214591d..f0bec7fd6f 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,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -24,7 +24,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Nome" @@ -35,15 +35,15 @@ msgstr "Ligações inteligentes" #: events.py:12 msgid "Smart link created" -msgstr "Ligação inteligente criada" +msgstr "" #: events.py:15 msgid "Smart link edited" -msgstr "Ligação inteligente editada" +msgstr "" #: forms.py:36 msgid "Foreign document field" -msgstr "Campo de documento externo" +msgstr "" #: links.py:26 msgid "Create condition" @@ -59,7 +59,7 @@ msgstr "Editar" #: links.py:46 msgid "Conditions" -msgstr "Criar condição" +msgstr "" #: links.py:51 views.py:243 msgid "Create new smart link" @@ -67,7 +67,7 @@ msgstr "Criar nova ligação inteligente" #: links.py:63 models.py:40 msgid "Document types" -msgstr "Tipos de documentos" +msgstr "" #: links.py:73 msgid "Documents" @@ -150,24 +150,24 @@ msgstr "" #: models.py:35 msgid "Dynamic label" -msgstr "Etiqueta dinâmica" +msgstr "" #: models.py:37 models.py:199 msgid "Enabled" -msgstr "Ativado" +msgstr "" #: models.py:47 models.py:175 msgid "Smart link" -msgstr "Ligação inteligente" +msgstr "" #: models.py:87 #, python-format msgid "Error generating dynamic label; %s" -msgstr "Erro ao gerar etiqueta dinâmica; %s" +msgstr "" #: models.py:102 msgid "This smart link is not allowed for the selected document's type." -msgstr "Esta ligação inteligente não é permitida para o tipo de documento selecionado." +msgstr "" #: models.py:179 msgid "The inclusion is ignored for the first item." @@ -175,15 +175,15 @@ msgstr "A inclusão é ignorada para o primeiro item." #: models.py:183 msgid "This represents the metadata of all other documents." -msgstr "Isso representa os metadados de todos os outros documentos." +msgstr "" #: models.py:184 msgid "Foreign document attribute" -msgstr "Campo de documento externo" +msgstr "" #: models.py:193 msgid "Expression" -msgstr "Expressão" +msgstr "" #: models.py:196 msgid "Inverts the logic of the operator." @@ -191,15 +191,15 @@ msgstr "Inverte a lógica do operador." #: models.py:197 msgid "Negated" -msgstr "Negado" +msgstr "" #: models.py:202 msgid "Link condition" -msgstr "Condição para ligação" +msgstr "" #: models.py:203 msgid "Link conditions" -msgstr "Condições para ligação" +msgstr "" #: models.py:211 msgid "not" @@ -207,7 +207,7 @@ msgstr "não" #: models.py:215 msgid "Full label" -msgstr "Etiqueta completa" +msgstr "" #: permissions.py:10 msgid "Create new smart links" @@ -229,25 +229,25 @@ msgstr "Ver 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 de chaves primárias do tipo de documento às quais esta ligação inteligente será anexado." +msgstr "" #: serializers.py:141 #, python-format msgid "No such document type: %s" -msgstr "Nenhum tipo de documento: %s" +msgstr "" #: views.py:46 msgid "Available smart links" -msgstr "Ligações inteligentes disponiveis" +msgstr "" #: views.py:47 msgid "Smart links enabled" -msgstr "Ligações inteligentes ativadas" +msgstr "" #: views.py:79 #, python-format msgid "Smart links to enable for document type: %s" -msgstr "Ativar ligações inteligentes para tipo de documento: %s" +msgstr "" #: views.py:123 #, python-format @@ -257,67 +257,67 @@ msgstr "Erro na consulta de ligações inteligentes: %s" #: views.py:132 #, python-format msgid "Documents in smart link: %s" -msgstr "Documentos na ligação inteligente: %s" +msgstr "" #: views.py:135 #, python-format msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Documentos na ligação inteligente \"%(smart_link)s\" relacionadas a \"%(document)s\"" +msgstr "" #: views.py:160 msgid "Available document types" -msgstr "Tipos de documentos disponiveis" +msgstr "" #: views.py:161 msgid "Document types enabled" -msgstr "Tipos de documentos activos" +msgstr "" #: views.py:171 #, python-format msgid "Document type for which to enable smart link: %s" -msgstr "Tipo documento para qual activar ligação inteligente: %s" +msgstr "" #: views.py:188 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 "Os índices agrupam documentos em unidades, geralmente com propriedades semelhantes e de tipos iguais ou semelhantes. Ligações inteligentes permitem definir relações entre documentos, mesmo que estejam em índices diferentes e sejam de tipos diferentes." +msgstr "" #: views.py:195 msgid "There are no smart links" -msgstr "Não há ligações inteligentes" +msgstr "" #: views.py:227 msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "As ligações inteligentes permitem definir relacionamentos entre documentos, mesmo que estejam em índices diferentes e sejam de tipos diferentes." +msgstr "" #: views.py:232 msgid "There are no smart links for this document" -msgstr "Não há ligações inteligentes para este documento" +msgstr "" #: views.py:235 #, python-format msgid "Smart links for document: %s" -msgstr "Ligações inteligentes para documento: %s" +msgstr "" #: views.py:264 #, python-format msgid "Delete smart link: %s" -msgstr "Remover ligações inteligentes: %s" +msgstr "" #: views.py:279 #, python-format msgid "Edit smart link: %s" -msgstr "Editar ligação inteligente: %s" +msgstr "Editar Ligação inteligente: %s" #: views.py:302 msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "As condições são pequenas unidades lógicas que, quando combinadas, definem como a ligação inteligente se comportará." +msgstr "" #: views.py:306 msgid "There are no conditions for this smart link" @@ -326,7 +326,7 @@ msgstr "" #: views.py:310 #, python-format msgid "Conditions for smart link: %s" -msgstr "Não há condições para esta ligação inteligente: %s" +msgstr "" #: views.py:338 #, python-format @@ -340,4 +340,4 @@ msgstr "Editar condição de ligação inteligente" #: views.py:409 #, python-format msgid "Delete smart link condition: \"%s\"?" -msgstr "Remover condição de ligação inteligente: \"%s\"?" +msgstr "" 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 bb986fb26f..9bd00091c0 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -26,7 +26,7 @@ msgstr "" msgid "Linking" msgstr "Ligações" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Label" 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 0478e190d6..0fbe891899 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -23,7 +23,7 @@ msgstr "" msgid "Linking" msgstr "Legare" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etichetă" diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index a8c3772ba4..6542da5ffe 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "Связывание" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Надпись" 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 8e77e167a6..af8b2fe7a1 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -21,7 +21,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Oznaka" 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 49af46703f..f283ebbaec 100644 --- a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/tr_TR/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -23,7 +23,7 @@ msgstr "" msgid "Linking" msgstr "Bağlama" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "Etiket" 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 ca01083299..cae966a2b3 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -22,7 +22,7 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "" diff --git a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po index 1a6e8021ea..e8a503a320 100644 --- a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -22,7 +22,7 @@ msgstr "" msgid "Linking" msgstr "链接" -#: apps.py:74 models.py:27 +#: apps.py:72 models.py:27 msgid "Label" msgstr "标签" 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 6ceb074935..cc6de32c09 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 801d6b558c..6012c6089f 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 866e7ee90c..8e647fd918 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 49cb29b9a3..88311eda87 100644 --- a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/cs/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 de7801913a..9bbc7af77e 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 938e074dbf..0a8b08c84c 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 c78d0763a5..38876224b2 100644 --- a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/el/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 93b351678f..8f7c96d6b4 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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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 274ae2914e..038b5ef75a 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 f28410d0e6..3ef91e5f6d 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 dc329067c2..4851bfff6b 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 e7bd77c924..7700d10aeb 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 f00378ca7a..c177dfac5f 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 5ae64d8c81..25aa56df9b 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 a5d789435e..5737355aa0 100644 --- a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/lv/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 23c2ccc4f6..963b06e5b5 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 4a77171b08..d23e5ea0e5 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.mo index 513d8f3d992f463e9a190ae8662fa7c71ab756b7..1b967e1ef7ecd86f0749287b1a26c94380c91213 100644 GIT binary patch delta 101 zcmeyyewaD*o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLbVde-FerZ?kPSp&0MZKw Ueu=rMo2N2nGP3&R=cY0M03pu{9smFU delta 667 zcmY*VyKWRg5FBHJK}bj@!2v;k!Q~_b_!5MLK!OYheKUQxBhOBs=ON3{1x_t8oZtiz z5F>xWCiojHk@5$Gh?@0*V5HjW9`$rp?XdZCd-eU{)(3-g7kCW31MUMCKs(=n9pDN$ z0Iq>8;K_zDx4}=rt)GIY;OF3N@O$tAI0tso|GH(&A^6eejn*mno-r$PhN3Mv2fqM+ z1U~@(0ORc_0y1dF#jU;rv^VWw?`YoaCE?;VlH(%9_hP0p=NbxeuQe9ZIkju@k+N8g zE)%cjMG_r%-gd;4Bx_ApD5yQ8V;=&|gt!*%vD$J7CzuJsS=_|zV`%(j^O7O=ic3dD zsdPd%aL%o%S+HJWtCJj6$?y~1pEbMxYvzf01B+VA*SCISHRZx2)M;X*BAYx9Uxv?W zURRFAJ9a`#b_rL6vPi#Fk{8Ns`+S4p3EckIciLEIshSTtgf}crZ zr~jnwPb3zZm}l!pe+%SQ88gv~sPR*JhyE NQr}q53oW=XzX2Ziy8HkD 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 f3c0af9520..06bdeb206b 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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" +"POT-Creation-Date: 2019-07-05 01:30-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" @@ -18,16 +18,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:9 -msgid "Gestor de bloqueio" +msgid "Lock manager" msgstr "" #: models.py:17 msgid "Creation datetime" -msgstr "Data e hora da criação" +msgstr "" #: models.py:20 msgid "Timeout" -msgstr "Tempo esgotado" +msgstr "" #: models.py:23 msgid "Name" @@ -35,18 +35,18 @@ msgstr "Nome" #: models.py:29 msgid "Lock" -msgstr "Bloqueio" +msgstr "" #: models.py:30 msgid "Locks" -msgstr "Bloqueios" +msgstr "" #: settings.py:14 msgid "Path to the class to use when to request and release resource locks." -msgstr "Caminho para a classe usar quando solicitar e libertar recursos bloqueados." +msgstr "" #: settings.py:22 msgid "" "Default amount of time in seconds after which a resource lock will be " "automatically released." -msgstr "Quantidade padrão de tempo em segundos após o qual um bloqueio de recurso será liberado automaticamente." +msgstr "" 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 88cdf89f9c..9ddcf42a35 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 765be73add..2ccbf1ff85 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 7984c6ddb5..cf8905158b 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 605f6357db..ced42e3a40 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 468bef64b2..e24a6a73b4 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 @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 8992ef1f06..72955cd34f 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" 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 cfc5fac688..80ca0e359d 100644 --- a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:30-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" diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index eae1156293..84287048c5 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index 3750c58924..71e1bbf1f7 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 0d964cabd8..0a9becc386 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po index 6bb927eb2a..586c71c284 100644 --- a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/cs/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 d4c87ea2f8..89a97e2d34 100644 --- a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da_DK/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 c18290801b..7755db1305 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po index 8cdcaf8be7..8ca228c4ad 100644 --- a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/el/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index fb2ffa3136..4239b3c6ff 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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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/mailer/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo index 2d329abec2bfb4a72ea033193d228fe7f5ff4d40..9ffe51f0f0a03f7bbda5e68eea1b43a774fad890 100644 GIT binary patch delta 2027 zcmYk-e@s89^=xn;V z8nyXjt-o?s4u7Dw#^zeH{%B)s*(S}oNp9Gj%lVHZmpSJw-=A}j<+JlWuje`Uo^zh( z`+P6ljegVSPG+TkYP2oHv&7A5W-guya-yA_ZuSzM!Xq= zc@X0y73*gu>6>xGZFAcN#rD-9t@uwvB2D*fvb z)Joq%t+Wqc#{_C`e?(1G48<@)C9jn?e#_92~=_4LcQ0$ONVW-Sv*Zu zy8xBi65Ndy{`hlzp7AiMddE>)^&8H`DO84n1z$Is zXii3E`pnvJ)l#QwS$)m&(eT{k!Gc&%Z(>h;(CLmjG2IbMIPY$cZ})Dvl=oG}W0DuO A+W-In delta 1965 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\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" @@ -394,7 +394,7 @@ msgstr "Rediģēt pasta profilu: %s" #: views.py:211 #, python-format msgid "Error log for: %s" -msgstr "" +msgstr "Kļūdu žurnāls priekš: %s" #: views.py:233 msgid "" 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 7eb6e8f472..b40d92c21e 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index e8b6319157..f89267ddc1 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index 63813a3553e1aaad0ba04c133790e24316043d49..b25870d8aa002fe01e53ba79526bc1f5d4bb61a5 100644 GIT binary patch delta 629 zcmXxgF=!M)6oBCubI~MsYtA4hCo!&q2Zo4+kaQ`chgL^G5KK2_$7GYeov?eSSX~>N zfD8$ONCFB+>VS>q6(Ux4X|%Dju+_%G|834;-+nVY`{upfZ}(r9yWb~Ed&0Ot%n%V&ynyK<3<7OtTd zUO+9>#6^6B>m==>9`t+obpJ2vK_$A=Mgr8v>KNj!flaKlcE~0B+-~C=9FeZb7bcqc z6}8|A-oPr=w2=jTj7vx#LLV|gXpT0ZU#VZNf3QmMnp6lKny-Uii@#FFF@5lVTxCMN z)3NNL7jn-&HJzl5iEUedFc#KZCQd>VMVZZWX%wr-t#w*9Z4Z`7oNoD}@teVl$@Awf zi{znABR?7}`NQC{{}oirdFRQdU2BKDdi-f}Yv|Hlmu)*)F;Uik=cJLutvEFq1!pTJ zlSUfZ%=UZEAI?tsSJT%g9>m)=>-XYy)9;a?&nwb&Ei1)N;_uYvYLwkDBtMIbGn8;c N6MZtX>i=9>{Rh-QZHfQ@ literal 9181 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 U$RJd7T#R_O$@Biir8^Pxe|M$`BLDyZ diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 393ee6b6ff..d5b3d6804e 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE 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" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" @@ -19,33 +19,33 @@ msgstr "" #: apps.py:42 msgid "Mailer" -msgstr "Mailer" +msgstr "" #: apps.py:63 apps.py:84 msgid "Date and time" -msgstr "Data e hora" +msgstr "" #: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" -msgstr "Mensagem" +msgstr "" #: classes.py:81 msgid "Null backend" -msgstr "Sem backend" +msgstr "" #: events.py:7 permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" -msgstr "Mailing" +msgstr "" #: events.py:10 msgid "Email sent" -msgstr "correio eletrónico enviado" +msgstr "" #: forms.py:60 forms.py:122 msgid "" "Email address of the recipient. Can be multiple addresses separated by comma" " or semicolon." -msgstr "Endereço de correio eletrónico do destinatário. Podem ser vários endereços separados por vírgula ou ponto e vírgula." +msgstr "" #: forms.py:62 forms.py:124 msgid "Email address" @@ -61,15 +61,15 @@ msgstr "Corpo" #: forms.py:70 msgid "The email profile that will be used to send this email." -msgstr "O perfil de correio eletrónico que será usado para enviar este correio eletrónico." +msgstr "" #: forms.py:71 views.py:238 msgid "Mailing profile" -msgstr "Perfil de correspondência" +msgstr "" #: forms.py:76 msgid "Backend" -msgstr "Backend" +msgstr "" #: links.py:18 links.py:28 msgid "Email document" @@ -77,15 +77,15 @@ msgstr "Documento de correio eletrónico" #: links.py:24 links.py:32 msgid "Email link" -msgstr "Ligação de correio eletrónico" +msgstr "Hiperçigação de correio eletrónico" #: links.py:37 msgid "System mailer error log" -msgstr "Registo de erros mailer" +msgstr "" #: links.py:42 msgid "Create mailing profile " -msgstr "Criar um perfil de correspondência" +msgstr "" #: links.py:48 msgid "Delete" @@ -97,19 +97,19 @@ msgstr "Editar" #: links.py:58 msgid "Log" -msgstr "Registo (log)" +msgstr "" #: links.py:63 msgid "Mailing profiles list" -msgstr "Lista de perfis de correspondência" +msgstr "" #: links.py:68 msgid "Mailing profiles" -msgstr "Perfis de correspondência" +msgstr "" #: links.py:74 views.py:257 msgid "Test" -msgstr "Teste" +msgstr "" #: literals.py:7 #, python-format @@ -119,10 +119,6 @@ msgid "" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -"Anexado a este email está o documento: {{ document }}\n" -"\n" -" --------\n" -" Este correio eletrónico foi enviado de %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -132,50 +128,46 @@ msgid "" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -"Para acessar este documento, clique na seguinte Ligação: {{ link }}\n" -"\n" -"--------\n" -" Este correio eletrónico foi enviado de %(project_title)s (%(project_website)s)" #: mailers.py:23 mailers.py:112 msgid "From" -msgstr "De" +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." -msgstr "Endereço do remetente. Alguns sistemas se recusará a enviar mensagens se este valor não estiver definido." +msgstr "" #: mailers.py:32 msgid "Host" -msgstr "Host" +msgstr "" #: mailers.py:34 msgid "The host to use for sending email." -msgstr "O host a ser usado para enviar email." +msgstr "" #: mailers.py:39 msgid "Port" -msgstr "Porta" +msgstr "" #: mailers.py:41 msgid "Port to use for the SMTP server." -msgstr "Porta a ser usada para o servidor SMTP." +msgstr "" #: mailers.py:44 msgid "Use TLS" -msgstr "Usar TLS" +msgstr "" #: mailers.py:47 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 "Se deve usar uma conexão TLS (segura) ao falar com o servidor SMTP. Isso é usado para conexões TLS explícitas, geralmente na porta 587." +msgstr "" #: mailers.py:52 msgid "Use SSL" -msgstr "Usar TLS" +msgstr "" #: mailers.py:55 msgid "" @@ -185,17 +177,17 @@ msgid "" "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 "Se você deve usar uma conexão TLS (segura) implícita ao falar com o servidor SMTP. Na maioria das documentações de correio eletrónico, esse tipo de conexão TLS é chamado de SSL. Geralmente, ela é usada na porta 465. Se você estiver com problemas, consulte Configuração de TLS \"Usar TLS\". Observe que \"Usar TLS\" e \"Usar SSL\" são mutuamente exclusivos, portanto, defina apenas uma dessas configurações como True" +msgstr "" #: mailers.py:64 msgid "Username" -msgstr "Utilizador" +msgstr "" #: mailers.py:67 msgid "" "Username to use for the SMTP server. If empty, authentication won't " "attempted." -msgstr "Nome de Utilizador para usar no servidor SMTP. Se estiver vazio, a autenticação não será tentada." +msgstr "" #: mailers.py:73 msgid "Password" @@ -206,23 +198,23 @@ 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 "Senha a ser usada para o servidor SMTP. Essa configuração é usada em conjunto com o nome de utilizador durante a autenticação no servidor SMTP. Se qualquer uma dessas configurações estiver vazia, a autenticação não será tentada." +msgstr "" #: mailers.py:85 msgid "Django SMTP backend" -msgstr "Django SMTP backend" +msgstr "" #: mailers.py:107 msgid "File path" -msgstr "Caminho de arquivo" +msgstr "" #: mailers.py:122 msgid "Django file based backend" -msgstr "Backend baseado em arquivo Django" +msgstr "" #: models.py:27 models.py:225 msgid "Date time" -msgstr "Data e hora" +msgstr "" #: models.py:36 msgid "Log entry" @@ -230,7 +222,7 @@ msgstr "" #: models.py:37 msgid "Log entries" -msgstr "Entradas no registo (log)" +msgstr "" #: models.py:48 msgid "Label" @@ -248,7 +240,7 @@ msgstr "Padrão" #: models.py:56 msgid "Enabled" -msgstr "Ativado" +msgstr "" #: models.py:59 msgid "The dotted Python path to the backend class." @@ -264,31 +256,31 @@ msgstr "" #: models.py:70 models.py:222 msgid "User mailer" -msgstr "Mailer do utilizador" +msgstr "" #: models.py:71 msgid "User mailers" -msgstr "Mailer dos utilizadores" +msgstr "" #: models.py:84 msgid "Backend label" -msgstr "Rótulo do Backend" +msgstr "" #: models.py:216 msgid "Test email from Mayan EDMS" -msgstr "Testar email de Mayan EDMS" +msgstr "" #: models.py:234 msgid "User mailer log entry" -msgstr "Entrada no registo do mailer do utilizador" +msgstr "" #: models.py:235 msgid "User mailer log entries" -msgstr "Entradas no registo do mailer do utilizador" +msgstr "" #: permissions.py:10 msgid "Send document link via email" -msgstr "Enviar ligação de documento através de mensagem" +msgstr "Enviar hiperligação de documento através de mensagem" #: permissions.py:13 msgid "Send document via email" @@ -296,35 +288,35 @@ msgstr "Enviar documento através de mensagem" #: permissions.py:16 msgid "View system mailing error log" -msgstr "Visualizar registo de erro ne envio de correio do sistema" +msgstr "" #: permissions.py:19 msgid "Create a mailing profile" -msgstr "Crie um perfil de correspondência" +msgstr "" #: permissions.py:22 msgid "Delete a mailing profile" -msgstr "Remover um perfil de correspondência" +msgstr "" #: permissions.py:25 msgid "Edit a mailing profile" -msgstr "Editar um perfil de correspondência" +msgstr "" #: permissions.py:28 msgid "View a mailing profile" -msgstr "Ver um perfil de correspondência" +msgstr "" #: permissions.py:31 msgid "Use a mailing profile" -msgstr "Usar um perfil de correspondência" +msgstr "" #: queues.py:10 msgid "Send document" -msgstr "Enviar documento" +msgstr "" #: settings.py:14 msgid "Link for document: {{ document }}" -msgstr "Ligação para o documento: {{ document }}" +msgstr "Hiperligação para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." @@ -332,38 +324,38 @@ msgstr "Modelo para a linha do assunto do formulário de mensagem da hiperligaç #: settings.py:20 msgid "Template for the document link email form body text. Can include HTML." -msgstr "Modelo para o texto do corpo do formulário de correio eletrónico de link do documento. Pode incluir HTML." +msgstr "" #: settings.py:24 msgid "Document: {{ document }}" -msgstr "Documento: {{ document }}" +msgstr "Document: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Modelo para a linha de assunto do estilo de correio eletrónico do documento." +msgstr "" #: settings.py:30 msgid "Template for the document email form body text. Can include HTML." -msgstr "Modelo para o texto do corpo do estilo de correio eletrónico do documento. Pode incluir HTML." +msgstr "" #: validators.py:14 #, python-format msgid "%(email)s is not a valid email address." -msgstr "%(email)s não é um endereço de correio eletrónico válido" +msgstr "" #: views.py:37 msgid "Document mailing error log" -msgstr "Registo (log) de erro de envio de documentos" +msgstr "" #: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" -msgstr "%(count)d documento na fila para entrega de correio eletrónico" +msgstr "" #: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" -msgstr "%(count)d documentos na fila para entrega de correio eletrónico" +msgstr "" #: views.py:62 msgid "Send" @@ -372,48 +364,48 @@ msgstr "Enviar" #: views.py:108 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "%(count)d ligação do documento na fila para entrega de correio eletrónico" +msgstr "" #: views.py:110 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "%(count)d ligações do documento na fila para entrega de correio eletrónico" +msgstr "" #: views.py:119 msgid "New mailing profile backend selection" -msgstr "Nova seleção de backend do perfil de correspondência" +msgstr "" #: views.py:151 #, python-format msgid "Create a \"%s\" mailing profile" -msgstr "Criar um \"%s\" perfil de correspondência" +msgstr "" #: views.py:177 #, python-format msgid "Delete mailing profile: %s" -msgstr "Remover perfil de correspondência: %s" +msgstr "" #: views.py:188 #, python-format msgid "Edit mailing profile: %s" -msgstr "Editar perfil de correspondência: %s" +msgstr "" #: views.py:211 #, python-format msgid "Error log for: %s" -msgstr "Registo de erros para: %s" +msgstr "" #: views.py:233 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "Os perfis de correspondência são configurações de correio eletrónico. Os perfis de correspondência permitem o envio de documentos como anexos ou como ligações por correio eletrónico." +msgstr "" #: views.py:237 msgid "No mailing profiles available" -msgstr "Nenhum perfil de correspondência disponível" +msgstr "" #: views.py:258 #, python-format msgid "Test mailing profile: %s" -msgstr "Testar perfil de correspondência: %s" +msgstr "" 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 78176f246e..c793bf5009 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 c0afdbdda6..6e1d6d70fd 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index 6070cfe868..8501efe70c 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 1e47cb8623..1a665a32c1 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 fc6300d141..d76c6dd150 100644 --- a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/tr_TR/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 3426a0ea6c..7f1ed96d3e 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" diff --git a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po index cc0ba96db4..fd9875cf0a 100644 --- a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 04766b97d4..9779722acf 100644 --- a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 3b14f7e24e..d057732469 100644 --- a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 30a2d9e096..0c4d972b36 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 @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 a68f3357f3..bdaec3470e 100644 --- a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/cs/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 aeac579d49..e350563576 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 1d8ce2bef5..c48739ea9b 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 @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 fa7e9ff066..b96c7d14d4 100644 --- a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/el/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 701df887e3..6b8862da0d 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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 c6eb964520..121452a02a 100644 --- a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/es/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 a2b262cce9..a0165518bb 100644 --- a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 2bbcef2af3..e7dd65e1b3 100644 --- a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 e41a334756..2186ac9228 100644 --- a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/hu/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 56f187e460..8eb65d92d7 100644 --- a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 e2b1c49726..e6d46f6723 100644 --- a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/it/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 0ac60b840d..c3fa4dfe76 100644 --- a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/lv/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 cd69e4e40f..56513116bf 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 @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 800a3e2339..0108598ebc 100644 --- a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pl/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.mo index 2a20ff7e53a71be6b2e9ee8cb03f6fd6ef7aa195..1d650fa0cdea1db6a318c3df093e2a36a2c24a08 100644 GIT binary patch delta 369 zcmXZWKTpD75XbT3Us0?WaMCcbIFUe136BeJ4#*i2X+ByIU3k)tSjo}5j zkr)PdjPMqmc?GQQeh;|x*H543+Pg{mH#uBqkh+#I_g2CYD_9w%118R_lmFNs=5AT}n%r*;du~MjGy`+m&YE o25$Hlb-o6%StQj6UfM=(I?pD|Syj8{`Nm&;dVZ&E!XK;t56coKg#Z8m literal 1806 zcmZ{jJ!~9B6vqb=LO4DGA$$s?!I6Z1*PkB={4EpZE{LcK2vx3wYHhJ$s41PBj&LjKu494Rag={FV1SXO`8ItIXD9W*L zUirlNBofz@^D@t39GU$e%Ecw#<6Fy4Y^fo+OhqJP@+wJB*^&Fk;@0e!6eh$L9gr1U zMnavE>HxRZUP^WGUQRic^VA=?u;><~H*$|Euj1E5k6fO5cWhxN8c>|4BzDrgFLoxe zly|l9IGF3We)7x5Y%rECk0NqzKTp#mR$1AZIqs%6oz#=i=XP!3((Ji%$BF9+9Tw9x zC?~e9`G_JPT#bY4WL;u(D7)%NY1!H6?$mme8S8_t>nCyWR^E5Pt_fvr``w^N2MHe! z_zgq3(rmpJG*^Sx71>-3S6i<%AvJ!(VAm?`Qswy-dS;I-lGrm&*~H+0?&qpc!7iy` zD7RrO@8{%5E)BfT!baop@UZS#L$Xh!dSr$TTi&&eA^RCnJamn;($mO%W4YG7+U-ok zY1Nyxw~h9s;mc75XFZL4BTH4H*JU(N){$?&zq=W%P0z8#eX>DEMr@2*Wuxaejg;Hn5(zRFCW%;+gq~%L(*;-z&q0(dHxZaf{IWSgL6|bx$uKDq8 zE_x-#U!|yQl%vm8ntY, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" @@ -30,7 +30,7 @@ msgstr "Agenda" #: apps.py:37 msgid "Last update" -msgstr "Última atualização" +msgstr "" #: classes.py:150 msgid "Never" @@ -46,11 +46,11 @@ msgstr "Ver" #: links.py:22 msgid "Namespace details" -msgstr "Detalhes do namespace" +msgstr "" #: links.py:27 msgid "Namespace list" -msgstr "Lista de namespaces" +msgstr "" #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug @@ -60,7 +60,7 @@ msgstr "Slug" #: models.py:16 msgid "Date time" -msgstr "Data e hora" +msgstr "" #: models.py:18 msgid "Data" @@ -80,25 +80,25 @@ msgstr "Ver estatísticas" #: queues.py:13 msgid "Execute statistic" -msgstr "Executar estatística" +msgstr "" #: templates/statistics/renderers/chartjs/line.html:14 msgid "No data available." -msgstr "Não há dados disponíveis." +msgstr "" #: templates/statistics/renderers/chartjs/line.html:16 #, python-format msgid "Last update: %(datetime)s" -msgstr "Última atualização: %(datetime)s" +msgstr "" #: views.py:17 msgid "Statistics namespaces" -msgstr "Estatísticas dos namespaces" +msgstr "" #: views.py:33 #, python-format msgid "Namespace details for: %s" -msgstr "Detalhes do namespace: %s" +msgstr "" #: views.py:55 #, python-format @@ -113,9 +113,9 @@ msgstr "Estatística \"%s\" não encontrada." #: views.py:80 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "Fila de estatísticas \"%s\" a serem atualizado?" +msgstr "" #: views.py:94 #, python-format msgid "Statistic \"%s\" queued successfully for update." -msgstr "Fila de estatísticas \"%s\" com êxito na atualização." +msgstr "" 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 a683eb26d0..39908aab00 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 @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 2b54cefe47..955c08ac28 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 @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 362d66ff26..06432c58d7 100644 --- a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ru/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 517624aa87..04b77602b7 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 e8b01130b3..e1c6a006f4 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 @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 b448772642..1ca1285691 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 900fa87220..8172881ef1 100644 --- a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/zh/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 7346f5b667..dda32624c2 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index ae214302d8..d315b8213f 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 e31cfa8d4b..9032e449e5 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po index 1f6611af80..c1186481bf 100644 --- a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/cs/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 1151484aca..dfe00c5f6d 100644 --- a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da_DK/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 6ad0af9ac2..afe2f7808f 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po index bce91f11ef..4130d760b1 100644 --- a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/el/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index e7ccec1d95..66c0b01a66 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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 dbeff68294..9b1b6dbc7b 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 88bee600dd..bb5ecbe19a 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index 560a06208d..3e7c9c3227 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index 44ad09d6ad..a92dc35112 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index cd36918184..2be94cec3d 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 4f5283e42e..52bff4999f 100644 --- a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/it/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po index ce243217d9..81858d53ef 100644 --- a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/lv/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-0400\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" 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 a4d8284da0..075b44100e 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index cf5f80868b..132f53cb76 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo index 4889b5bef5f220af754455cf833ab0cb2705cbc2..13fe4a5623983d404f8a3931ac2fe7568188b3ee 100644 GIT binary patch delta 972 zcmXxi&ubG=5Ww+Qt=ibc{OIqdFN+d7HP>KckCZV$HV< zv76Dy2sRlrh#RP}vc;IKcn^DV6?^a%?!ZsD9lv1*{=g9a#byk#Sl7i+b7Zj%bI2o$ zW`@Z&zQ|(>7BP!e+=VNs8?NC=e1YTG!tVO}l&^!D(DSXM7Pf#%T=MT%QS&{-1o_Pq zCR)*ZyhzvIF~EI})q8LXwemV@$IGaNuAp}I0HgQ@`IwJfEc}cq{DXR811zRvGmNA# zM=?NtGsa{HPhlLdp>B8=bNCp~;%|)MX|k&qP&cZhCSE`uF-zEwH&7c{L+$uETKEz> z@hdLUa3eU?Ms)e=#+sy?p~dLC)zD6~iv&Zvk1%v|4Nca{(ATA*ry68vQF?-#(at2y z;QuyicKY9H2l_ts1SqT#T4f_f3I)Tk%8q9jY|pkl*RrjGo3E9fiYL>pX<2UV3;Oq# zSD$s{buc5T(80Djb7Iuw?DI~^jQh*wL*%gBj`qvB*!|9VyHs<`gk9$1Rva_wl-+qp z-gWc`&&-m{F;n`)(~a&sP4cTZAqV0SxtiD;9xD~g#fn`uW0&)#T2XHHwaaii5ZEls zmC59gtS1Mh+X_c1V!|cI{~8MJoY<)@Ii8A3Bz;6GnRYpp8JFvsWAbQUPspiUs+Ijx fs*>G5&^hAO>{9Ux=_tqL>QpT@nMuawS+?sRiGhtKduQzp(833(kWdj)0YMe0>4yq}g+v=HDnP)hAP_;ksI3$UgjxxZs3<}RiAojx z{^#7+nekhQdgU|!`*O~6p7Xq&=RE6weCwWH47eiNJ80cofY+W$G|t<5d_=@Pl0a- zp8?+pZiC+megqUNzXX0e_#${8_*w8a@NdDp!B;``{~Guz-91z zzzBRZ`0@PtMQ{(#e+r7vKL^|3S3r%wo1gCn-wA#Pco_UP@C^7nU9wyg%-v&Mh9t1Cgp8?N+&%%u4^D-#@z6!!}a66No z1n&psN6&+@(;o-rN1p^`7oX0b{}7aYe*sj#e*(qF|AL4nxSf~c!{m4rG(2yBm`Lz3 z@GmdJvpSnK?Lhv`hqu?HxTL+&2zZZN7yczsEQ2O~IDE+?*ivCwYt?wqB{}^}&D0@Bw z{vh}%@Coo=LGix;bCSb6|QCYX_y@gZunCBT(NjfqTF|27dVWM&mpLB zo1g(d0m?341`(69d7!-B#~q?8FUjl#?GBpstGRS(Ze6m8;?g>FY2HnmTKSB|UHt+wmZsbFc(xhX_!_bOrBfn8RT*&Vi!6#`4X+KJnjbh?1Rw$kn*N3QCR;DAALd53)}`Tw&Tk^nUFOJk81=&S zo;8{64|`!|O(z~?_CjX1!z9v|bkPKRA4vC_C^dW;!*$#L2?CkGw6ce{vS zdY?J76OT+MbleS$?M8@Z%SOpnS&Pd#rb&gF3NfeG_`YZ!@Lftx6`F8T2#zLJI==Qx z&XxvCb|W11vI4zej7^d_aqKVIp3N+u1(So_ zTbO8m(a84&OSv_cH)W^EH(rfX-b-h;JLN-S`|)=Di)_B?r>Am0Z>;e!i{b%Gu6s$d zPim%i8XJ>3k87yS$!Zy11O3z-3)?O_`cH-NT;cV2_vYZ@$uUq+D(5aqy7gY+bs8)a zQW97!gAB%%*g@AOZL=~;Gagb*0;i)>C+_zN6Sf!ir3jN|39j8XXHsjH&V_@`m=$)t z5fv2W`#nC5!cA-TZDrXoU7VkX-L&0xLxxFw&UUgk#OLi`exbdvFrV0s`GTW#eti`6 zvS^Ub&$h41@3)MNoQp!{rKp2txr)qJt1k89%x~`l`-&IO>cuQ^yB0oB(7uA+Y+`m5JIqlJqZAG*b%Wfs-+KPrO zBn^%&1;@j6+Y64z@pGeL4inL3rP!H@8yEEzE-iLAv2%`JAe-%$90spt zP+E*n_jZ0J+t16JI{$PwAPD5+bQ~|+JdY}JM)8u8+H|zF6@$rGOB?itbV5d` zAL*rQ)^|+o1vVVI)Qr8$vV)S1x;(68T64C|QfvlsrlDrIlWh^pWNrz`i#Z=B-E>aE zPKP0ZpdFlu2R1nAHi57goC*_q2B(s!A0|8IIW+3TG@jZ_Syr){_6?102dlME-grn0 zUuy&{x+o9Jq14y-vvGS%Wfc?OC90_}QLMHlX{uP#_4Z4zx1+O^)%-Zcplp=5BSUU= zh&)6=wi9hcosx@ct*0j}sPwyBTd8cvSwnET7V$9z39qE&ePvqOaFwmO9jqanu#@R@ z#-ND&0OQUHD(5pgh#Dwi&XGKRoOm}T%E@1@V+sOgNE^h>HKvltmA+NS z+PoJrr9mKedov&F2WoLOcrY_tA?gYT1lA&RS(D+OQ6gl6v&D*aH*(J-t4&Yq!LbYH zEn--4+Gq!7qx#Wo+*z7mWk)Gq?Q-bWv2N=udj-kYqFD)dIO{Git(=}&wZk~cS}W;h z)NQ?gw3)Wn;zcua>SSxxZb$0gT7u<8b723%dt3V-Y8`mQ95}G}o`>GOpKIoLm}afD zBpjq9b~*~K#_Q}rF_=<{i0R<-`_`Hb`-|ojlZ`gX+VX^-eE3nfcm>*{IvokBlR+g*fEVTE}9902i052?hkpsqsY@W(UG&pEFTe8;d z(3!QzTaQ-#G$YZtwLIv=%E=eaqw7&t^1En;+03clC<%M5$FX1vDubbWOb;D6X#DM= zeFJmg|*94emT2_^f9_ z{1ibIvo|4!yY*3M7=`l^L(*DBN8ay>IgTB_kg=(pP^Pca&pbq6IxIO7yBAwMW~w#? z9?C*bM1AKBC(mvBLeW3eYMLvr`uFBcHZr2`bL)^T)sD(_)P(F7KgM`i6?Lv5%@7_+ zk=2zmMe=p3Zi}f@Sy(}(CU@vbqHavFCW8Bk9<}#l+&i)RA1_~59xBBwF3bRN7<_zt_ad9zHT?VJ zaQ8F2FJqXv{iJjy&qCQ1pJKxeC||LwO}-m*=t?k7E6be0h$8tZT;r`=d8tuv4LQw8X$4EsCI?ILpGRM3_-tvUKhX;zHLNAe9_?#b z_z_j<5pl%VtysA$WKj+$R!|1sy_9T@dZDjpg{H@bp{fFiHjoGiI|fksal7G14mTY#IoGx zsv8nH{)Ur=GWsg+)%No=?y*;9ApwMd!-#4PezUz`J0pBtW~RNO{Dg;~c{@-XtO6_>M*Z!Avs6HLi^UYFIq zMnY*o=DQJXVmFg)xSgP34U=yu%SDJ_$_M9Me3`bdv8Bc9NwgVeyPv&g-YVmk?2Fy2 zv`u!|Ud8srXYx$%H{GyGDJFVNaxSm*b7Wyr!aKKnk<(|SOqNqz%?fH!#&90ZclDCR zX|#&C#*%7wBS)W3*OP4~W5LO38I(!oz8w38No2dBl2ra?5)C*Xv%BaFF{0i@B6)-QF#!lZG4SFkt%{J^U1{d`_5##FsFsZ96Md4;z+}v zN9+2AqPE43_Qz3QTd9~#wA)VT$CE<#oG|kQsMf8L7*#)36ecJNQ^}8K6w4z0S*en& zmXWgKX`VSO1WS}4;wo5{x?`#5LX{dgVKMhKHTb-!;JIYR`TANRmx>_y0R@A8xwAO| zBE)iFN(ah>I;HWA^SaN3Yw?)Mor;8ViBU=?C&+k|ap*PSkSHEzkv$-y~I+o);1?(I<9ya_QLH1gF$KhksSwvoG&FhjcZOuIl3F9FUG=rK!Ujr-mP7SLR##D#FiMqQZ@=_n8S8u z;Yw=rJxY9)tVrFqvwMm1BVqfBX33Z$5U`NGO>uQCQj+I*=1x5|>B=4X+LXYw{H-n( z#m$1RSsdYH&V5L&@C7UHP#o@reNT9D0%!juDUvea8L`K^5bDjvT3Z{uY$6q&G^zmg!g*M5SuX5_iDcsSHGjk*c=o#{# zT3D3?H*GTKo_+`NL9%I5!8N`&$}_(677{4TAdeS59}bqA1slgHHk^*4YJl77f+Iy{ qsz~KU;bT^*FgKVWtHY6Yp}07t7I8IHn3E0~N98dmQ-?`E3jPmN=N_&A diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index 4bbaea8e37..5a71d92207 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,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" @@ -27,15 +27,15 @@ msgstr "Metadados" #: apps.py:99 msgid "Return the value of a specific document metadata" -msgstr "Retorna o valor de um metadado de documento específico" +msgstr "" #: apps.py:105 msgid "Metadata type name" -msgstr "Nome do tipo de metadados" +msgstr "" #: apps.py:109 msgid "Metadata type value" -msgstr "Valor do tipo de metadados" +msgstr "" #: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" @@ -47,27 +47,27 @@ msgstr "Valor de metadados" #: events.py:10 msgid "Document metadata added" -msgstr "Adicionados metadados ao documento" +msgstr "" #: events.py:13 msgid "Document metadata edited" -msgstr "Editados os metadados do documento" +msgstr "" #: events.py:16 msgid "Document metadata removed" -msgstr "Removidos metadados do documento" +msgstr "" #: events.py:19 msgid "Metadata type created" -msgstr "Tipo de metadados criado" +msgstr "" #: events.py:22 msgid "Metadata type edited" -msgstr "Tipo de metadados editado" +msgstr "" #: events.py:25 msgid "Metadata type relationship updated" -msgstr "Relação de tipo de metadados atualizada" +msgstr "" #: forms.py:13 msgid "ID" @@ -87,26 +87,26 @@ msgstr "Atualizar" #: forms.py:46 forms.py:185 models.py:306 msgid "Required" -msgstr "Requerido" +msgstr "" #: forms.py:75 #, python-format msgid "Lookup value error: %s" -msgstr "Erro de valor de pesquisa: %s" +msgstr "" #: forms.py:88 #, python-format msgid "Default value error: %s" -msgstr "Valor do erro padrão: %s" +msgstr "" #: forms.py:104 models.py:172 #, python-format msgid "\"%s\" is required for this document type." -msgstr "\"%s\" é necessário para este tipo de documento." +msgstr "" #: forms.py:122 msgid "Metadata types to be added to the selected documents." -msgstr "Tipos de metadados a serem adicionados aos documentos selecionados." +msgstr "" #: forms.py:148 views.py:506 msgid "Remove" @@ -114,7 +114,7 @@ msgstr "Remover" #: forms.py:169 msgid " Available template context variables: " -msgstr "Variáveis de contexto para modelo disponíveis: " +msgstr "" #: forms.py:183 msgid "None" @@ -122,7 +122,7 @@ msgstr "Nenhum" #: forms.py:184 msgid "Optional" -msgstr "Opcional" +msgstr "" #: forms.py:189 models.py:55 search.py:19 msgid "Label" @@ -130,19 +130,19 @@ msgstr "Nome" #: forms.py:193 msgid "Relationship" -msgstr "Relação" +msgstr "" #: links.py:18 links.py:29 msgid "Add metadata" -msgstr "Adicionar metadados" +msgstr "" #: links.py:25 links.py:33 msgid "Edit metadata" -msgstr "Editar metadados" +msgstr "" #: links.py:37 links.py:43 msgid "Remove metadata" -msgstr "Remover metadados" +msgstr "" #: links.py:55 links.py:83 models.py:94 views.py:656 msgid "Metadata types" @@ -150,15 +150,15 @@ msgstr "Tipos de metadados" #: links.py:61 msgid "Document types" -msgstr "Tipos de documentos" +msgstr "" #: links.py:65 msgid "Create new" -msgstr "Criar novo" +msgstr "" #: links.py:72 msgid "Delete" -msgstr "Remover" +msgstr "Eliminar" #: links.py:78 views.py:311 msgid "Edit" @@ -168,14 +168,13 @@ msgstr "Editar" msgid "" "Name used by other apps to reference this metadata type. Do not use python " "reserved words, or spaces." -msgstr "Nome usado por outros aplicativos para fazer referência a esse tipo de metadados. Não use palavras ou espaços reservados do python." +msgstr "" #: 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 "Digite um modelo para visualizar. Use a linguagem de templates padrão do Django " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)" +msgstr "" #: models.py:63 search.py:22 msgid "Default" @@ -187,56 +186,54 @@ msgid "" "Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." msgstr "" -"Digite um modelo para visualizar. Deve resultar em uma string delimitada por vírgula. Use a linguagem de templates padrão do Django " -"(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/)." #: models.py:73 search.py:25 msgid "Lookup" -msgstr "Procurar" +msgstr "" #: models.py:78 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 "" #: models.py:80 search.py:28 msgid "Validator" -msgstr "Validador" +msgstr "" #: models.py:84 msgid "" "The parser will reformat the value entered to conform to the expected " "format." -msgstr "O analisador irá devolver o valor inserido para se adequar ao formato esperado." +msgstr "" #: models.py:86 search.py:31 msgid "Parser" -msgstr "Analisador" +msgstr "" #: models.py:180 msgid "Value is not one of the provided options." -msgstr "O valor não é uma das opções fornecidas." +msgstr "" #: models.py:202 msgid "Document" -msgstr "Documento" +msgstr "" #: models.py:205 msgid "Type" -msgstr "Tipo" +msgstr "" #: models.py:209 msgid "The actual value stored in the metadata type field for the document." -msgstr "O valor armazenado no campo de tipo de metadados para o documento." +msgstr "" #: models.py:217 models.py:218 msgid "Document metadata" -msgstr "Metadados do documento" +msgstr "" #: models.py:239 msgid "Metadata type is required for this document type." -msgstr "O tipo de metadados é obrigatório para este tipo de documento." +msgstr "" #: models.py:269 msgid "Metadata type is not valid for this document type." @@ -248,11 +245,11 @@ msgstr "Tipo de documento" #: models.py:313 msgid "Document type metadata type options" -msgstr "O tipo de metadados não é válido para este tipo de documento." +msgstr "" #: models.py:314 msgid "Document type metadata types options" -msgstr "Opções de tipos de metadados do tipo de documento" +msgstr "" #: permissions.py:10 msgid "Add metadata to a document" @@ -292,33 +289,33 @@ msgstr "Ver tipos de metadados" #: queues.py:12 msgid "Remove metadata type" -msgstr "Remove tipo de metadados" +msgstr "" #: queues.py:16 msgid "Add required metadata type" -msgstr "Adicionar tipo de metadados requerido" +msgstr "" #: serializers.py:51 msgid "Primary key of the metadata type to be added." -msgstr "Chave primária do tipo de metadados a ser adicionado." +msgstr "" #: serializers.py:132 msgid "Primary key of the metadata type to be added to the document." -msgstr "Chave primária do tipo de metadados a ser adicionado ao documento." +msgstr "" #: views.py:51 #, python-format msgid "Metadata add request performed on %(count)d document" -msgstr "Adicionar solicitação de metadados para executar em %(count)d documento" +msgstr "" #: views.py:53 #, python-format msgid "Metadata add request performed on %(count)d documents" -msgstr "Adicionar solicitação de metadados para executar em %(count)d documentos" +msgstr "" #: views.py:69 views.py:237 views.py:462 msgid "Selected documents must be of the same type." -msgstr "Os documentos selecionados devem ser do mesmo tipo." +msgstr "" #: views.py:113 msgid "Add" @@ -327,59 +324,59 @@ msgstr "Adicionar" #: views.py:115 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" -msgstr[0] "Adicionar tipos de metadados ao documento" -msgstr[1] "Adicionar tipos de metadados aos documentos" +msgstr[0] "" +msgstr[1] "" #: views.py:126 #, python-format msgid "Add metadata types to document: %s" -msgstr "Adicionar tipos de metadados ao documento: %s" +msgstr "" #: views.py:179 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erro ao adicionar tipo de metadados \"%(metadata_type)s\" ao documento: %(document)s; %(exception)s" +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 %(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 msgid "Metadata edit request performed on %(count)d document" -msgstr "Solicitação de edição de metadados executada em %(count)d documento" +msgstr "" #: views.py:221 #, python-format msgid "Metadata edit request performed on %(count)d documents" -msgstr "Solicitação de edição de metadados executada em %(count)d documentos" +msgstr "" #: views.py:306 msgid "" "Add metadata types available for this document's type and assign them " "corresponding values." -msgstr "Adicionar tipos de metadados disponíveis para o tipo deste documento e atribua os valores correspondentes." +msgstr "" #: views.py:309 msgid "There is no metadata to edit" -msgstr "Não há metadados para editar" +msgstr "" #: views.py:313 msgid "Edit document metadata" msgid_plural "Edit documents metadata" -msgstr[0] "Editar metadados de documento" -msgstr[1] "Editar metadados dos documentos" +msgstr[0] "" +msgstr[1] "" #: views.py:324 #, python-format @@ -389,7 +386,7 @@ msgstr "Editar os metadados do documento: %s" #: views.py:382 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Erro ao editar metadados do documento: %(document)s; %(exception)s." +msgstr "" #: views.py:392 #, python-format @@ -401,65 +398,65 @@ 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 "Adicione tipos de metadados para este tipo de documento para poder adicioná-los a documentos individuais. Uma vez adicionados a um documento individual, tu podes editar seus valores." +msgstr "" #: views.py:430 msgid "This document doesn't have any metadata" -msgstr "Este documento não possui metadados" +msgstr "" #: views.py:431 #, python-format msgid "Metadata for document: %s" -msgstr "Metadados do documento: %s" +msgstr "" #: views.py:443 #, python-format msgid "Metadata remove request performed on %(count)d document" -msgstr "Solicitação de remoção de metadados executada em %(count)d documento" +msgstr "" #: views.py:446 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "Solicitação de remoção de metadados executada em %(count)d documentos" +msgstr "" #: views.py:508 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" -msgstr[0] "Remover tipos de metadados do documento" -msgstr[1] "Remover tipos de metadados do documentos" +msgstr[0] "" +msgstr[1] "" #: views.py:519 #, python-format msgid "Remove metadata types from the document: %s" -msgstr "Remover tipos de metadados do documento: %s" +msgstr "" #: views.py:567 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Removidos com sucesso o tipo de metadados \"%(metadata_type)s\" do documento: %(document)s." +msgstr "" #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erro ao remover o tipo de metadados \"%(metadata_type)s\" do documento: %(document)s.; %(exception)s" +msgstr "" #: views.py:587 msgid "Create metadata type" -msgstr "Criar tipo de metadados" +msgstr "" #: views.py:612 #, python-format msgid "Delete the metadata type: %s?" -msgstr "Remover tipo de metadados: %s?" +msgstr "" #: views.py:627 #, python-format msgid "Edit metadata type: %s" -msgstr "Editar tipo de metadados: %s?" +msgstr "" #: views.py:648 msgid "" @@ -468,40 +465,40 @@ 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 "Os tipos de metadados são propriedades definidas pelo utilizador que podem receber valores. Uma vez criados, eles devem ser associados a tipos de documentos, como opcionais ou obrigatórios, por cada um. Definir um tipo de metadados como exigido para um tipo de documento bloqueará o transferencia de documentos desse tipo, até que o valor de metadados seja fornecido." +msgstr "" #: views.py:655 msgid "There are no metadata types" -msgstr "Não existem tipos de metadados" +msgstr "" #: views.py:676 #, python-format msgid "Error updating relationship; %s" -msgstr "Erro ao atualizar o relacionamento; %s" +msgstr "" #: views.py:681 msgid "Relationships updated successfully" -msgstr "Relacionamentos atualizados com sucesso" +msgstr "" #: views.py:697 msgid "" "Create metadata types to be able to associate them to this document type." -msgstr "Criar tipos de metadados para para poder associá-los a este tipo de documento." +msgstr "" #: views.py:700 msgid "There are no metadata types available" -msgstr "Não existem tipos de metadados disponíveis" +msgstr "" #: views.py:703 #, python-format msgid "Metadata types for document type: %s" -msgstr "Tipos de metadados para tipo de documento: %s" +msgstr "" #: views.py:754 #, python-format msgid "Document types for metadata type: %s" -msgstr "Tipos de documentos para o tipo de metadados: %s" +msgstr "" #: wizard_steps.py:15 msgid "Enter document metadata" -msgstr "Digite os metadados do documento" +msgstr "" 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 e927b6de57..29b27bb6bd 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 793ee075ff..dd43daf683 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index f00e41bb3c..0031c02eba 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 638e7949f5..8a7ef3f82f 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 66aafacb51..0cd8cf9e02 100644 --- a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/tr_TR/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 452eb13fb1..4ef8472665 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po index 8fefe97a49..a9fa50f780 100644 --- a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index c46672ba0b..440648a10f 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index 01e053cdae..e552d0af6c 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 752e3a6169..9f34240dc3 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po index adac8bd3e7..3207e89823 100644 --- a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/cs/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 cad610128a..cf010e674d 100644 --- a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da_DK/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 d6399bf45b..bfe05c85d4 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po index ae2b896014..32b8a34425 100644 --- a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/el/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index 63682ac0a6..4c3161e733 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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 b1f6e9a84f..61ca60f17e 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index dd8dcc9cc2..83bd9081aa 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 325cbebf07..7f26d09abb 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index 01ef4af066..940dcdd2e5 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index d6fde6e3bf..825eda1999 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index bd3348bf89..c86b44a7c8 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po index 82d96cf800..ecda786328 100644 --- a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/lv/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 05499296f0..a5ea79bf58 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index 3a7d58ad54..a1b5b07a85 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index 387ec5b6c8..39c624a9a3 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 a3a2315280..21c47eb0e5 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 cfe0b5ad12..948d717add 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index e16eb2a376..480ef1a8a8 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 622d073131..9fbcb1766d 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 e0e6b533a3..34dbd28f0d 100644 --- a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/tr_TR/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 14270e36c8..1183757ad1 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po index 2aa319ebc5..81df51b8bd 100644 --- a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh/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-29 02:18-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index e70f1aa017..077776b26b 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index d77e20dbdd..4d9f6861c8 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 b223eeda37..3d3fb7838b 100644 --- a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po index ab46b4737f..1a8026d9da 100644 --- a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/cs/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 f81127bceb..65ed77f392 100644 --- a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/da_DK/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 ae8af90d17..81197d3533 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po index 8a5d6a28d2..99cebac394 100644 --- a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/el/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po index 0e7ff0fe7a..3df584d74f 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 0425d9510c..a150e3ab6d 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index 74486cd1dd..2fe96dd9ec 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index aa483437ac..b4f77f9dd3 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 3ee2e3c582..86b264d91f 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index 82cbf56157..5f6e247cff 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index 4c6566d0b7..93ece49604 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po index 8fb35e6868..0f12c8d5fc 100644 --- a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/lv/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 11f0d9a82e..45d928dcd7 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index 292ffcb3bc..fa1b7262c7 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo index 74397b0dde44fcc9c3efb6257dd0097b5952f070..7a02e034fededb701d2cde6732190be08a44e7ea 100644 GIT binary patch delta 199 zcmeAYT*6X+Pl#nI0}!wRu?!Hq05Lld=KwJXbO13M5O)GG3lL8LVvt&pCJ=u%5T`RT zFf0Jl93adDQ7;IjLGlt%zATUiDuV+cmw}mqK>=(SNFjquYEEiNDuZiEW(k8&Vp3`j ngI|7L>gHK2nT#^7Ihnbcd5J|}Ss>+?pPS0ymztMRn#%wHh@Tr# literal 2186 zcmZXV&u<$=6vr1*XfTu?0SXmA^javig0-CpXu44ZX_H75b%+uZ(F2I_?${o*J7Z>M z?Kt9JK;psyI3UCU@#}=Ra6qbj;Sb;j;=~OhPTcvvwbypSDC^JsdT-v3d6PeuPJJAp zox}GezCZC@#P{7D_(6N^&LFrS+yEZ{cfqURyAys2-i`6Ell9-g$1wg2JOwT+1i^#g zB6tQo2c8C>pNwnZT^O%V=C6ZG7{3lKg71KzgB|c;@HCV@3O)g{{$>1J0AB&wzFXik zpaS{455W$6`3z(~7GNyzTLNDOFMwCTw?IDcBk&>c6OhmO7Q|n08$W#hFChE#JIH?g z4YIxef;b{r#3buE1M)d%!F#~xz@Nc7$nyVy9B> zZtM>?_Aj_@rSOt6>73}u6GInl@}kfQd6l8l_R`XztKu&Cu5zUq4OE&^OH!g-FBLDjr$+Tf2ToJ=^$xS;X?3|ON*c(Zy>7dtFa!{pPCZ||v%H7n= z!o}F=zO+M#w2jS#S4NX)ncUOR2z^vczleBilj~S!QhSFbC_`?jldD9gN=rx3 zF_yzI)>UWr%^AOA%78c$eW6kgL9k=A4EDRmdP<~=t?Ct~6mqkKR)c*nc*`_aP53Ed zpNq8A`v1foAOhv83wEt}PsTpHk%R{@5)Mby5JSXfYqPOm*^@mO5jI>$CE>NaTDmM*p@cj z(y>XD?nJcOQhsW0L_J^GO>-;Ka2r>}MWlPh(5#ld^iTor`$Ri)jhZ=AdE2tG-ACKP^+^U{hOVxYnrW zMj3;$Ls;EZqFi7V{ALxA(vIBdOL#PP*^w3~VTZ`5BQg4lmy$_oSLwjSqi?8ZFoRm0 z^NM-`aV>69ro6IceM7;Is8eTJcrc)JT;Qc8(0~KyiQ>YjrYr zl;homSYoU!>b$fao+a>XN9t~#&E=6_V53Lh_wllg7lUh-(=@L3(y{s6AI~-{P>_dh Y!A2RYjPPF~B{7$4Qw>nn\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" 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 1b87e7885d..5c5e9734db 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po index 11dc850503..79ae4dd167 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 dfed5002c3..dbe02c9037 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 f78211a96d..e44a0b3de1 100644 --- a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/tr_TR/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 87d13968ec..deef632d5d 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po index 449ff48072..daba0639fd 100644 --- a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index d550ad6407..270e311258 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 7dceb04f1b..0d231dc4a4 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 dd5c624d3d..7d233320ee 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 f7c3dc9397..7adcb33d70 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 326be135cb..ccefe2562e 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 535c35975d..45db8646b2 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 4031ac15a9..ef96049980 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 326be135cb..ccefe2562e 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 d217de3036..9e616012b7 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 7e2e68ea52..7b2008e560 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 b493ba88cb..141a0157b0 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 d1af351cc5..9033f86e5b 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 52d2db130c..681f1314e6 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 809033b21d..4d561bcc9e 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 5e7de03668..2ec17bf532 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 788aaf72a6..4c89e7670f 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 c50f228931..94392a5c95 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 195cba0b83..1752eb3020 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 88fdb3df0f..2fa8243292 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 337a9dc00f..56e2fdc386 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 5d39ded804..2f2180dfa8 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 ba5e5e6ac0..7c987e6150 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 326be135cb..ccefe2562e 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 d7a56dd5e1..1a9af32f0a 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 326be135cb..ccefe2562e 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 f262555d6f..958740c696 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index 96ba7c0af1..71072e75fa 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 e1bc945b17..87283f05fa 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po index 45eae0c2f6..bba2c673a8 100644 --- a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/cs/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 ca2876af50..400d43a8b8 100644 --- a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da_DK/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 84dd31ec6b..1e42846e26 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ 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-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po index 06972b6777..3de8f1f854 100644 --- a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/el/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index 510e989624..ec490ce53b 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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 34c92e2f19..1da580d918 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 6b745d8f5c..b87ce578a9 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 541719ec87..6f751302d8 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ 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-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index f6946578cc..6f1a1a6b5e 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index f0a0f38911..3a5956c3a5 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 258262fd85..c188451a92 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po index 261b87cb0e..8d8cf4c32c 100644 --- a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/lv/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 bf91a3fb11..c31266c614 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index fe34e9e896..e8f2cbbeb7 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo index be1d7aa3c7b943659cd650c18209f701df5513eb..d930014be270e205e710d9ce0b063f6842166cee 100644 GIT binary patch delta 281 zcmXYqzYf806oqfK+9D)O27hWXn1z^`#Mn2`27~^Zv?L~@MIzC75(`$uY!{Ev!C>Xw zwm13mo!p$8yQ%Ng^}D1T2%~`tFhLG%0nZ7v!5MHT1UmSFJoo{bvqV&ei|_=r0N?FX zL>c%2XW=JYgkLc3dK4n?;}49RXw<~~Fr8$U0#J({1~<7|6OL~?KJ{aJG!Wy(92>)5 oxi$qut$G~kQz^L1ohEm#7fZx#P9B*vR~VLUSjnBBU|DGV0n}13%>V!Z literal 3975 zcma);OKco97{?8i*Fx!ocPZdPLlafAn*;)7qbMqQNEHoPB}>Z%kaxzrJ9K8e*q$WY z3!D%aP89-fR2)hXoB#=NUG>DFaNvsIfRGU4fT{|?h5zT7eI?rnE7{+8{Mr6q_BTHr z-19y|o525J{0BENHVb}!Gk(xMyoIsj;78yy;1%!)_z!qHcz6$EcYsI1y`Tr)3(n^K zRq$c-Uj-ilH}m%wzz5L32tEjY1MUaE2k!%a0S|%KL7I2qR>mF$J@5(eMeqQafaBoX zAjw?@i{KRyDza-J?ejNS0QcRN$sGbY`p@S5vmotjz_Z}HApY3T_?ZWP1D^tq!RUv; zm%w|#2KXAdk-z^DoI(Fj@ECX$&S}7>r@=||zq*sL6X35oAA?eOWM@IrPvGY+FapW` zEs*rO0Fs@bf)uMCK(hZ|@F=(!lg7YlkmO$hNzWL35_|_Fxz9lI-&K(G`wJxhAG({d zGB^!B4#wad_#Q}p{0=02u7afR?;yqF8c22>MDS^!1(4QjfD!l>Nb-MxYv6T|-r$v=weLssFA&-8`(n*u5dAR9sI!M?EbuiWu5)h zB|DG~E-%T4)JSKFFWF9we2kDYq@Rli;PUeb2os#n^o|L>izPkMS)oR;qK33#?&yt;`zlTBM8E^(r?E_|;UWlRz^&r8Df#Nc8h&jcA0g1t$Q`pa!92zl$L)fJ|i!>VU@t$r<1GK z4XI72lK%Ys1?@HRC6`(&z01&mW&>;SdYFW!IcR%#wC5I{I~|K}CXo_>GuX;4%a(%B zx?a~ZCmRg9pv=ciku7V9@U&#Y*HxsBOiPnSc4*8+eK!F&RzYg;v2n_f*ON4^ zNj(v;N}Dtak>kA5woR4rD6DCr+uVe4D+=pvq@>GxSi@DFlekqXG7vl`c~u%CweT%R zelMhn4B_**$kv>eY+YJ95j~TgwTAoy(@D~;Cx*^Zt<3{j7cjEO)?J2koUh&zhO`jb zvFXM)7wd-4^a7s`Y?Gs7Y-A+;!6Vv@AsOh-_k4Hvk>bvXq5EK-^_@YBB#NSxCP9%^ zu_1hviilJ8@%%V)Jd^K`CNR3YSe`^hb|!@9=q-d2f1z!vXR z;GM}%Uzx9nwn+HW;>vnqO}3P_-im32f%ih%FkV%ad7-lEt;vm$4y#8OOqowlPCf5U z&UjPL@yVI;%+&Eow8Cj&tXCxsB4L#-^EHLkK?K*75js>5NE#`U%BxBdmw5%7rHxb~ zUB;W%w#uc_=H_P6*$~#{R?$~+NoR9)DJDHV8N{X(ausDFGo7prS_H*Uj<0xGCxrZZBO4aZ`nd6O0|f* zWu&4h^Q7gvW^Q_xXODB^2|qH&rzU0#Y-eduR2xDcE))TtJ0Ig#iUiV^(i(RMb^6JT zW2!Nj-!YKa((hc3Jw(<`cf)St$;jeRX)X+I+uAG3tkIrQK&53 z)UAT30No0R&pVi!8mAZnqXm5x;%Mf2!fOfw{mWma=(AuvF=|Tw4=m4=Q?t2O9UFJT4YO, 2011 # Renata Oliveira , 2011 @@ -10,7 +10,7 @@ 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-07-05 01:31-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" @@ -27,33 +27,33 @@ msgstr "OCR" #: apps.py:109 msgid "Date and time" -msgstr "Data e hora" +msgstr "" #: apps.py:112 models.py:76 msgid "Result" -msgstr "Resultado" +msgstr "" #: backends/tesseract.py:95 msgid "Tesseract OCR not found." -msgstr "Tesseract OCR não encontrado." +msgstr "" #: dependencies.py:25 msgid "Free Open Source OCR Engine" -msgstr "Mecanismo OCR de código aberto" +msgstr "" #: dependencies.py:36 msgid "" "PyOCR is a Python library simplifying the use of OCR tools like Tesseract or" " Cuneiform." -msgstr "O PyOCR é uma biblioteca Python que simplifica o uso de ferramentas de OCR como o Tesseract ou o Cuneiform." +msgstr "" #: events.py:10 msgid "Document version submitted for OCR" -msgstr "Versão do documento enviada para o OCR" +msgstr "" #: events.py:14 msgid "Document version OCR finished" -msgstr "Versão do documento OCR terminada" +msgstr "" #: forms.py:16 forms.py:47 msgid "Contents" @@ -62,11 +62,11 @@ msgstr "Conteúdos" #: forms.py:76 #, python-format msgid "Page %(page_number)d" -msgstr "Página %(page_number)d" +msgstr "" #: links.py:27 links.py:32 msgid "Submit for OCR" -msgstr "Enviar para OCR" +msgstr "" #: links.py:37 msgid "Setup OCR" @@ -74,15 +74,15 @@ msgstr "" #: links.py:42 msgid "OCR documents per type" -msgstr "OCR de documentos por tipo" +msgstr "" #: links.py:47 links.py:53 views.py:157 msgid "OCR errors" -msgstr "Erros OCR" +msgstr "" #: links.py:59 msgid "Download OCR text" -msgstr "Transferir texto do OCR" +msgstr "" #: models.py:20 msgid "Document type" @@ -90,23 +90,23 @@ msgstr "Tipo de documento" #: models.py:24 msgid "Automatically queue newly created documents for OCR." -msgstr "Fila automatica para documentos recém-criados para OCR." +msgstr "Automatically queue newly created documents for OCR." #: models.py:30 msgid "Document type settings" -msgstr "Configurações de tipo de documento" +msgstr "" #: models.py:31 msgid "Document types settings" -msgstr "Configurações de tipos de documento" +msgstr "" #: models.py:45 msgid "Document page" -msgstr "Página do documento" +msgstr "" #: models.py:49 msgid "The actual text content extracted by the OCR backend." -msgstr "O conteúdo de texto extraído pelo backend de OCR." +msgstr "" #: models.py:50 msgid "Content" @@ -114,27 +114,27 @@ msgstr "Conteúdo" #: models.py:56 msgid "Document page OCR content" -msgstr "Conteúdo do OCR da página do documento" +msgstr "" #: models.py:57 msgid "Document pages OCR contents" -msgstr "Conteúdos do OCR da página do documento" +msgstr "" #: models.py:71 msgid "Document version" -msgstr "Versão do documento" +msgstr "" #: models.py:74 msgid "Date time submitted" -msgstr "Data da hora da submissão" +msgstr "" #: models.py:80 msgid "Document version OCR error" -msgstr "Erro de OCR na versão do documento" +msgstr "" #: models.py:81 msgid "Document version OCR errors" -msgstr "Erros de OCR na versão do documento" +msgstr "" #: permissions.py:10 msgid "Submit documents for OCR" @@ -142,55 +142,55 @@ msgstr "Submeter documentos para OCR" #: permissions.py:13 msgid "View the transcribed text from document" -msgstr "Ver o texto transcrito do documento" +msgstr "" #: permissions.py:17 msgid "Change document type OCR settings" -msgstr "Alterar as configurações do OCR para tipo de documento" +msgstr "" #: queues.py:11 msgid "Document version OCR" -msgstr "Versão do documento OCR" +msgstr "" #: settings.py:12 msgid "Full path to the backend to be used to do OCR." -msgstr "Caminho completo para o backend a ser usado para fazer o OCR." +msgstr "" #: settings.py:21 msgid "Set new document types to perform OCR automatically by default." -msgstr "Defina novos tipos de documentos para executar automaticamente no OCR por padrão." +msgstr "" #: views.py:43 #, python-format msgid "OCR result for document: %s" -msgstr "Resultado de OCR para documento: %s" +msgstr "" #: views.py:65 #, python-format msgid "OCR result for document page: %s" -msgstr "Resultado de OCR para a página do documento: %s" +msgstr "" #: views.py:80 msgid "Submit the selected document to the OCR queue?" msgid_plural "Submit the selected documents to the OCR queue?" -msgstr[0] "Enviar o documento selecionado para a fila de OCR?" -msgstr[1] "Enviar os documentos selecionados para a fila de OCR?" +msgstr[0] "" +msgstr[1] "" #: views.py:97 msgid "Submit all documents of a type for OCR" -msgstr "Enviar todos os documentos de um tipo para o OCR" +msgstr "" #: views.py:111 #, python-format msgid "%(count)d documents added to the OCR queue." -msgstr "%(count)d documentos adicionados à fila de OCR." +msgstr "" #: views.py:146 #, python-format msgid "Edit OCR settings for document type: %s." -msgstr "Editar configurações de OCR para o tipo de documento: %s" +msgstr "" #: views.py:175 #, python-format msgid "OCR errors for document: %s" -msgstr "Erros de OCR no documento: %s" +msgstr "" 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 42fc7c7ea9..1facefa0a4 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 a6cb46734d..e9990a66e1 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index 1bbc8597f2..b9a5dddd17 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 5304df831e..b4d548f6fd 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 4e565e02ff..22cf1937ec 100644 --- a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/tr_TR/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" 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 ae13cb7b31..1285dab118 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po index c0d735de42..e3640c9cd0 100644 --- a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:31-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" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index b4c4083869..830bd81d57 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index c88a67e90b..39a0bd7343 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" 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 0b1220b65d..4fa87cc3a6 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po index 400cfc00bb..3135d9a2a5 100644 --- a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/cs/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" 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 77a73fc1f6..003359e49c 100644 --- a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da_DK/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" 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 a2daf567fe..74509d20bb 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po index aacdeddb42..dc0e13bf56 100644 --- a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/el/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index 8f55697785..38c8abfd09 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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/permissions/locale/es/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo index b285bb7f80f9a4e964f756267e7ffb0ba3425ebf..61ea192e35a1c51a48d7abc2bf7314d0594c2306 100644 GIT binary patch delta 716 zcmXZaODIH97{Kvw#vS7^4C5`C8KERKd9#s{5HVgG?=mY>BUdS8WGgHN8`;>|pv)F2 z8_Gh8jb>q^ER=<%_vk%hp%js6 z3}OymU;*Bu8((n{Kd>8HjAVQRUG#S`6_2d`2~y;oDnleHaT<99Zju3c#!UJN)PEPbf^jA1d(VK1(tuDe4Q=gU0}o%mw;j{2rwNRdA( z7q{Xd8%@OHOj?Dyt`+sbE}UoHATH96r&;sJE??(iE)L)n&R~%9<%))0rJG%JLoe!^ z*J3u-Tm4Sdo9aPLWD+&e2A}0Gi5#Qe*cs|~6h}?imX-V#3XmcdmVqpZE!h3Gs@RUb z!&ZIyXrC|~qmkvgaLn(V&1k6$H2DI}?Tu}h+s-vd*>EHrGJVTB9x`P-wB!p%Oy815 Fa*<#N0=+f6}O1=VbUOQ z#H=FoIE1yhkM($l9=yW|e8f>~x0U->&_%w16__*gJaWn&!6}lJLmG8-oR&M}2CK>M zQ6GFpAHHETexn`T1e)Tvs3lVmg#eWkTsxaxo)++GRpL diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 07be462d37..00b062dfd0 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ 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-06-29 06:22+0000\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" +"PO-Revision-Date: 2019-07-05 06:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Permisos insuficientes." #: dashboard_widgets.py:15 msgid "Total roles" -msgstr "" +msgstr "Roles totales" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index 33ec468602..3bc9704219 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo index c586cb54d11c243ea0348aa81492aba0a872b00b..1f68e9b8d287d5c54b34a5c32dcad7682166c650 100644 GIT binary patch delta 763 zcmXZaUr19?9KiA4=H_(XX)W^)6TM;zq6;lWk(h!hCDQz}o{HFQt`fH^XyC2!4G&HKVcRA#4!HGQS5US=2y^Q{2EJfqd0z#RN0~NiezPv z&NU|X3ls7UD;VcdH=d#&FR&h6ZV{?9(l8}AupHa525%z=%NXi853vp{ypKz$`#z(= z{c=P{7yc;v3-wLUkt&xo23c_vjRxZP6l_J^*N=MPU0h&Y7+*0yEGxWNi0Cx%Db)Q5 zoWm?W=6*S&Q;YXFElSE0@M41DtQ6eH2kxWTgR@-u82S+!Hn>Z|2X&fjg zg&cNp5whZ_>FI^K{;q!S|s8Bbq<$P5Ot z0{5{BkFXrCa1`%w0GrME_7${IU&kWc{I72zN%qLBB1uV8sHEXA-yj!QN_JqSy%$7>-1wSj^Q9Kq0T!-8~e*C1s!<#?=9+0b4ZeRG8<9( zL_LUM$ys_mpC4>QJGV~iH}X@^Q1_x22XGb_ zP$O`SIxdTLd_>*&6*c7FsPml++8`2c)PH1`Q)+((^*}dB_g}Q@u|XuYX*f)h+BJGj zO_?WS%A5*WCVgFP{%)_YE8zFH`gp9v;dr8LA{JhWN5Y9{EZ`lF&dtXXQH+OUi_y%B K#a)zg+Fiee!A?m4 diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index f0f80f6503..03c5d11345 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -13,9 +13,9 @@ 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-06-29 06:22+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" +"PO-Revision-Date: 2019-07-02 15:44+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" @@ -33,7 +33,7 @@ msgstr "Droits insuffisants" #: dashboard_widgets.py:15 msgid "Total roles" -msgstr "" +msgstr "Nombre total de rôles" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index c7298bea6c..488fef8c87 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index b6af723aa2..05866c355f 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index b5e07fc097..39fef31115 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo index df51ca8a79130bef5445c856052a7ed3c5bdd787..03c5fffdf7a31a4a73b9f224829644cc187b6967 100644 GIT binary patch delta 782 zcmXZYQAkr!7{KvwYiqe?>8wmExq~K1D3cn>5c5HT%(UTxKrjz0V!C-{_hJ#@*kca` zGJ5JMUqlQl?5Q3kx)2iiBIMg1d@u+ReCkQ;|FK=pJ->4f-#ObgxOOpR-Sx`FoMUAk=N7#3oMR0X4D%kBIYC2D3MQBD$=Zd%^-rO}V8?xXtZ}_Hw?6w1v{z=^ delta 734 zcmXZZKWGzC9Ki8k&ZN;8WAm??)|9joDo7wi4K#yoB^8RLCB{VpmXkVIV-9nNqgfP( zP8tF((h3fR4y{x~=~N;L4h|A16bxjLj$Q0jgnoY}k9Y6$-n-xXbH8g2{)^SxA$LP4 zNuCQld6&pFEE_bG$rB>?a0>fz6{Gk8&*FES$6dUMWA5&J1^tYlVIMB{#;=hoD>Ocl zn!KkIW@4i|Ax%8Z_$TVZJq%$7WB3<67@(mm5j=%49Kegn#*#zbXBy9A0cUUtb=^nw zbH03`qk-Rg{zCoIHd5t)#!prbQ7>Y6yGBtDx`Z!ze+3s9Z=Vzi;t;orUcKG2u#X{WePOdft0ColRxN6X|R&lewIx_-0MpN!_WM6}xOY lRyCKnZQXxRbu6^a>O*U5-+SE?C_XZsuj@{tY&|w@IR*!fQWgLJ diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po index d3b7a6a66f..003a98c0ad 100644 --- a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ 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-06-29 06:22+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" +"PO-Revision-Date: 2019-07-01 05:54+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" @@ -28,7 +28,7 @@ msgstr "Nepietiekamas atļaujas." #: dashboard_widgets.py:15 msgid "Total roles" -msgstr "" +msgstr "Kopējās lomas" #: events.py:12 msgid "Role created" 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 d6f7bc5c11..20fd63d417 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index 137764f7a0..e57764760e 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index b098ef4ff3e9d2e66ce425722c097e02998c775b..3d03a32073fc2b3f91aab70d392966ea41186529 100644 GIT binary patch delta 478 zcmYk&ze~eV5C`x}n;4DO`eX9PkU{96qoW{2{IwMa2VG1tmIvue$RkDQP;pfkA1?j_ zE{dQO!Nnnyxa#U6_*Xdiz4Rd-9G_frmv_ni+?U(?oU*S7F^-%^o+GD`KS+)(i)aFF z!!fuAhhWRp656P{(1R!D`5Bx+eF+_S3%TzBj>4zG{T}7G;K5hOFMUVy0xM;rDr~@E zcmOA%fV@B#@?xi^)^HZ}HROZ(#%IU}zQ7Uq1}pFbTC_hX_y7)W;9-{w6Fkg+hrgb` zgaflwLh>TKd=d3dAflidg?=lIvqb3&d%27YU2%{ha{deOUd*op>AOFHyMTWK9|vyT#u$EV4>~Nd zeZYHw2Z4_QUj~xg*MKDF4Dd0a04@M80O`B$fyD18Anm(W;_pDR^DiKN>|b;{;FE12 zLp*lf9dJL8zMBG)zT?0y_MHM2n18)J*cE{s>7N0T-`)iFfH{!-`Wuk!pMntb=OPdy z*jvB{fiaN$um&Vv9{_g)F9LT0KLrx6t3cZKBar;`Gw=!EA3(Bq3&;{~2SO#=2_!kY zf!M+tK>Sz}-P6E%;2XdgNc+D562BjS#N!%}?70CXeg6Py-)=bd82qpoNb!h4lK8z> z;zc0wzJw0jyiU@$7me(u=NYtz(e|Se$NSLeflK}K9Qr5GI2v)H2kGbSqcQQK*dCw> z9kb#(=tS1}YEN$Pb(JJsWj$$>rAd{wN@tdfEasx!me%sN&K$nB zbvCmmR3ci5ER|FiD&JOCNvUPCI!y()5@dvvF;A5Bq)Mi_QK>K+{9U=>X$u(P^h;bD zZe*T_wgg%5R5loKTX`c6{AQV5BQn^k$HW*3Iy{r>UM`yr^T7GIOr(=6fPZhTs);qH8kP|Bq={w%`{)@vz!dJ2!hd77ziiLi`hMo(k5QXb$qb>-C6y!ywAU|X* zrJz6(6jqu+g0J@!{BUy`R~%!#$&}w?Ce%4mMp}!Ei^S^D85vJ^pQa!%bBkq9w_?iB zhsdyS)Vyw+%eF#n2j1c(XJ>;EJe6rn8auEec+=;H_n8kZjx6~GEz@P?m*dgt5|1pIM!crbhcnV@H~3E^F&pW!)y9 zYAHA5+vK^cEhmK$Ni?rbYMVUE{nSoR9_3*;{X)j~PV++tkJeCSaa?sqRj|l4>L%(M z?}!V?O{%w&$C4MQc%35af7ZXO>wJz94sncy!JLa>t?hq>7m`CrS!FT8*Es1GnHg7P zpqzMRv9h_&`kQM~4bQiiGWKHLt0v)LS^4dYD7=G04B1ErzSiF~-68=asD=O5@Cg;q z{w1TrV%10yEEk6B0(GcmopOaTsG%fyXfOL8MYq*c9w%>$_o#42wMe?)H;JDGHz?I> zBb}(;v=%79Znh#*y(SHtJKs)7$mk7~ae)^eD(huU^aO(L{$?yJN^Xjf>JaS^1~OtK zFhph$Afz=I4}4Lr&R(*jdLPQYMENA)WjCzxr%`7Se*`F0b)?Lgn9F)l*hyk_T&7}~ zcmAW9@m#AI#>Kfp;aUzUnJ20(U@o{j4Qp}FAX_BT80qMjP?zvS-FF(q=LZ>9j*!-E zgdi59Io$!YP-gD9V{T8oA{yj}ZswMb4sL~5#FW?mzVO$@@Q{H$9i#r|>ELK$SK(BG zJ0;czU!5ytIERSQxMPM9g%XU%eSlk_%EXDZ)xVPB0L2K^*vW@f`g;R_kinVuWc`tb zpz!|IuX+CpA4Ld$ua=Pz+%f=25L_<(O{5Z{;!8`60Uc>83+rzd6xT|ehAHgR;v_k< V*S|FKFAKNI&<~VaxJD`){sS}}BSruK diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index e90410ddda..eb94c3d6fd 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,7 +10,7 @@ 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-07-05 01:32-0400\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" @@ -30,15 +30,15 @@ msgstr "Permissões insuficientes." #: dashboard_widgets.py:15 msgid "Total roles" -msgstr "Total de funções" +msgstr "" #: events.py:12 msgid "Role created" -msgstr "Função criada" +msgstr "" #: events.py:15 msgid "Role edited" -msgstr "Função editada" +msgstr "" #: links.py:16 links.py:40 models.py:113 views.py:165 msgid "Roles" @@ -46,11 +46,11 @@ msgstr "Funções" #: links.py:23 msgid "Create new role" -msgstr "Criar nova função" +msgstr "" #: links.py:29 msgid "Delete" -msgstr "Remover" +msgstr "Eliminar" #: links.py:34 msgid "Edit" @@ -62,11 +62,11 @@ msgstr "Grupos" #: links.py:52 msgid "Role permissions" -msgstr "Permissões para função" +msgstr "" #: models.py:27 msgid "Namespace" -msgstr "Namespace" +msgstr "" #: models.py:28 msgid "Name" @@ -74,7 +74,7 @@ msgstr "Nome" #: models.py:35 msgid "Permission" -msgstr "Permissão" +msgstr "" #: models.py:98 search.py:16 msgid "Label" @@ -82,7 +82,7 @@ msgstr "Nome" #: models.py:112 msgid "Role" -msgstr "Funções" +msgstr "" #: permissions.py:10 msgid "Create roles" @@ -102,35 +102,35 @@ msgstr "Ver funções" #: search.py:20 msgid "Group name" -msgstr "Nome do grupo" +msgstr "" #: serializers.py:46 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 grupos para adicionar ou substituir nesta função." +msgstr "" #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Lista separada por vírgula de chaves primárias de permissões para atribuir a esta função." +msgstr "" #: serializers.py:90 #, python-format msgid "No such permission: %s" -msgstr "Sem essa permissão: %s" +msgstr "" #: views.py:32 msgid "Available roles" -msgstr "Funções disponiveis" +msgstr "" #: views.py:33 msgid "Group roles" -msgstr "Grupo de funções" +msgstr "" #: views.py:42 #, python-format msgid "Roles of group: %s" -msgstr "Funções do grupo: %s" +msgstr "" #: views.py:79 msgid "Available groups" @@ -138,36 +138,36 @@ msgstr "Grupos disponíveis" #: views.py:80 msgid "Role groups" -msgstr "Grupos com a função" +msgstr "" #: views.py:89 #, python-format msgid "Groups of role: %s" -msgstr "Grupos com a função: %s" +msgstr "" #: views.py:91 msgid "" "Add groups to be part of a role. They will inherit the role's permissions " "and access controls." -msgstr "Adicione grupos para fazer parte de uma função. Eles herdarão as permissões e os controlos de acesso da função." +msgstr "" #: views.py:104 msgid "Available permissions" -msgstr "Permissões disponíveis" +msgstr "" #: views.py:105 msgid "Granted permissions" -msgstr "Permissões atribuídas" +msgstr "" #: views.py:137 msgid "" "Permissions granted here will apply to the entire system and all objects." -msgstr "As permissões atribuídas aqui serão aplicadas a todo o sistema e a todos os objetos." +msgstr "" #: views.py:140 #, python-format msgid "Permissions for role: %s" -msgstr "Permissões para função: %s" +msgstr "" #: views.py:157 msgid "" @@ -175,8 +175,8 @@ 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 "As funções são unidades de autorização. Elas contêm grupos de utilizadores que herdam as permissões de função de todo o sistema. As funções também podem fazer parte das listas de controlo de acesso. A lista de controlo de acesso é atribuída a uma função para objetos específicos herdados por seus membros." +msgstr "" #: views.py:164 msgid "There are no roles" -msgstr "Não há funções" +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 53e5abaaa8..7daf02d995 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ 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-07-05 01:32-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" 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 3a1b59a096..ff31029f3f 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index b3628dfea6..504b876584 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 dd282d5727..ec6b335fb1 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 d3082ddb80..2549cd95aa 100644 --- a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/tr_TR/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 7e674c30aa..ecf7fd0d8d 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po index c0021b8190..daa50a34bb 100644 --- a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po index c2363d9b2c..32b3cfac9d 100644 --- a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ar/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po index 54c1d9eb63..ad27a8f1bf 100644 --- a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bg/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 247764892f..83f030608f 100644 --- a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bs_BA/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po index 8b04538de8..c656a438b4 100644 --- a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" 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 7da981e3e0..eefac21bbd 100644 --- a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" "MIME-Version: 1.0\n" 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 77b0374fcc..a1bb863616 100644 --- a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po index 656d3e096e..8bb022f61f 100644 --- a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po index 0f377c7699..841ee29770 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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/platform/locale/es/LC_MESSAGES/django.po b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po index 30b2184c52..10ed2a5b96 100644 --- a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/es/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po index 06538db685..8a0624c616 100644 --- a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fa/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po index b05d65fc28..25fa9e21a8 100644 --- a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po index a92418b67e..30524e75d5 100644 --- a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/hu/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po index 9731dd8a9f..c56edf23a2 100644 --- a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/id/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po index 626a308067..3f0cef630d 100644 --- a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/it/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po index 3921e2b4af..4de8af1de8 100644 --- a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/lv/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 5a356068c7..02c99a61a0 100644 --- a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/nl_NL/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po index 7417fb53ba..032f06af37 100644 --- a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pl/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po index 1fa4213b22..740991dcae 100644 --- a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 88bc9419ba..25fef76695 100644 --- a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt_BR/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 5bf757ad42..c1b8d59e94 100644 --- a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po index 71db2d813f..c990b03b22 100644 --- a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ru/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 3e6c8c614c..d4ed803128 100644 --- a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/sl_SI/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" "MIME-Version: 1.0\n" 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 2c771404d4..b5e6784165 100644 --- a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" "MIME-Version: 1.0\n" 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 61eb3bc160..4c817c2cd9 100644 --- a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/vi_VN/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po index 6bd26d827e..193eb5f7ed 100644 --- a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" "MIME-Version: 1.0\n" 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 d149578c09..9d60e1b0e4 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 3b53a30189..6b4ea2fafa 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 b2a104d84b..55be715e66 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 714724350a..b55ef4fee3 100644 --- a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/cs/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 2af23b8212..228dca5740 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 522434d502..03be68d40d 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 @@ -11,7 +11,7 @@ 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-07-05 01:32-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" 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 12bcc231a0..66d54073ae 100644 --- a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/el/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 8786892566..e3f1268c19 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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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 207dd700f0..83a8106ff5 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 c2797887ff..ecd35298cf 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 062a953ec1..6f81a04c92 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 3e56b7ce66..21e0eb4ef7 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 34f6faadc7..c26b1a14cf 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 30a99c7dd9..8632a16cdc 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 5cb2dbbddd..49ba03aff8 100644 --- a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/lv/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 19ebf00839..6fac930401 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 3c2575eaeb..e73f89a8ae 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 a91324d8da..854bd8a240 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 f5c59e8361..917af2a975 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 @@ -10,7 +10,7 @@ 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-07-05 01:32-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" 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 fa9d49561e..c353c90b2b 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 5737e72f55..a03e2160d2 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 2a89913aef..8b624cd833 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 @@ -7,7 +7,7 @@ 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-07-05 01:32-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" 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 8d1d30d22d..d5481cf3cc 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 b7e9707d9a..ad1d4ed83b 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 @@ -7,7 +7,7 @@ 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-07-05 01:32-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" 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 255581b37e..0269945b17 100644 --- a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh/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-29 02:19-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 2e09f74be9..173da80b75 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 0f4b3d61f0..da028b7e5d 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 d46b8c0ee8..7cd5c1ddec 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 8ae782695c..81e234c5cc 100644 --- a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/cs/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 4c4efa2eea..dd4620ca72 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 e8353ae310..b8bfa333f7 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 @@ -10,7 +10,7 @@ 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-07-05 01:32-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" 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 a94bb3f5b4..9749477502 100644 --- a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/el/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 9ad7b1d3c2..34c0630c99 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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 648089bd83..ad25a47239 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 e242853d19..8b236c4210 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 a20fd3b50c..70ec58e42a 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 3e7ae8d829..df35685bc8 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 5e81d50bef..83f2c1a5dc 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 59a56f9d81..b85d920801 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 19b839356e..0051fbad42 100644 --- a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/lv/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" 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 0522f0c027..e13761f2fa 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 f3fb70608c..7c10548aff 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.mo index 6806740ba0b2aa36c19fba4460bc2e7b5f4f8ffe..6a08bf1f4ca7cb344b719ebb16d7352e1cc969b5 100644 GIT binary patch delta 226 zcmeyt_m-vpo)F7a1|VPqVi_Rz0b*_-t^r~YSOLT=K)e!4uLIIdK)e}Ls()?Y3k;M%+ndALE?!;KtYhq;l*IN{33?n%v=TlcGw-p literal 1912 zcmZvc&yO256vqve9}ToX`7M6bU8z+|nIszyELoPHn@UA&chy~1f=ls^UlPNNJ=mVv z2KXNk5**-Gkf`V#4sgtsKLGWB#DNPZICJ6qCfS5+JBs~@$9~V>_v|;npE&ZB!1FlT zGibk}J&X3)9q91<4L$+>10Dg7-YLXG;BoL6coJm01myX*!6(5@umKK1{6s*v1Xdv1 zeGQ%fuYU-P8LvA7vV9MH0L(xMjzAB7 z19Co&-8<3yJlMgw4RYR6ko86oa%&Bodu$^fMdOF#f*bK58r$%Cq(MB4#t-N1vHG77 z_fN^W;|FeM568V5jIw0b@f#3d&-EArlG(sFME0hRI2<`4p3 z-l)BdUK86B6*7f+oQ*6tsr`r9tFq84!c!>IltSp2S%z??=Cfr%8Y^ekb!-PqFf$}? z*hk;HTq=88NiwRBNEV(_(qvP@IxSOWIhT7R)1k5hxWG1XXo9Q^?Kh>^&Xtb`sS0A3 zb2aH@UWVGT@U9@AjpWCrgNUZsh3VYnJqlvWyALUi$wi&)k`Kn&uG~-~DDACpY&R}b z;e1Rs!ocX{&2kWu9oLnOt&Q`8cG}A;N&Drb^O9_Lx-TxDZ{umaqe4t} zys{xv(Rp@lOUjhoHd&?QE5@ocnu^X3ujG@NE8gkAldnfMGkv<+OkMseT-iaX29)fO z%DZw4vdTe8f#lg?j77KA+TY)AE*Q1E3pjP>TRBIRkj_IZoBC-Lv30JoadD$J4}7`V zZoK7i6)jYc3WOEuYHSsmGIo{E!Q%$6y}NTES(&e6nSJs}&!$e-w|iyJ#F^f%EMj9T zE4|8+3(n`ED{WB^!&+xmPX4Z)wer-OTt2tjn3mD_J156K$TC-T87YmT8ec!r|>lzzht0-g7D&I3mBnpmGij&I^@5iz*H&c(X)Go}6X>l4NR4nmj z`Gm89OTmSSx^zvk{{Ki1yR?Y;pt$Swyb%_{=50}?8eXwK)j8*{#VwJ@IKGij>vVj> zrUqvtEhndN8sPM2S?$SEh&VKZzIjWS28qecfb&zAuJdAZb|@9qt~4r4Lpatz ZZ{||uzP=2|ExuF%<%|s%4td+;;y\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -19,11 +19,11 @@ msgstr "" #: apps.py:22 permissions.py:8 msgid "Smart settings" -msgstr "Configurações inteligentes" +msgstr "" #: apps.py:30 msgid "Setting count" -msgstr "Contagem de configurações" +msgstr "" #: apps.py:34 msgid "Name" @@ -35,7 +35,7 @@ msgstr "Valor" #: apps.py:41 msgid "Overrided by environment variable?" -msgstr "Preferir variável de ambiente?" +msgstr "" #: apps.py:42 msgid "Yes" @@ -47,24 +47,24 @@ msgstr "Não" #: forms.py:17 msgid "Enter the new setting value." -msgstr "Digite o novo valor de configuração." +msgstr "" #: forms.py:36 msgid "Value must be properly quoted." -msgstr "O valor deve ser devidamente colocado entre aspas." +msgstr "" #: forms.py:45 #, python-format msgid "\"%s\" not a valid entry." -msgstr "\"%s\" não é uma entrada válida." +msgstr "" #: links.py:12 links.py:16 msgid "Settings" -msgstr "Definições" +msgstr "" #: links.py:21 msgid "Namespaces" -msgstr "Namespaces" +msgstr "" #: links.py:25 msgid "Edit" @@ -72,37 +72,37 @@ msgstr "Editar" #: permissions.py:12 msgid "Edit settings" -msgstr "Editar definições" +msgstr "" #: permissions.py:15 msgid "View settings" -msgstr "Ver definições" +msgstr "" #: views.py:23 msgid "" "Settings inherited from an environment variable take precedence and cannot " "be changed in this view. " -msgstr "As configurações herdadas de uma variável de ambiente têm precedência e não podem ser alteradas nesta vista." +msgstr "" #: views.py:26 #, python-format msgid "Settings in namespace: %s" -msgstr "Configurações no namespace: %s" +msgstr "" #: views.py:34 #, python-format msgid "Namespace: %s, not found" -msgstr "Namespace: %s, não encontrado" +msgstr "" #: views.py:44 msgid "Setting namespaces" -msgstr "Configurações dos namespaces" +msgstr "" #: views.py:60 msgid "Setting updated successfully." -msgstr "Configuração atualizada com sucesso." +msgstr "" #: views.py:69 #, python-format msgid "Edit setting: %s" -msgstr "Editar configuração: %s" +msgstr "" 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 bd5b0cebe1..f9b939c77d 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 @@ -10,7 +10,7 @@ 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-07-05 01:32-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" 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 8fb2633302..ac8ab14cf2 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 @@ -8,7 +8,7 @@ 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-07-05 01:32-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" 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 9cf0f3057e..e371cbe7a7 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 23c603c57a..3953bdeaa2 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 @@ -7,7 +7,7 @@ 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-07-05 01:32-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" 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 ec32da20ef..1406c853c2 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 @@ -9,7 +9,7 @@ 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-07-05 01:32-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" 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 bac90613b6..59401ebe1a 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 @@ -7,7 +7,7 @@ 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-07-05 01:32-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" 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 b1fb26053c..66b6cd9376 100644 --- a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 7cf4a2789b..a3282c2f26 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -19,7 +19,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "" @@ -72,7 +72,7 @@ msgstr "فك الملفات المضغوطة" msgid "Upload a compressed file's contained files as individual documents" msgstr "تحميل الملفات في ملف مضغوط كوثائق منفردة" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "ملف الاعداد" @@ -596,74 +596,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "انشاء مصدر جديد من النوع: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 14265f14b8..85c5d26938 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "" @@ -72,7 +72,7 @@ msgstr "" msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -596,74 +596,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 5bb446b7f7..71667be880 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -20,7 +20,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "Izvori" @@ -73,7 +73,7 @@ msgstr "Otpakuj kompresovane datoteke" msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload kompresovane datoteke koja sadrži individualne dokumente" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Osnovna datoteka" @@ -597,74 +597,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Stavke dnevnika za izvor: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Osobine dokumenata" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Datoteke u staznoj stazi" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Skeniraj" -#: views.py:282 +#: views.py:279 #, 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" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Dokument \"%s\" je blokiran da učitava nove verzije." -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Otvori novu verziju iz izvora: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -672,31 +672,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Provjera provjera izvora \"%s\"?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Izvorna provera je u redu." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Kreirajte novi izvor tipa: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Izbrišite izvor: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Izmijeni izvor: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -704,7 +704,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po index 236e8057dc..901fcf9d26 100644 --- a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/cs/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -18,7 +18,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -595,74 +595,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -670,31 +670,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -702,7 +702,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 c2a6fafbb8..e6274c41e5 100644 --- a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da_DK/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Kilder" @@ -72,7 +72,7 @@ msgstr "" msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -596,74 +596,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 ca9677e7b7..3dee1b874a 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ 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-07-05 01:32-0400\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" @@ -27,7 +27,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Quellen" @@ -80,7 +80,7 @@ msgstr "Komprimierte Dateien entpacken" msgid "Upload a compressed file's contained files as individual documents" msgstr "Ein komprimiertes Archiv hochladen, das einzelne Dokumente enthält" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Staging-Datei" @@ -604,74 +604,74 @@ msgstr "Löschen" msgid "Server responded with {{statusCode}} code." msgstr "Der Server antwortete mit Code {{statusCode}}." -#: views.py:65 +#: views.py:63 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." -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "Keine Protokolleinträge vorhanden" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Logeinträge für Quelle %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Dokumenteneigenschaften" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Dateien im Staging Pfad" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Scannen" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "Fehler beim Hochladen von Dokumenten; %(exception)s, %(exception_class)s" -#: views.py:293 +#: views.py:290 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." -#: views.py:344 +#: views.py:341 #, 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" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Vom Dokument \"%s\" können keine neuen Versionen hochgeladen werden." -#: views.py:431 +#: views.py:428 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." -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Eine neue Version von Quelle %s hochladen" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "Staging-Datei \"%s\" löschen?" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -679,31 +679,31 @@ msgid "" "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." -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Überprüfung anstoßen für Quelle \"%s\"?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Quellenüberprüfung vorgemerkt." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Quelle des Typs %s erstellen" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Quelle %s wirklich löschen?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Quelle %s bearbeiten" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -711,7 +711,7 @@ msgid "" "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." -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "Keine Quellen verfügbar" diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po index 36791375df..770b4300eb 100644 --- a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/el/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Πηγές" @@ -71,7 +71,7 @@ msgstr "Αποσυμπίεση αρχείου" msgid "Upload a compressed file's contained files as individual documents" msgstr "Ανέβασμα των περιεχομένων ενός συμπιεσμένου αρχείου ως αυτόνομα έγγραφα." -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -595,74 +595,74 @@ msgstr "Καθαρισμός" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Ιδιότητες εγγράφου" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Ανάγνωση" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Η δυνατότητα ανεβάσματος νέας έκδοσης έχει απενεργοποιηθεί για το έγγραφο \"%s\"" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Ανέβασμα μιας νέας έκδοσης από την πηγή: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -670,31 +670,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Έναρξη ελέγχου για την πηγή \"%s\";" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Αλιτημα ελέγχου πηγής κατχωρήθηκε. " -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Δημιουργία νέας πηγής τύπου: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Διαγραφή της πηγής: %s;" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Τροποποίηση πηγής: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -702,7 +702,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index 4b70ed955e..0503120d3f 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -595,74 +595,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -670,31 +670,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -702,7 +702,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo index 65cf165f6ceb0c850c73bb5c8d1788af2fde4516..9a7d76d174e07cf010efc3ed309a103af77efa34 100644 GIT binary patch delta 3620 zcmYk;32YQq9LMp0Yk|^jp;Dn7DpSrPr7c1!1uBSW5%4HUE1;m$?n1Y0ccHr!tHM(7 zKoJ2K1QD%}C>l)^OCl&54KW6c8lzFffW{+6h)5LiNEE-nozXbSe?RZd@$UE9b9Z;G zPM++OwavKp5SJ1q-ORqkDLMRb9mq3VgaIgGIjM@e=Yi*bi^>^Kn1F9=mhD z6K}<5u>>=Fo6RswS{VryoWQGa6;hWS!oGMEd*W9}+w7F@S?odnJod-GaS#^fn_Y(E zP|s^o-_Q5+ji?4K#RBTLRuYBWxE}}LQ>Y#tz=`-is%PCVHVfcos2+^M3am%!wui9* zcOjqH%eV{QMs;Wr!=`c~Sd8niJN4U(B(ksz)#C%G0zbf9Jc%mcG^$5`;9$(4wwYLj z>UlG2B<@Fbs1sH0t2iAGp~}C2DyJ{KOs0E8f--Fss-P*T3g_WCT#PDcCzfI-YI%Hs zn$yow6;@EX%DDll!|uTJ)M5qsRj7`2p+@L%U&dc^`UyAGqT{FreT@V03~KIrGHz-> z0qVW}z7DF##s2fFQ4PBeH()KQ{1d2={06J>EMAMHg^a%{NYMOdT#YL52c%P$NrnY$ zg{b#NpeiUw6*w8y!ih3dBYFgB5GTIf!pzSRJohEsa=rVK|%#~q8{u= zwd@dTj*j5hcpTNxH`rTx{vN7l$53>oL4|`C*Jx?Nx`*17{qLgd!2GrDS!5VxPHRNY-B>sh(lHp`Dg5$6oPDYK? z)kqs`4$@{@j%v_W?2cWS)KI)eLfh_L|G~$|LbcOb@#l23nk&p4oR1UmF6@E(P%S-(tUr4T_5KND zo!L*Q2Ih_SdR&6svP!JO24un80aV4GpuRhWDnGk~@n1k9zl38HmtqcXL@lBns1II1 zI%7vrtNUkELoZ^XWZ@*#^QowjYrZl2AcYQAcK*|H4C< zO}-NY_#CPS`;ld0M^OcxMHSSIy{3`MNA;`_)$qZn23BJ)oQ`|27PVHA=ScJ>@h8s4 z95(ShtVezD62|aNWEof~E0nXw>MQNj{fhAFBOdM`ABG+EFbls`M;I4Rsl6Nb68NTZo#f797Jl(19A6mss+;{~7kf z)4rJ;8VsHdK&_EkSc7rARQvyR5=-$I&Y{2=lf0qdGT9rMr*Q<&_o3$U7>4l#PQ#ih z-ifvz)w6AQJ)T5%niW@j4WElzGYzN?twgtjM3RI~q>QV)?KK?LlSYPDU^GK-v(SrWD_?MMT8c?t*I?J zgDze~>QSN(@g%V-^+rxvt%golsYm)?Xe0d;q48!tm_sZfW)m7RMkIYgX<@J+t(CZm zSWk4Ossn|!i%BtY>Ha`^7q3u)Yd2A!PVr9`K1ehYg+vQ+7olq#p-ncIcp&vmV06Y4 zsgD8$NiA3HolHV2jYA}TJ;v`A;$bgq%W=A&)`S-mS|E25LkL~dh)0z8-xVaihFD3= zAex96aSd^c{(sP9{d>72;zS3r&c8Vt?<7*hJ;Y8zr$iZ{YnX@4!3D(4e*O;M9jSM6 zNA}!IE<)@|{hB*2xt)|2jW$2)!?qHS6S^i4?dg>FqgC6Fm`bcB9wKHDw-LPvT^oo% zI>nz*Tm=Hjg`6ng#vL~rblTj=ijcF+4Y%@M%xR#kcs#r$8VV|_vRgy( z#J}|fV=JSPm>cA&8~Crzcxl(Per>rqm1D{)obm~i##eQ{HRODtGS<@28ghc6h~u_4 zHig?_jvH)V5vAPa)T!o$qQTa~yPZfZ?nKjX$9X;V(a?fh+S50exzx@rH8ZB9K8&l4 mG|}bLsN+V`EsW_cmE%`M!mCT4#~a<&C2lZAL-&_X>-`U!S-LC$ delta 3316 zcmZA3X;76_9LMoPEMD(rmAIg|px_ppq9U5&f+ge%8XBOcxIvmINGig`v_&K#uZRYM z3}flYiyVd;ZS;jLGcIH`<4j{kWur5`(P-4M$rpWp_j!8LGyd=AoM$=DS^nq2?wUtc zp1wf=O@^a`7)m4r8uKeAIr-r@6JpG2Jc|x=gc>slBWx4!dFoTqjSKC1v0dMVL7Z>E zLOg~^_!rJI#$!f=Sq-npOfGCi-etNl3NPY7{0`}xxo!I!4xoMyWAFjS;(%~thG9JF z`W)2rId**+szZes$@|SZ3elXX#KCwNHKH?^ftOGtdx93RY0qLwI}b<}pAh0R!mYWEQ;`=6oO^Z0X@F2taE7Kd7! zWW0l!s1b~0Pw9FpYGgA|Yqt+3CWCpe$K+Aq zoGC!fz;0ZHHJE@uqo&R;&dTCo)EX{9U2j5li%S)3xiQp z7lWjONkKKV9Mw<>YNjesBdbDnd_Ss#9TVI_rVHf<=D;Wk}B zme)K)eTt*moBj#cRnXL{MqwXukaNL93?=gocgm9wS zzTq_Li`avji3_$@@BsDeSc^;9o7!IA<3a4l2CU*Q)**CFwvw_Lv#Ix@wx4?ne-Uvy z25JA_@fFyYs44yvHI;4_NIf2oTA~z8X8+Gc%}m);>-=$aQ}43<5*fU?jU>8pWmwyI zGAfz(;v0AZ7kX$gkgtoTK5x1;HEVGU^&O}+Jb@+HhO^P}qP2f>P$SF79BfB6khzcQ zc;pN#SK?6v%D{a%8#NPGFgJq2JqjA(Q&dNSXIc%!qHavIU4jhCl%rmJ4(Y$|E6I*C z>xtFgMb6l1#gx>Am4uFV3$xXBEfx_DVlgq2P!be)JDjl*t0;X)Xy>#Nd%eBR)Z7|M zI#MirAB3HhPZFAM*4@Mr8;J$PW`Y6v{^xNR$s4nsSVFu!k@t63q-Q_%A;fcp_5dFR-_gWx zBcU|aQAX&yszVDtjwmJe5TghkvxyH>_}@VSn@VCHv59z-$Rbv#t6Hr8j@K#dAZm%X z2_1>VTf`Bfia0?85~+la1PikeUn7><^)JvnV!+=TS$X=&X>@lRack5e 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "منابع" @@ -73,7 +73,7 @@ msgstr "فایلهای فشرده را گسترش دهید" msgid "Upload a compressed file's contained files as individual documents" msgstr "فایل های حاوی فایل فشرده را به عنوان اسناد شخصی بارگذاری کنید" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "مرحله گذاری فایل" @@ -597,74 +597,74 @@ msgstr "پاک کردن" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "ورود به سیستم برای منبع: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "خواص سند" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "فایلهای درون راه مرحله ای" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "اسکن کردن" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "سند \"%s\" از آپلود نسخه های جدید مسدود شده است." -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "آپلود نسخه ای جدید از اصل : %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -672,31 +672,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "برای اطمینان از منبع \"%s\" تکرار کنید؟" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "بررسی منبع در صف." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "ایجاد سورس جدید از نوع %s." -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "منبع را حذف کنید: %s؟" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "ویرایش اصل : %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -704,7 +704,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 87c3683f79..62f75d6770 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ 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-07-05 01:32-0400\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" @@ -24,7 +24,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Sources" @@ -77,7 +77,7 @@ msgstr "Décompresser les fichiers" 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" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Fichier en pré-validation" @@ -601,74 +601,74 @@ msgstr "Effacer" msgid "Server responded with {{statusCode}} code." msgstr "Le serveur a répondu avec le code {{statusCode}}." -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "Aucune entrée de journal disponible" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Entrées du journal pour la source : %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Propriétés du document" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Fichiers en cours de pré-validation" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Numériser" -#: views.py:282 +#: views.py:279 #, 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" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "L'ajout de nouvelles versions du document \"%s\" est bloqué." -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Transférer une nouvelle version à partir de la source : %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -676,31 +676,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Vérification de déclenchement pour la source \"%s\"?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Vérification de la source ajoutée à la file d'attente." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Créer une nouvelle source de type : %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Supprimer la source: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Modifier la source: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -708,7 +708,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "Aucune source disponible" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index 2297a98609..61ef49ccf2 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Források" @@ -73,7 +73,7 @@ msgstr "Tömörített fájlok kibontása" msgid "Upload a compressed file's contained files as individual documents" msgstr "Tömörített fájlokat feltöltése önálló dokumentumként" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Átmeneti fájl" @@ -597,74 +597,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -672,31 +672,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -704,7 +704,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index e5805f67d3..3c94e2f050 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "" @@ -72,7 +72,7 @@ msgstr "Kembangkan berkas-berkas terkompresi" msgid "Upload a compressed file's contained files as individual documents" msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -596,74 +596,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Membuat sumber baru dengan jenis: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index 1dd5ec7e80..d8dc767f37 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -21,7 +21,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Sorgenti" @@ -74,7 +74,7 @@ msgstr "Espandi" msgid "Upload a compressed file's contained files as individual documents" msgstr "Pubblicare un file compresso contenente singoli documenti" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Mostra file" @@ -598,74 +598,74 @@ msgstr "Pulisci" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Log per la sorgente: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Proprietà documento" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "File nel percorso di stage" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Il documento \"%s\" è bloccato per il caricamento di nuove versioni." -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Carica la nuova versione dalla sorgente: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -673,31 +673,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Controllo trigger per il sorgente \"%s\"?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Controllo del sorgente in coda." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Crea nuovo tipo di sorgente:%s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Cancellare la sorgente: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Modifica sorgente: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -705,7 +705,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo index 8151037e5fd340cc2309b63003576d16847ce4dc..c4df723c22dbe11cabc388a5a77d4a6e39690bea 100644 GIT binary patch delta 3660 zcmYM$3s6*LAII?rBm)*yB*a^Jyd)5Ws8OPbcJWQ$(xfptE@lZmpEjQJF+v-!m_lxs{qK8u++ev~m|ajNfGcnb9kaU9n9^{8LJ z1xIqeAFsr{Scd7Njk&-W&&;BrhFz?|UZgLx9}DmxX5kTJZ02j<@9<>mKjU~D#z|N> z#+XxaF6w$M>iIQ(y%9B_cFd=L(?y|>6Ps}YK7g9h5YEFxsF{t-GbVtiqGnKnmAD$| z+ib&p+>Jb9p2FSuGHOEgq)qLFuoyStNcuOAQ^>$U)QpEv4Zevv_z9|kZ%{M(4X0ol zy)DJ5sF}B+GO-yop?*}m`|v#6k81xW0&SWSR72IM4zIwu*oM{yz^N3C5J zdD8&$QTL7awNNuI_OG9d8rXmEHmpUp|1m0)pW#CM4wqngA^BGaF2irb8&M4&LndX? zsjy*9A?m)Fs17Pn4K6^iI8F8T}FUd^#IV&*yp+bYUWnz+%*c zWvH3X#ulu?1{^>QEQ9n!aRT<@c8pb3q5cjB+8cJJh*-U9Dl3Tm() zb>V5$$o8Yw=yg1bAD{;M0`Hctzk!S%+=7 z5!L>;s0rju(}X-yNI^Fiq1Lzp&&2tt6t?0V+=*3q5C_s256qJF0=q;?#qqkr%;~A{*D7k9sZZa1r+S z*Y}}P{uZ8rM{z#pmZZJ|OHq5Q4z*XV#pkiFg#7EoLY}g4IbMVj)IgrYEPNT+SLO}W zhvgV*GoJ7bl%{4p0k!F7;1#$E*|+8iBzfi_Dg)o+NjRpA{Oi3P$AV}EAv_s9R7SR- zQhYb6fxW0DID`xEGt>a5uwk_OOE3r5Vh~$U12}|g|7+9)PGC0XdF-%rC`?AJ^(x;W zW>W9Qn!+Qv1cz`r z4*TaXW?I)%uS4zb_fP}*6$2Px$I3#~%%@{6R-l%!1|3|2EAUBF$HT~8@=V5@)QqN} z22zD;U>T~x%W(uYp*m_s&B(=i?8PSh2sPt#=d$y$9yj3o*o|w?Vk6^WoQEgybiMy) zR~oZ}6LqLm|9~3d@2K6Mc6O>h0X2XrI0j2`1mA&b)S5149Y^6R)b&QpLl>E>*^C8Z;#gpLQ3zj@Jp8&Ds6O+!=DFg21Z<9B6G%F{CckI-1| zCwk*AWY4Nq>U3y|IyB;L;sJuqnf%Yi!WKg5&@N+LFkXk<@*1D z9rw>+Q;HIO#3ui2DPBj!i5rMrgkFVNgpL_0%*D8tSn1cV@x3>GAg3tnPHG`ycl@WE zx!z7n(}`N5hPa#fKcRy+$E-`1QookLIARfTBXKLCjaEmDB6QqF1d=8Gvf)O*EKVcZ z{JM+V`78Ty?tPh_9S&L@&6e95v~1V48(YJ{h)dOWtsW;7vKl)guI)sk$veV9*KV?1 z+j7@+2CWFsMlCziWOdu2SkUUUoi6U{uo`G98g*JC!6sGJc2_X!{@qVgM^7ZwVK;Hr z4*b(+w0v;!xbB?nbIz=oZBg6tVI}%;o z61JUCd1FVoX7I~t>jK_NCm3?tV`1BhbVThKrD&Pe9_vcYRnS= delta 3354 zcmY+`3s6*59LMp4JVX|h6$O#XB_JPwyc8ARqM`{Z_y$u^K`|9&0iU?`Qd1OT0aF1r z8?$nz9ENgabaKXN($uu+ospSYO;c($mSZ}7f4g^@>CXK3bI!fH=brQbpL^kr^*^q0 zwRiQaHynqEM~GN|W4^_NAU-&bh8QysU&lZU>}*U|v|GkvH~NDx9J8(dBCEd^12|uU z1=xTI_&bg@#$|eS@eaHgM{r>UaxZfXyW>ghgqM-InXfFbVMqEmu?PN!QP?rmm`5=N zb$vAI_Y!7I2cc%R(2O{7-ILXAQA`CACKJIY{W3E zM!sqeVj~_$Eod@n(>Qan4>~b``=@3#R@7dxF^DEI7WMmys7%gA{k|CW`_^2;dRWfZfm+qfs}E zL#-qQ=V1me#=WSOKE(AHm1@jpY`{v4NHd12nO!&-PhuSYfejcrKpCd~Z`05WPoQ@F zX{-MkY64d=6n{crp8tCoM*qP;@0-w`?!E3nJLgl7Ihjn<1S?Q`rWUn_E}=H*4SdM` z&2V;tYB-E(Dg)zD&+9bw!!lGV*C0=hc^{RLTbPA^<0Kr#TZ$^0YSdHHhP=DXmq@D3 zeO!e$o>2#G#9XDmiH2tWCaTt_P%FHQeeni9iJe&nO*04cuntLx=Pk*T<|)fOcTP~$ zkVW)#%h`mE176Gu%R-z>Xc=0Xrm30ayAK6L+4cH=iO^gciH+`yK}orrXz9=rb!f&F zL=(Xt^8Babz+yt_SV{~dD3jSms3xn4Da2Ny*_~sH$StBp{yhIkfhi@*)!;Zt%v6Kp z1!5baKgQZ6%ZYV_jymEHp`2`Sx7y-;_PM{ag}I)i-;?M-=-Eghbkq~Oi5=>2s3>DR zEpNg5&|XHYC-`IIIY#lh)7$*tr#4U}F_u_DtRymtS(+*v>%U_GtukUW@hqVuo>)WF z5*vuUgdT+?LPx9@lZ|tTsaAi!0nwSzv7NAaTE;w&&sc4tr=-N{JF%L-w(o}Q4{T`\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" @@ -19,7 +19,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "Avoti" @@ -72,7 +72,7 @@ msgstr "Paplašiniet saspiestos failus" msgid "Upload a compressed file's contained files as individual documents" msgstr "Augšupielādējiet saspiestā faila failus kā atsevišķus dokumentus" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Pakāpju fails" @@ -295,7 +295,7 @@ msgstr "Parole" 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 "" +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." #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -596,74 +596,74 @@ msgstr "Skaidrs" msgid "Server responded with {{statusCode}} code." msgstr "Serveris atbildēja ar {{statusCode}} kodu." -#: views.py:65 +#: views.py:63 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." -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "Nav pieejami žurnāla ieraksti" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Loga ieraksti avotiem: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Dokumenta rekvizīti" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Faili pieturvietā" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Skenēšana" -#: views.py:282 +#: views.py:279 #, 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" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "Jauns dokuments tiek rindā augšupielādēts un drīz būs pieejams." -#: views.py:344 +#: views.py:341 #, 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" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Dokuments \"%s\" ir bloķēts jaunu versiju augšupielādei." -#: views.py:431 +#: views.py:428 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." -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Augšupielādējiet jaunu versiju no avota: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "Vai izdzēst failu \"%s\"?" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "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." -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Izmantot avota \"%s\" pārbaudi?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Avota pārbaude rindā." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Izveidot jaunu avota veidu: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Vai izdzēst avotu: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Rediģēt avotu: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "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." -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "Nav pieejami avoti" 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 5ef31aed03..90e758f220 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Bronnen" @@ -73,7 +73,7 @@ msgstr "Uitpakken gecomprimeerde bestanden" msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Tijdelijk bestand" @@ -597,74 +597,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -672,31 +672,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Aanmaken van nieuw documentbron van type: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -704,7 +704,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 71e423e808..edadad7467 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -21,7 +21,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "Źródła" @@ -74,7 +74,7 @@ msgstr "Rozpakuj skompresowane pliki" msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -598,74 +598,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Właściwości dokumentu" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -673,31 +673,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Utwórz nowe typ źródło:%s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -705,7 +705,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index b82665764f..750f405ede 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -21,7 +21,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "" @@ -74,7 +74,7 @@ msgstr "Expandir ficheiros comprimidos" msgid "Upload a compressed file's contained files as individual documents" msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Ficheiro de preparação" @@ -598,74 +598,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -673,31 +673,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Criar nova fonte do tipo: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -705,7 +705,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 aae0b81a54..e5e925a161 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -22,7 +22,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Fontes" @@ -75,7 +75,7 @@ msgstr "Expandir arquivos compactados" msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Preparação de arquivo" @@ -599,74 +599,74 @@ msgstr "Limpar" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Registrar entradas para fonte: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Propriedades do documento" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Os arquivos no caminho de preparo" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Documento \"%s\" está bloqueado para carregar novas versões." -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Carregar uma nova versão da Origem: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -674,31 +674,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Verificar a origem \"%s\"?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Cheque de origem enfileirado." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Criar nova fonte do tipo: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Apagar a fonte: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Editar fonte: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -706,7 +706,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 e343ed438f..bc01532b79 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -21,7 +21,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "Surse" @@ -74,7 +74,7 @@ msgstr "Dezarhivare fișiere comprimate" 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" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Structura fisier" @@ -598,74 +598,74 @@ msgstr "Golire" msgid "Server responded with {{statusCode}} code." msgstr "Serverul a răspuns cu codul {{statusCode}}." -#: views.py:65 +#: views.py:63 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." -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "Nu sunt disponibile înregistrări din jurnal" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Înregistrări de intrări pentru sursă: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Proprietățile documentului" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Fișiere în calea de așteptare" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Scanează" -#: views.py:282 +#: views.py:279 #, 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" -#: views.py:293 +#: views.py:290 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." -#: views.py:344 +#: views.py:341 #, 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" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Documentul \"%s\" este blocat de la încărcarea de noi versiuni." -#: views.py:431 +#: views.py:428 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." -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Încărcați o nouă versiune de la sursa: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "Ștergeți fișierul de așteptare \"%s\"?" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -673,31 +673,31 @@ msgid "" "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." -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Declanșați verificarea pentru sursa \"%s\"?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Verificarea sursei a fost pusă în coada de așteptare" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Creați o nouă sursă de tipul:% s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Ștergeți sursa: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Editați sursa: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -705,7 +705,7 @@ msgid "" "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." -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "Nu există surse disponibile" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index 2ae9e7a178..520f02350d 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -20,7 +20,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "Источники" @@ -73,7 +73,7 @@ msgstr "Извлекать из архивов?" msgid "Upload a compressed file's contained files as individual documents" msgstr "Загрузить файлы, содержащиеся в архиве в качестве отдельных документов" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Промежуточный файл" @@ -597,74 +597,74 @@ msgstr "Очистить" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Записи журнала для источника: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Свойства документа" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Загрузка новой версии из источника %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -672,31 +672,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Создать новый источник типа: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -704,7 +704,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 72a353ff27..f8be63ccc2 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/sl_SI/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -18,7 +18,7 @@ msgstr "" "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 +#: views.py:627 msgid "Sources" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -595,74 +595,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -670,31 +670,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -702,7 +702,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 69fa7a2bc3..29a6bbf02a 100644 --- a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/tr_TR/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "Kaynaklar" @@ -73,7 +73,7 @@ msgstr "Sıkıştırılmış dosyaları genişlet" 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" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "Hazırlama dosyası" @@ -597,74 +597,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "Kaynak için günlük girdileri: %s" -#: views.py:125 wizards.py:154 +#: views.py:123 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." -#: views.py:153 views.py:171 views.py:181 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "Döküman özellikleri" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "Hazırlama yolundaki dosyalar" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "Tara" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "\"%s\" belgesi, yeni sürümler yüklemesi engellendi." -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "Kaynaktan yeni bir sürüm yükle: %s" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -672,31 +672,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Kaynak \"%s\" için tetikleyici kontrolü yapıyor musunuz?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "Kaynak denetimi sıraya girdi." -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "Yeni kaynak türü oluştur: %s" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "Kaynağı sil: %s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "Kaynağı düzenle: %s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -704,7 +704,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" 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 100fd80249..6ba3b0c408 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "" @@ -72,7 +72,7 @@ msgstr "Giải nén" msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload một file nén chứa các file tài liệu riêng biệt" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "" @@ -596,74 +596,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "intervention." msgstr "" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "" diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po index e9b5b67b57..83e08d7a1a 100644 --- a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 -#: views.py:630 +#: views.py:627 msgid "Sources" msgstr "来源" @@ -72,7 +72,7 @@ msgstr "展开压缩文件" msgid "Upload a compressed file's contained files as individual documents" msgstr "将压缩文件包含的文件作为单个文档上载" -#: forms.py:68 views.py:485 +#: forms.py:68 views.py:482 msgid "Staging file" msgstr "暂存文件" @@ -596,74 +596,74 @@ msgstr "" msgid "Server responded with {{statusCode}} code." msgstr "" -#: views.py:65 +#: views.py:63 msgid "" "Any error produced during the usage of a source will be listed here to " "assist in debugging." msgstr "此处列出了在使用源期间产生的任何错误,以帮助调试。" -#: views.py:68 +#: views.py:66 msgid "No log entries available" msgstr "没有可用的日志条目" -#: views.py:70 +#: views.py:68 #, python-format msgid "Log entries for source: %s" msgstr "源%s的日志条目" -#: views.py:125 wizards.py:154 +#: views.py:123 wizards.py:154 msgid "" "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 +#: views.py:151 views.py:169 views.py:179 msgid "Document properties" msgstr "文档属性" -#: views.py:161 +#: views.py:159 msgid "Files in staging path" msgstr "暂存路径中的文件" -#: views.py:172 +#: views.py:170 msgid "Scan" msgstr "扫描" -#: views.py:282 +#: views.py:279 #, python-format msgid "" "Error executing document upload task; %(exception)s, %(exception_class)s" msgstr "执行文档上传任务时出错; %(exception)s,%(exception_class)s" -#: views.py:293 +#: views.py:290 msgid "New document queued for upload and will be available shortly." msgstr "新文档排队等待上传,很快将可用。" -#: views.py:344 +#: views.py:341 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" msgstr "从源%(source)s上传类型为“%(document_type)s”的文档" -#: views.py:378 +#: views.py:375 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "文档“%s”被阻止上传新版本。" -#: views.py:431 +#: views.py:428 msgid "New document version queued for upload and will be available shortly." msgstr "新文档版本排队等待上传,很快将可用。" -#: views.py:472 +#: views.py:469 #, python-format msgid "Upload a new version from source: %s" msgstr "从源%s上传新版本" -#: views.py:486 +#: views.py:483 #, python-format msgid "Delete staging file \"%s\"?" msgstr "" -#: views.py:507 +#: views.py:504 msgid "" "This will execute the source check code even if the source is not enabled. " "Sources that delete content after downloading will not do so while being " @@ -671,31 +671,31 @@ msgid "" "successful test will clear the error log." msgstr "" -#: views.py:513 +#: views.py:510 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "检查源“%s”的触发器?" -#: views.py:530 +#: views.py:527 msgid "Source check queued." msgstr "源检查排队。" -#: views.py:547 +#: views.py:544 #, python-format msgid "Create new source of type: %s" msgstr "创建%s类型的新来源" -#: views.py:569 +#: views.py:566 #, python-format msgid "Delete the source: %s?" msgstr "删除源:%s?" -#: views.py:590 +#: views.py:587 #, python-format msgid "Edit source: %s" msgstr "编辑源:%s" -#: views.py:624 +#: views.py:621 msgid "" "Sources provide the means to upload documents. Some sources like the " "webform, are interactive and require user input to operate. Others like the " @@ -703,7 +703,7 @@ msgid "" "intervention." msgstr "来源提供上传文件的方法。某些来源,如网页表单,是交互式的,需要用户输入才能运行。其他来源,如电子邮件,是自动的,无需用户干预即可在后台运行。" -#: views.py:629 +#: views.py:626 msgid "No sources available" msgstr "没有可用的来源" diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index 6eb2218900..c070c167f4 100644 --- a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ar/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index e35ff1c6f5..40057b6ca1 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 052bd855bd..18294a49cb 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po index 66c1d1a45f..0dcbda137e 100644 --- a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/cs/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 4481415826..6992d16810 100644 --- a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da_DK/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 37533157b5..d98ac715e5 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po index 8b271b1d8a..fbeb85ae1f 100644 --- a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/el/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index da0362632d..e7f5b624ee 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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 bbec3ca92e..7c30ce8ff6 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index 171637f06b..4dd8774b86 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 901fef4bad..3e1f6ff5ca 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index 72b48b7657..3dcae7e6ac 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index d18f2cbe14..f040785fa8 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index a123e5ba31..b44cbf1f41 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po index e61cc754b5..4b3c9cdbbd 100644 --- a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/lv/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 d36bf452b2..c4f1944c20 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index feb774f436..8ded3ab656 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo index 474c9aed6339b9faa256f69f8d9bb804e5666255..13e4aa0d60047cab744df861dac7d8d645a3c7d3 100644 GIT binary patch delta 97 zcmZ3$dY(Dro)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlLbVde-NFdD%#0P3QY18@V* z!p{mJzV!6JXRJS8h){w*n^m_3sOH2O$r-JNJSF>wmKk(v_)t(9|0j2o?5;Yv5$ UzxP`)68w8A+D7|V8*S!(01sPNqW}N^ diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index 45a394022d..702710e55c 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,14 +1,14 @@ # 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -26,4 +26,4 @@ msgstr "Armazenamento" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "Pasta temporária usada em todo o site para armazenar miniaturas, visualizações e arquivos temporários." +msgstr "" 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 10d6f9fb33..4de5f4e2a7 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 238c83439e..74c1551e78 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index ee81d6b63d..7e022de6ee 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 69645b451f..7a86725215 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 0be8df6015..aadf0724d6 100644 --- a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/tr_TR/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 ab32dfb236..6586d054b6 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po index 04bd0d0da0..444e12b098 100644 --- a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index 4faf9f0105..2005536d31 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -182,7 +182,7 @@ msgstr[5] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -312,7 +312,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index aa6d05d178..1ac0211d2c 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -178,7 +178,7 @@ msgstr[1] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -300,7 +300,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 7102e93430..e1991da5ca 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -180,7 +180,7 @@ msgstr[2] "Dodajte oznake na %(count)d dokumente" msgid "Attach tags to document: %s" msgstr "Priložite oznake za dokument: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Oznake koje treba priložiti." @@ -304,7 +304,7 @@ msgstr "Dokument \"%(document)s\" nije označen kao \"%(tag)s" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" uspješno uklonjen iz dokumenta \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "Izaberite oznake" diff --git a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po index 32243253de..fa09865609 100644 --- a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/cs/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -179,7 +179,7 @@ msgstr[3] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 80aa00e8e5..b878bac836 100644 --- a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da_DK/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -177,7 +177,7 @@ msgstr[1] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -299,7 +299,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 cb211ab66d..d330d85525 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -180,7 +180,7 @@ msgstr[1] "Tags an %(count)d Dokumente anhängen" msgid "Attach tags to document: %s" msgstr "Tags für Dokument %s zuweisen:" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Zuzuweisende Tags." @@ -302,7 +302,7 @@ msgstr "Dokument \"%(document)s\" wurde nicht als \"%(tag)s getaggt" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" erfolgreich von Dokument \"%(document)s\" entfernt." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "Tags auswählen" diff --git a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po index 6db8d8a42e..1ca1e7a620 100644 --- a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/el/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -177,7 +177,7 @@ msgstr[1] "Προσάρτησε ετικέτες σε %(count)d έγγραφα" msgid "Attach tags to document: %s" msgstr "Προσάρτηση ετικετών στο έγγραφο: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Ετικέτες που θα επικοληθούν." @@ -299,7 +299,7 @@ msgstr "Το έγγραφο \"%(document)s\" δεν ήταν σημασμένο msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Η ετικέτα \"%(tag)s\" αφαιρέθηκε επιτυχώς από το έγγραφο \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 6eb85acfe2..603bba93c2 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -178,7 +178,7 @@ msgstr[1] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -300,7 +300,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index d5df51bd66..db3cb38722 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -180,7 +180,7 @@ msgstr[1] "Adjuntar etiquetas a %(count)d documentos" msgid "Attach tags to document: %s" msgstr "Anejar etiquetas al documento: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Etiquetas a ser anejadas." @@ -302,7 +302,7 @@ msgstr "Documento \"%(document)s\" no esta etiquetado con \"%(tag)s" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "Seleccione etiquetas" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index f125e225bd..8b78060bf7 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -179,7 +179,7 @@ msgstr[1] "برچسب ها را به اسناد %(count)d اضافه کنید: " msgid "Attach tags to document: %s" msgstr "برچسب ها را به سند اضافه کنید: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "برچسب ها باید متصل شوند" @@ -301,7 +301,7 @@ msgstr "سند \"%(document)s\" به عنوان \"%(tag)s\" برچسب گذار msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "برچسب \"%(tag)s\" با موفقیت از سند \"%(document)s\" حذف شد." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 4eefe3df93..90e706cc53 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ 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-07-05 01:32-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" @@ -183,7 +183,7 @@ msgstr[1] "Attacher les étiquettes sur %(count)d documents" msgid "Attach tags to document: %s" msgstr "Attacher des étiquettes au document: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Étiquettes à attacher." @@ -305,7 +305,7 @@ msgstr "Le document \"%(document)s\" n'a pas été étiquetté comme \"%(tag)s" 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\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "Sélectionner les étiquettes" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index fd1f374bd2..5798b24110 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -178,7 +178,7 @@ msgstr[1] "Cimkék hozzárendelése %(count)d dokumentumhoz" msgid "Attach tags to document: %s" msgstr "Cimkék hozzárendelése dokumentumhoz: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Hozzárendelendő címkék." @@ -300,7 +300,7 @@ msgstr "A \"%(document)s\" dokumentum nem lett \"%(tag)s\"-el megcímkézve" 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." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index b52fcc29b6..4ec6db3a2e 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -176,7 +176,7 @@ msgstr[0] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -296,7 +296,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index 5f89a7bbb3..cded25c258 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -181,7 +181,7 @@ msgstr[1] "" msgid "Attach tags to document: %s" msgstr "Assegna tag al documento: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Tag che saranno allegati." @@ -303,7 +303,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po index 390f6062ae..de3f637fe7 100644 --- a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/lv/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-0400\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" @@ -179,7 +179,7 @@ msgstr[2] "Pievienojiet tagus dokumentiem %(count)d" msgid "Attach tags to document: %s" msgstr "Pievienojiet tagus dokumentam: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Pievienotie tagi." @@ -303,7 +303,7 @@ msgstr "Dokuments \"%(document)s\" netika atzīmēts kā \"%(tag)s\"" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" veiksmīgi noņemts no dokumenta \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "Atlasiet tagus" 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 18cd5bd555..69ab9d6717 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -178,7 +178,7 @@ msgstr[1] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -300,7 +300,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Label: \"%(tag)s\" is verwijderd van document \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index cf1e219fc9..5d04c70ea1 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -183,7 +183,7 @@ msgstr[3] "Dołącz tagi do %(count)d dokumentów" msgid "Attach tags to document: %s" msgstr "Załącz tagi do dokumentu: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Tagi do załączenia." @@ -309,7 +309,7 @@ msgstr "Dokument \"%(document)s\" nie zawiera tagów \"%(tag)s\"" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" usunięty z dokumentu \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo index 8c2ab8929f1d9bf7ead6c9ac009463bf452b824f..c3c58fb188392e5eba22b140f4bef57138b5e93a 100644 GIT binary patch delta 582 zcmYk&IYV(c9A1+Wfd_XDS16%P6 zN3enNsiV3$wN#5>s(N~;ZWfUaEkH=Fv^GL+Op23rrI^1aS0~pZCop&ZWXjQ&rxQiJ zmGG>btLAiGd%8~jQz=_6=%VMU%)0HFy!iDIc@xe4vrn`P};q~`5{U9=pP+0N$6w)1aluD*V$wt?lC?~ZwM8tXRSv8YMM NheMg)Wz1&R^besMT9W_( literal 6055 zcmb`KTWnlM8GsL=fnuP90wqA96GMpIbk}x@bJ--##c@JJoVc!&auJ~M?$~?6*>jdN zXV(cJgai+$QeF^!K>{U2s8mpR;e|d>Bm+X?i9R4eq7pnH(Mk~#5|6<5&$-)c(n>wb z_}g=4=AZvIGk;#X|DLBkp3}4kX^-siyidVn_wa}3=1$KWhqvH5{1tp7JoYBfRU>irQu4qt-z!Ra@9-aFt4C~_`Ay1Y+A>DN%?_Td5e z6?hQ-6wbiE!wpuu(ofZ`PFT?%tJ5a{`28!QageTx1;7RxZ!af9_ zgks+iJ_?_O;@LljJsNnbD9{2)8Menar?0*HWy@6QaT+w5l;CuuA0E*upCWzvnX(;hL#GhU8 z9J~lW2^D+>iu~U~@yE;1z&lX%SZ0#w*@cMqz6vD{H{b*CX(;jeF+2r-0Uw6)@d(%t zC7uR~oEuQ)-G<_?=b_~Juc7GsHz?!&0TJc>7f!=n_ox0l1!eqMDEhRa*dIgD>n4xkx_J(NA{G&Lu`~sd@)56ACvknCxCknWfZ$5)<oe-6&2}Vy-1>U`0|YO%cP$9_-8*VPxyb-Ws>^{(IUVlO@r|E~K%pjJ%btEM*>8ziaFtUF`t zuPmE(iyzLIz$7Mv40Z~qU***nU3k|rxGfseabmj;OHUrX@x2qdBPQ**LSG%QcIUcC zSWB~nF}%>d?X-1m!+ivK%an3PmvjqB9TYCyQ1ay&?_eJF6OEYwIAq}z<7(X8Tw`&7NM1p z=Uav#OF%mv(`kB3rWXxO23fxH(^h}0)i~-EY2!3b=cbOS_0}hjPW$TQkt0M%GKfRj z$f@H>_ix_HP45YpKB@nfv4U1Qtq7a4gLd0kyE+I0@+2zkk+GF*YHpezJ1=$W(`zPg zBY?zoaU>n9OQ-VF^M~{4ivz>1?3;KsihB&@tQv7ph)J()igjjGkGb4N*U@%cwc~!L zTHZ|;$q!NERgX?JFyy&O*GWBjw{>c2zP2gpih00lF%s2XH;EK;p34ErU-ki~V1)Y< z-^k6P6FKXvr=DWqNRie>(kcR1XHz&-+Y_^akxvmN!O;&g62)e}7%rqi=iK_+LapG-}TEu3GNFU^^0PLIt+ zVZ!a+SiaszSt%{1`hoVtqpIE2u{Fu@%gbjQhs$xYA{9YnJ|tr}mRsuZik}qvwp2eE zTMP!V4jO0K#kQrwzI(OD4;)qL&*KxJ+H+jZOdcKcF8AE3k!lab{(;pUen-7XMcg($ zaz!i7e~yMkH$5qC_#kx-UzF~nzE*Ons{!|WK2Vt+nG)!YXEtt=d*%7YOK7gi5)2M> zQ_WkeU9Ge6tkgQL)NyNOD-{yi2^&9?vWHxZI+}t*1jQMOl{dfVNhm2XVW0xRW`jLhG&3pdUw z(aMHaZrpNwe$mF2foUbhM${dBVuT=D9Z)H#qD@zrx{5^!302e{-ld8s>KCR8CE;W= z9?Mm>#njr&VrV%oO-_<)KC`yw_2O$i7)7B)XwT$PmMv6qhVz<~S!8UA(VeBvuKJR# zW3IJ>YC5TL@;8xcQjH@vufh}sSkHJDP1vpN#Ex&-q#Mr-DbXm%8drQf(1HIY6q%D8 zD^skx)6tGpqB!&0X$12MtxSpBYei`D4`nhGUutd~ok85?WmHFrAf{W3k!b7ca`ucE zC`JA-3Wj1;H8t{(*G{Rlj1$YNIi4p)kq1Ryjptj=g`EnE+Ad0u#pprBm7*Ngd6W?Nhhm0e8!!B|}_^aGqpUgJ1O|4%*Vq<*Io}H6{i&et|mpHdO48uRn9`GC}ZDrbcgFiN`_VLP{}X3a@tYMSGmdil%M3A z><)K9Gawoi$s`9}^$IIf7ddkI7dKOS(B;=k+UX=BxUv;WebbYMwexkWvfU{}Uv4vX zVZI5oh4XxJtj)t{+46FA<}1l@ltg0nCd2;+qmt6d diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index cfe45bd9ab..f64f16e83f 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,7 +10,7 @@ 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-07-05 01:32-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" @@ -32,39 +32,39 @@ msgstr "Documentos" #: events.py:10 msgid "Tag attached to document" -msgstr "Etiqueta anexado ao documento" +msgstr "" #: events.py:13 msgid "Tag created" -msgstr "Etiqueta criada" +msgstr "" #: events.py:16 msgid "Tag edited" -msgstr "Etiqueta editada" +msgstr "" #: events.py:19 msgid "Tag removed from document" -msgstr "Etiqueta removida do documento" +msgstr "" #: links.py:16 workflow_actions.py:75 msgid "Remove tag" -msgstr "Remover etiqueta" +msgstr "" #: links.py:20 links.py:37 msgid "Attach tags" -msgstr "Anexar etiquetas" +msgstr "" #: links.py:31 msgid "Remove tags" -msgstr "Remover etiquetas" +msgstr "" #: links.py:44 msgid "Create new tag" -msgstr "Criar nova etiqueta" +msgstr "" #: links.py:50 links.py:67 views.py:156 msgid "Delete" -msgstr "Remover" +msgstr "Eliminar" #: links.py:55 msgid "Edit" @@ -72,11 +72,11 @@ msgstr "Editar" #: links.py:63 msgid "All" -msgstr "Todas" +msgstr "" #: methods.py:20 msgid "Return a the tags attached to the document." -msgstr "Devolver as etiquetas anexadas ao documento" +msgstr "" #: methods.py:22 msgid "get_tags()" @@ -84,7 +84,7 @@ msgstr "" #: models.py:28 msgid "A short text used as the tag name." -msgstr "Um texto curto usado como o nome da etiqueta." +msgstr "" #: models.py:29 search.py:16 msgid "Label" @@ -92,7 +92,7 @@ msgstr "Nome" #: models.py:32 msgid "The RGB color values for the tag." -msgstr "Os valores de cor RGB para a etiqueta." +msgstr "" #: models.py:33 search.py:20 msgid "Color" @@ -100,19 +100,19 @@ msgstr "Cor" #: models.py:41 msgid "Tag" -msgstr "Etiqueta" +msgstr "" #: models.py:84 msgid "Preview" -msgstr "Pre-Visualizar" +msgstr "" #: models.py:113 msgid "Document tag" -msgstr "Etiqueta do documento" +msgstr "" #: models.py:114 msgid "Document tags" -msgstr "Etiquetas do documento" +msgstr "" #: permissions.py:10 msgid "Create new tags" @@ -120,7 +120,7 @@ msgstr "Criar novas etiquetas" #: permissions.py:13 msgid "Delete tags" -msgstr "Remover etiquetas" +msgstr "Excluir etiquetas" #: permissions.py:16 msgid "View tags" @@ -142,71 +142,71 @@ 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írgula das chaves primárias do documento às quais esta etiqueta será anexada." +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 da API que aponta para uma etiqueta em relação ao documento anexado a ela. Essa URL é diferente da URL da etiqueta canônica." +msgstr "" #: serializers.py:106 msgid "Primary key of the tag to be added." -msgstr "Chave primária da etiqueta a ser adicionada." +msgstr "" #: views.py:38 #, python-format msgid "Tag attach request performed on %(count)d document" -msgstr "A solicitação de anexação de tag executada em %(count)d documento" +msgstr "" #: views.py:40 #, python-format msgid "Tag attach request performed on %(count)d documents" -msgstr "A solicitação de anexação de tag executada em %(count)d documentos" +msgstr "" #: views.py:47 msgid "Attach" -msgstr "Anexar" +msgstr "" #: views.py:49 #, python-format msgid "Attach tags to %(count)d document" msgid_plural "Attach tags to %(count)d documents" -msgstr[0] "Anexar etiquetas a %(count)d documento" -msgstr[1] "Anexar etiquetas a %(count)d documentos" +msgstr[0] "" +msgstr[1] "" #: views.py:61 #, python-format msgid "Attach tags to document: %s" -msgstr "Anexar etiquetas a documento: %s" +msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." -msgstr "Etiquetas a serem anexadas." +msgstr "" #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "Documento \"%(document)s\" já tem \"%(tag)s\"" +msgstr "" #: 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 "" #: views.py:131 msgid "Create tag" -msgstr "Criar etiqueta" +msgstr "" #: views.py:145 #, python-format msgid "Tag delete request performed on %(count)d tag" -msgstr "O pedido para remover %(count)d etiqueta com sucesso" +msgstr "" #: views.py:147 #, python-format msgid "Tag delete request performed on %(count)d tags" -msgstr "O pedido para remover %(count)d etiquetas com sucesso" +msgstr "" #: views.py:154 msgid "Will be removed from all documents." @@ -215,13 +215,13 @@ msgstr "Será removida de todos os documentos." #: views.py:158 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "Remover a etiqueta selecionada?" -msgstr[1] "Remover a etiquetas selecionadas?" +msgstr[0] "" +msgstr[1] "" #: views.py:168 #, python-format msgid "Delete tag: %s" -msgstr "Remover a etiqueta: %s" +msgstr "" #: views.py:179 #, python-format @@ -236,41 +236,41 @@ msgstr "Erro ao excluir etiqueta \" %(tag)s \": %(error)s " #: views.py:199 #, python-format msgid "Edit tag: %s" -msgstr "Editar a etiqueta: %s" +msgstr "" #: views.py:218 msgid "" "Tags are color coded properties that can be attached or removed from " "documents." -msgstr "Etiquetas são propriedades codificadas por cores que podem ser anexadas ou removidas dos documentos." +msgstr "" #: views.py:221 msgid "No tags available" -msgstr "Nenhuma etiqueta disponível" +msgstr "" #: views.py:245 #, python-format msgid "Documents with the tag: %s" -msgstr "Documento com a etiqueta: %s" +msgstr "" #: views.py:269 msgid "Document has no tags attached" -msgstr "O documento não tem etiquetas anexadas" +msgstr "" #: views.py:272 #, python-format msgid "Tags for document: %s" -msgstr "Etiquetas para documento: %s" +msgstr "" #: views.py:288 #, python-format msgid "Tag remove request performed on %(count)d document" -msgstr "solicitação de remoção etiqueta realizada em %(count)d documento" +msgstr "" #: views.py:290 #, python-format msgid "Tag remove request performed on %(count)d documents" -msgstr "solicitação de remoção etiqueta realizada em %(count)d documentos" +msgstr "" #: views.py:298 msgid "Remove" @@ -280,40 +280,40 @@ msgstr "Remover" #, python-format msgid "Remove tags to %(count)d document" msgid_plural "Remove tags to %(count)d documents" -msgstr[0] "Remover etiquetas em %(count)d documento" -msgstr[1] "Remover etiquetas em %(count)d documentos" +msgstr[0] "" +msgstr[1] "" #: views.py:312 #, python-format msgid "Remove tags from document: %s" -msgstr "Remover etiquetas do documento: %s" +msgstr "" #: views.py:321 msgid "Tags to be removed." -msgstr "Etiquetas a serem removidas." +msgstr "" #: views.py:361 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" -msgstr "O documento \"%(document)s\" não tem as etiquetas \"%(tag)s" +msgstr "" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" removidas com sucesso do documento \"%(document)s\"." +msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" -msgstr "Selecionar etiquetas" +msgstr "" #: workflow_actions.py:22 msgid "Tags to attach to the document" -msgstr "Etiquetas para anexar ao documento" +msgstr "" #: workflow_actions.py:27 msgid "Attach tag" -msgstr "Anexar etiqueta" +msgstr "" #: workflow_actions.py:70 msgid "Tags to remove from the document" -msgstr "Etiquetas para remover do documento" +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 7d575f1129..dd74e5c4e7 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -181,7 +181,7 @@ msgstr[1] "" msgid "Attach tags to document: %s" msgstr "Anexar etiquetas ao documento: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Etiquetas a serem anexadas." @@ -303,7 +303,7 @@ msgstr "Documento \"%(document)s\" não estava etiquetado como \"%(tag)s" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 aac67ab4cd..3d306d6bd5 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -182,7 +182,7 @@ msgstr[2] "Atașați etichetele la %(count)ddocumente " msgid "Attach tags to document: %s" msgstr "Atașați etichete la documentul: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Etichetele trebuie atașate." @@ -306,7 +306,7 @@ msgstr "Documentul \"%(document)s\" nu a fost etichetat ca \"%(tag)s" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "Selectați etichete" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 24fed088a7..61ed62190e 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -180,7 +180,7 @@ msgstr[3] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Метка \"%(tag)s\" снята с документа \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 5edfc0069c..d6129c891b 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -180,7 +180,7 @@ msgstr[3] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 4cb87bef56..0b7fbf5afa 100644 --- a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/tr_TR/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -179,7 +179,7 @@ msgstr[1] "Etiketleri %(count)d dokümanlarına ekleyin" msgid "Attach tags to document: %s" msgstr "Etiketleri dokümana ekleyin: %s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "Eklenecek Etiketler." @@ -301,7 +301,7 @@ msgstr "\"%(document)s\" dokümanı \"%(tag)s\" olarak etiketlenemedi" 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ı." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 1cc247a343..103cce28ff 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "Attach tags to document: %s" msgstr "" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "" @@ -297,7 +297,7 @@ msgstr "" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" đã được xóa thành công từ tài liệu \"%(document)s\"." -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" msgstr "" diff --git a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po index 1d7406ee59..e23e67d9c8 100644 --- a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -177,7 +177,7 @@ msgstr[0] "将标签附加到%(count)d文档" msgid "Attach tags to document: %s" msgstr "将标签附加到文档:%s" -#: views.py:70 wizard_steps.py:30 +#: views.py:70 wizard_steps.py:29 msgid "Tags to be attached." msgstr "要附加的标签。" @@ -297,7 +297,7 @@ msgstr "文档“%(document)s”未标记为“%(tag)s" msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "标签“%(tag)s”已从文档“%(document)s”中成功删除。" -#: wizard_steps.py:18 +#: wizard_steps.py:17 msgid "Select tags" 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 4e719ac266..ba17ad9b6a 100644 --- a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 5d0fea9711..e5825cd906 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bg/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 8c7cb1d140..7a9e517522 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 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 c3cd3ed806..ee49d30135 100644 --- a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/cs/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 cdea028709..e25746d074 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 43bd0c0c71..b8ad42289e 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 657212a839..90b21e3583 100644 --- a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/el/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 8847da676e..69581326c8 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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 b6c0a25e8b..962f2348a3 100644 --- a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/es/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 3596a635c2..f33547bb34 100644 --- a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 e9b5664515..093c3d53e9 100644 --- a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 c7b51aa0df..54f9d249b4 100644 --- a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/hu/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 1d5210e797..bc6f0889d3 100644 --- a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/id/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 4de41c3acd..5dc421c61f 100644 --- a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 3ae8f7bbdd..768e58090c 100644 --- a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/lv/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 eabc89329b..d218d0128d 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 @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 8400e6daad..3912af56c5 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pl/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.mo index 75821de3e2395534b75330322772f9cb6b7dcf3e..52f357948545ae31ee4e2a04360bcacfff666e8f 100644 GIT binary patch delta 148 zcmeC;>0znAC&V(90SK6ZSO$nqfS47CeSjDQ5`Y-QPXuBXAWjG3sf-K^IZ!?m6GWUH zNCSl#fE3s)AO!(FiAkwB41S5ZsSE){`B|ySCAyv|x?!nB#hLkeR-46{n;E(M@`18o F0svmS6!`!E literal 1546 zcmZ9Lzi%8x6vrotA>{ZGNFq@9rI!Na$XVa{5`wjkF^+$bQ{szdUrd7(&Fzl&2Jg*m zW@hh_COr)WQW`p-icn~fsA$k3THqf@2{ozclJD%U&pD4Y``I`9-pu#CdHeX()B}cb z2J>CaUoqdq{Ne~67=MAUfPaH$!N=eU@PF`4@aR#-UIWj9uY%Ly8{lQ|1@Ia;1-3!& zw++4ncEOY2ebAr#HCO|GtoRG)<9-7P{G(d`7xeo-0Utoa)Uk5kZ{hql)*pg?pWnfA z;Gdw^^&jZZdkT8pCm{~6?8AyP;3?P*@O^Lv^yhRzUk?ZR_;0|M!S6vI{}b2*f3DX5 z0pEiC1cba|_`FYJdVjCQ55L#z#ame?zvuq&_4PIPdX86%UdxM^J~uyJ!t{5B^chNV zFqR`H2Z9{8dzL+KkW_Rh7r6-O1AH+_-WSSQc9lnaiP5==i=fiSvQ@Fm^VF5*5^Gs< zhAS%(v&628dqZtv;^SRz@UBQ%oA(9V5>}XjD7UkR%t;m7QBTBqI`%zeA98lwIC2t4 zbcC&xvCh3ruv?0EQzWg)2xp|I3P7o}Zo#L!BgL?)$>-Ya2}7CDk+7Cpt8CNgFGb{n zRvhdIW2IIhZ7#1|U;b>3cGkAGTQ}RaEs<&Cf(@I55dmxVM?!?SA>? zw$ZWmA3rVYzANs|M!NsWh2jKksFIu~BIpR-hg^uulN^<&>7H|$4eRyca5y^=TQ}Nr zBekhJ1ljuB#gFDM)iYN=U)yMHtQ{mjH`}PKXytI%fv;~!PTY0%Eag%yP}Jkb3b%Nx zvmVSJ`1#~^g$dSFq+_X)kmkG6jfIAkx!Pu$8=eO1+VpKmDl1I8*j%9Ub#YqJxkZ{g zzffZxZqS03IQp5}LnbLsyE5eyy{s);$C{, YEAR. -# +# # Translators: # Manuela Silva , 2017 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" @@ -35,19 +35,19 @@ msgstr "Nome" #: apps.py:37 msgid "Default queue?" -msgstr "Fila padrão?" +msgstr "" #: apps.py:41 msgid "Is transient?" -msgstr "É temporário?" +msgstr "" #: apps.py:45 msgid "Type" -msgstr "Tipo" +msgstr "" #: apps.py:48 msgid "Start time" -msgstr "Hora de início" +msgstr "" #: apps.py:51 msgid "Host" @@ -55,56 +55,56 @@ msgstr "" #: apps.py:55 msgid "Arguments" -msgstr "Argumentos" +msgstr "" #: apps.py:59 msgid "Keyword arguments" -msgstr "Argumentos por keyword" +msgstr "" #: apps.py:63 msgid "Worker process ID" -msgstr "ID processo de trabalho" +msgstr "" #: links.py:16 views.py:15 msgid "Background task queues" -msgstr "Filas de tarefas em segundo plano" +msgstr "" #: links.py:20 msgid "Active tasks" -msgstr "Tarefas ativas" +msgstr "" #: links.py:24 msgid "Reserved tasks" -msgstr "Tarefas reservadas" +msgstr "" #: links.py:28 msgid "Scheduled tasks" -msgstr "Tarefas agendadas" +msgstr "" #: permissions.py:10 msgid "View tasks" -msgstr "Ver tarefas" +msgstr "" #: tests/literals.py:5 msgid "Test queue" -msgstr "Testar fila" +msgstr "" #: views.py:30 #, python-format msgid "Active tasks in queue: %s" -msgstr "Tarefas ativas na fila: %s" +msgstr "" #: views.py:42 #, python-format msgid "Unable to retrieve task list; %s" -msgstr "Não é possível recuperar a lista de tarefas; %s" +msgstr "" #: views.py:56 #, python-format msgid "Scheduled tasks in queue: %s" -msgstr "Tarefas agendadas na fila: %s" +msgstr "" #: views.py:68 #, python-format msgid "Reserved tasks in queue: %s" -msgstr "Tarefas reservadas na fila: %s" +msgstr "" 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 f2e6e96ab0..cd6c24bc42 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 4f13b13705..1d82aa3611 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 c3dd602f11..ded6e209a7 100644 --- a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 16c27b4c6b..1c0d52f77f 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 13df484482..ef4f928715 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 78d4bdf1e7..45fada2b3f 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 152e64e9eb..6c156eef12 100644 --- a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/zh/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:32-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" 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 39728d03ec..b821994c7c 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-0400\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" 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 2cb19381fc..c29013a6ca 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-0400\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" 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 19bd0d5574..b5246b590a 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 @@ -9,7 +9,7 @@ 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-07-05 01:33-0400\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" 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 2e02734f9e..60e39695b1 100644 --- a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/cs/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-0400\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" 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 b0fafa5853..19cf5a1c1a 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 @@ -7,7 +7,7 @@ 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-07-05 01:33-0400\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" 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 5a66c4392b..31381544ec 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 @@ -16,7 +16,7 @@ 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-07-05 01:33-0400\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" 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 fc3cdcb7f0..d17cf217e9 100644 --- a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/el/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-0400\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" 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 cb6d0dd925..c8d585a463 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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-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/user_management/locale/es/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo index 5757a94d017cb42b189fe8b34bfab97bf948a0ee..abc9b3206cc9d7309df23f185b6acd9dbdac0bb4 100644 GIT binary patch delta 1627 zcmZA1OGs2v9LMp$j#j=OnVOZ4OiOLl%14gbQ!6Bcz>E?SDalCC97lq%L1-ZoNJNV; zh!#Z!K{XYGLL{`PD4`aTltDoYBQQv!BJBGcuY?`u+|Rw|p6CCZx#Rh73j7m^VHb^5 zLtaj<4mE4WwlFTFsc^G6{D!d@vcN0?<1rr7Q11(HJ61a7XE1^10q6Zyr~ED^Q9gqF z{5HllnSu#ig42#s3(Zn_&O!~~!NpjMn%iMqibpUSdr%$sqv~BjO*nw6H-a(v4q1y$ zVjkn$6gQC+q%ATl#2i$GdQ^i$r~z6r3Vp~Ntrruq4>j;0s-HWk2n}HgK1EIV7dGMy zrePzMQW@X6xzPXvr~xjc8r;APyp7%X5>>C7QHpRM7Gp1}{2r?PW5*Zxn&&Z8ByRCi zk$mL%4E<{OmK&|~Gcq~*j*7q^)CyfxQU}SXmFA#A>_OGvi$_Du4xsjYn9lV673%#* z=lKh&{R}o>QY`UTgA??w20f1FQD@;AF2f;I$j4Bjn?N1bpQy8w%(BwajhgTt)Y)l5 zwL68m=tq8bor~T-j3fT)aFha_=1E+Qzfm1!Q>clR;d-n^#T zifaEJHGwJAf_|X3G=^0(gt`6PC`47b4R@j%^r06AP!n{~n@mSdpaSX3b|dH44&q8| z#!Gk>RWF^{??AWXNz@iRKuy5^oEz%eI8NhNWK8=+EmfT6qAiGI`nVVw!3VzRbjGg)EZLe3_y)A~1(SCJKFrL|=KdBJchl>F_3hfn*gR6*7u zRnl4cKUGqY=@gdYRc3=tv_i83RolcnvU!Z#!j1sx1R zqL7G^5F%ssQb>5{QXQi9v`{2e6cQ03NKy3tz5AXTeBRHz^UlmW^X$C7txQxn@BL{v zjIy8DOw^^A^4rL0F|K&Scjvi1wX-F ze1-*BNT+<>ZxJf$(1pc#2%|WJdhsIG;4+3V$XnFjgIdr@&$IZ3`(f11yLqV09rGMO zjk|=(#5HtSjNPK5l-xt@XbLsK9BOB;P$^wN^-)AMtv=U2S@>!|UQ zco?6e`umw&{R27VUzG+L^xJo0As$Dico>zcQPknQgE}j7ScGxZf`6jUN(S52xMD2B zGE@c*a?$f6sQIF(!#I{p{&!HhOM@nQfm+Zz4C4=EZVS-625V87>PMyW6tXFcqQ+lF zEnpnAp$XJaI)hAQaa4vrVjF&QsAxb9c^SkAYK2pt&yn+JA8;Ff!JC-H+qAIzs84ss za~YNLW_F<$b|X#Jhf6qwOkt<#q<+ptu1fhB^2{Eh2F#;6#!)N&j7t4?RKE z*@z)j{|@A6SRJkXW}=a#comCvV-KtByJ!lkL;@pGu{IXd#q|twa^kKqwO`+mpE8cPn*e zBtq;YN{Ii9&dMHQi}#=ubs$xON!;|i{~%Im&}rsta*O^K1PC3>c0%Vvhb~O0)W*K1 gPo~BmWd2FL_t9i z1O*XYh(NGbijs(8eTeF%7YW0+dg!U^LqXX0x1OTG|M|?BGw00Ae`dW?{-`20nV)gl zD6Pa&qGg7e7yTJrD4#RU=HVBdi)k~>vM>+xuo(5c9Cu)Y(>{pvxxeTlJj&UFzDlURU19CK!w6>(pJ8o+}Ka1Uy3M{zNBVJ;4!K70<cJ22~@uqI0xS& zYq3wbj`8g?m24V{XPZ@FDXK#U>V?Co0ghn~Mv*yM9P{xkYT&D=?+l|dG>Wx2hMMp% z?8GT7#!fmFF~0Rv(Et}w16)JBa2HqL5ccC6RKFHRsm257#yG0|0qXr{j<4`7_v5Hc z+~c7#`PlI##`NMlDq87BWODW$m4V-=6{gckA6SH1X(=kj9#sE*cq7g1AnH3mx#(=n z;w3#VLY;*Y)cZBKA9u|q|7y5GgU-MZYOj*G1Shc+f1y(DV*2V=hDu>0Y9fcQ9(z$| z=r$^Iqe#+h0;}-@>iq&{r^8;6NB&(@cGI8_9Y+l~h&p_?kmF%baSM*2CNhOpIFn^5 zQ+3FK4y#T9f#WUE3FHr**@K6(ql~Q3$YrqfKj#_yQPvu@L#BSt~4LJ9g zP#?O7n!pp}&&If@|AgZ=)K=z@cl9qrj!NpBtkdsbr95>t+l1OT4fMCL_5X?n`oCy` zwM3=Uxb^>sPF-2?ICU+Q|8J=Yk{~P5_&PW(#CoEJ*hc6-nf6I3&Lp(5WrI=HFQ?Dr=|GOwl=b_63{zpEz{jP`|X`X(Cg z4kg;Nre^G^uXJy4x$8W2Tgu&(?7iM_q_QLA4TSyPNHFAawI|~tU)a^r?dwm*17X+J zUN84m5$@^K)YI$r`K!8uy^V>}xg(j&+Jb$_ID9Qg_Ig9SF`GCKpq}qWjX#U& zIE4H~%s9ubT)2r_@S$}MGdW*CO|XKSF>#$S$}JbOFb|Wl9yM_rYTQv&!hNW5L%0EN zAUT>TEM$E%O(&5H^H_?Dc0l_2wFk0M3lv}yRw22VCQQRt)WTh;d3sS58pKMxgi81c zcHs-m#vBG^vcB=t(SQK%z#}+-{iubPu?&Bs7YkTL*E>-Oov?=S9p~p!Z{ER8RqmLz z7xml)R3%0*LNew$9hKx3>W!vQ6Ff(~*&9?z7f|DW;&6;He^C=%=AgYDL*2iP+WUK` z=U-v~KiKnpCfAnNrci(FO$Qfp@HFP*Fsj6N?Z6pS$>vare8v5^g8F8ByrwGGiWJG5 z#4-${7MehP+>gVms3W%98+o|L_6w}4wv&kqa|wP;PSgK_-Nas^na~I2CVYfiMRdtM y85_Nm@W++tFY(oQy#89BZ}fh0MrttBb3EK1@&rSD-QiQA==bCqcXT#wAod^IYkyz> 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 0cf2ca691d..81014f2d3d 100644 --- a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ 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-29 06:22+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-07-05 01:33-0400\n" +"PO-Revision-Date: 2019-07-01 05:59+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" @@ -76,11 +76,11 @@ msgstr "Visi lietotāji." #: dashboard_widgets.py:16 msgid "Total users" -msgstr "" +msgstr "Kopā lietotāji" #: dashboard_widgets.py:32 msgid "Total groups" -msgstr "" +msgstr "Kopā grupas" #: events.py:12 msgid "Group created" 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 d972dc54d8..e5dbfc29b0 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 @@ -10,7 +10,7 @@ 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-07-05 01:33-0400\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" 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 cdb6a62e49..f36bce581a 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-0400\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" 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 11fd978efb78c7ce2f266354e22bc24bdfd237d2..f98ee79772978f6dcb1ff559bea648f8a1345e6b 100644 GIT binary patch delta 856 zcmX}qKWGzS7{~FeCYQ8nb7^|5wx;zK1yfKdA{4QMR1m>Iq@u*-Fh>ofi6rOH4#r6b z5&t|oi9#k_gcec3%|9rJgR2hGRhvGfF^z9g34TB={1c1#3$;$3M+HYv<0cOk7vmt_MJ3q9w9}z7 zUKIERD)2{KWEa*^6&@psGCzx1yoj2&jQaluDuIWn%GPi@zDLbp#|iv~0j4s&dArah zzH^8deQ*S)u!3561-0OHRKPACz-P!>&Ue&z8%VCs0MV|XhXZ&EcjJ9j0k3fzen#!Y z26hzS4=+2==U^#3$yyU9>Dsy+eY5Gq&8B0~>GLfSR^eO?O1crvz0!r;`)|Ni0d5 zNh((Mx;)&Sq;g0q(6&-sa_-uJak^^{(sQ=gowsZ5@zl|3EwKCGRP;Ca6;#$475>}fnYxv{d!vA5^c1}mO-}5a$TKWs!YG^|M literal 5434 zcmb`K+ix958Nin|TxuZDlv^n!(?CdE`y4wagv5#KI*C();v^(aC1|B;e0F@iu)A}* zvwIv@eL#JwkPs3eBou^bgt$tPKnNr*50y^Uhdu!k>H~s5pnc;3Q63P#Z)VRq>q{#h zSb6t%=KkI0oAKWd?E6l{bC&mGywi6@(HG&FeSCOcczYDR58j6R;Vb>UW79K3sCxN_yJfz{-Wpkdwt;h!mAf};098pUqynvX!4?=lqqo`7P91d2Wu%DCsC z==Dt~cKk6!`?e?=K=I=glZfBWKxw}YrT>#q^z6Yi@M}=|zYJxaSE2a%H7NaL z(NBQ;q0F-Y#aa&+Kf zSVEci78JRE0guC%p!nkrI1T>;#cop!M&#%ulyMiJtotOCbvjVwdKO}$=-W{A`2m#q zehR+|@4yFPo6RBqz64n!N}3L}0VJ`FFyKR{Xc9+Z%F z1*JR(@5Wyj>-rU(D(gH2KMXCTDS94?9lr-f&)-1VFN3=NZ&2j=7kmKjry%n@44FP! z6E#Tl{x|_hH^s zyn8*TsT6<8bBI@BOCE_;c`%!Q?&2$PD6t`NB{3m!FFtPZN-W8Koa2?}(*X#drmEa9 zs$1Bq=h~xkyp6;W>^S%_--z=yKQFsoR%2zu{WG`F}moK?vzR2EJl~~P_oM+-u0@77G4#d$I6v@ zJ@{a(Cqb9nQt33cnL%+uflwApMdnNi7E|Ra`?Nl4>Z&lY8C#dVXob++od)~cOX6IZXau9ho%D_SmV`?1|Rg zDK&dyer|4RmS;ltZfmvBxl46vNuAg1nkg{QHS2VdSUTk03InuOjn3xPRTitdM4(Ye zH_Ea%KQptrx!EpdhGgB`YQ)b7OLMcF>7_c!PfKDeu;0Rs)eEhY<9@Q@x+z-AdB?{1U|yYEOUjYF^Qu=) zTurM&r!5j@=H^x2^F_BXcUpy?3rBPH(1JQPd3u605nJ+}BS@;Am0UBdsLCXLCeg7i zBn2(ygJ0!IX33P&PsNGr*?e%PZxRB4u51b4wQeCr(r}3*Pm^Lqn?4aM=kefnk&s%c z3`+=jM(Mwd}Gf7Nct>vwb-w#;fhFV*1^c zepAWe9;9yy?3?8L6_GvOQoFiGJ=JhTaK$zaLdUVFI}{Afeq2KWWqX6441O)H=0c|4 zM9zi*{Md7r+f!ndTnGw@vySz51f``exMSN~d*2pRblGwelRA<$?gE?_q|uS7CE|3- zQAJR>O74vLh7RG(;U$4y7vvBaml!pk1K))BA8mtO8m^iwOkEEf-0qunFl^i8Uu*sA zS%eEntt*?5Br4YsPCL1klNomkLw<<8dF8r+$7q*ZL{Z}H7@f2t_m{e@&T~A-#+Eya zB$0~$5##{%xoE81wCdZ=;OF?OKz(P^q~l%Btg%_g;$ftZl-h8q=KLHfGYp*T_0W;S z3U+#3XhsMd%ycTE3#Vnx`^#v?=>Inr!Mbi0&1&T&EV=oR zMF}HXhxZ(>a$7CS?IbpRbTp1&=P2V}uQwkdK`dKx$23=lX)E7E$EBh4ri)%PS{K~#jxRAZ3bl<>aIhk@*Op`3gTZ^RgaZcqV I%tmAMUrKWn$^ZZW 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 e00c77b700..08835036fe 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,7 +11,7 @@ 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-07-05 01:33-0400\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" @@ -51,11 +51,11 @@ msgstr "" #: apps.py:113 search.py:20 msgid "First name" -msgstr "Nome" +msgstr "" #: apps.py:114 search.py:29 msgid "Last name" -msgstr "Apelidos" +msgstr "" #: apps.py:115 search.py:23 msgid "Email" @@ -63,11 +63,11 @@ msgstr "Correio eletrónico" #: apps.py:116 msgid "Is active?" -msgstr "Esta Activo" +msgstr "" #: apps.py:119 apps.py:123 msgid "Has usable password?" -msgstr "Tem senha utilizável?" +msgstr "" #: apps.py:138 msgid "All the groups." @@ -79,35 +79,35 @@ msgstr "Todos os utilziadores." #: dashboard_widgets.py:16 msgid "Total users" -msgstr "Total de utilizadores" +msgstr "" #: dashboard_widgets.py:32 msgid "Total groups" -msgstr "Total de grupos" +msgstr "" #: events.py:12 msgid "Group created" -msgstr "Grupo criado" +msgstr "" #: events.py:15 msgid "Group edited" -msgstr "Grupo editado" +msgstr "" #: events.py:19 msgid "User created" -msgstr "Utilizador criado" +msgstr "" #: events.py:22 msgid "User edited" -msgstr "Utiliador editado" +msgstr "" #: events.py:25 msgid "User logged in" -msgstr "Utilizador entrou" +msgstr "" #: events.py:28 msgid "User logged out" -msgstr "Utilizador saiu" +msgstr "" #: links.py:16 msgid "User details" @@ -115,7 +115,7 @@ msgstr "Detalhes do utilizador" #: links.py:20 msgid "Edit details" -msgstr "Editar detalhes" +msgstr "" #: links.py:24 views.py:56 msgid "Create new group" @@ -135,19 +135,19 @@ msgstr "Criar novo utilziador" #: links.py:92 msgid "User options" -msgstr "Opções utilizador" +msgstr "" #: models.py:22 msgid "Forbid this user from changing their password." -msgstr "Proibir este utilizador de alterar sua senha" +msgstr "" #: models.py:28 msgid "User settings" -msgstr "definições do utilizaodr" +msgstr "" #: models.py:29 msgid "Users settings" -msgstr "definições do utilizaodr" +msgstr "" #: permissions.py:12 msgid "Create new groups" @@ -183,11 +183,11 @@ msgstr "Ver utilizadores existentes" #: search.py:32 msgid "username" -msgstr "nome utilizador" +msgstr "" #: serializers.py:34 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Lista de chaves primárias de grupos, separados por vírgula" +msgstr "" #: serializers.py:64 msgid "List of group primary keys to which to add the user." @@ -199,11 +199,11 @@ msgstr "Anónimo" #: views.py:37 msgid "Current user details" -msgstr "Detalhes dados atuais do utilizador" +msgstr "" #: views.py:45 msgid "Edit current user details" -msgstr "Editar dados atuais do utilizador" +msgstr "" #: views.py:78 #, python-format @@ -220,45 +220,45 @@ 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 "Grupos de utilizadores são unidades de organização. Eles devem espelhar as unidades de organização da sua organização. Os grupos não podem ser usados para controle de acesso. Use funções para permissões e controle de acesso, adicione grupos a eles." +msgstr "" #: views.py:119 msgid "There are no user groups" -msgstr "Não há grupos de utilizadores" +msgstr "" #: views.py:132 msgid "Available users" -msgstr "Utilizadores disponiveis" +msgstr "" #: views.py:133 msgid "Group users" -msgstr "Grupo de utilizadores" +msgstr "" #: views.py:141 #, python-format msgid "Users of group: %s" -msgstr "Utilizadores no grupo: %s" +msgstr "" #: views.py:173 #, python-format msgid "User delete request performed on %(count)d user" -msgstr "Solicitação de remoção do utilizador executada em %(count)d utilizador" +msgstr "" #: views.py:175 #, python-format msgid "User delete request performed on %(count)d users" -msgstr "Solicitação de remoção do utilizador executada em %(count)d utilizadores" +msgstr "" #: views.py:183 msgid "Delete user" msgid_plural "Delete users" -msgstr[0] "Remover utilizador" -msgstr[1] "Remover utilizadores" +msgstr[0] "" +msgstr[1] "" #: views.py:193 #, python-format msgid "Delete user: %s" -msgstr "Remover utilizador: %s" +msgstr "" #: views.py:204 msgid "" @@ -279,7 +279,7 @@ msgstr "Erro ao eliminar o utilizador \"%(user)s\": %(error)s " #: views.py:236 #, python-format msgid "Details of user: %s" -msgstr "Detalhes do utilizador: %s" +msgstr "" #: views.py:251 #, python-format @@ -294,7 +294,7 @@ msgstr "Grupos disponíveis" #. user. #: views.py:269 msgid "User groups" -msgstr "Grupos de utilizadores" +msgstr "" #: views.py:277 #, python-format @@ -305,13 +305,13 @@ msgstr "Grupos do utilizador: %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 "Contas de utilizador podem ser criadas a partir desta vista. Depois de criar uma conta de utilizador, você será solicitado a definir uma senha para ela." +msgstr "" #: views.py:301 msgid "There are no user accounts" -msgstr "Não há contas de utilizador" +msgstr "" #: views.py:316 #, python-format msgid "Edit options for user: %s" -msgstr "Editar opções para o utilizador: %s" +msgstr "" 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 a407d59bb4..3a17c42ebe 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 @@ -13,7 +13,7 @@ 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-07-05 01:33-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" 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 cfe54341b8..b2cbb80dd6 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 @@ -10,7 +10,7 @@ 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-07-05 01:33-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" 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 7f3ec3a188..9f11c08c7d 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-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" 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 2de564fcba..e94955dad6 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 @@ -7,7 +7,7 @@ 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-07-05 01:33-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" 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 79e273e17b..db2b9466d7 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 @@ -8,7 +8,7 @@ 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-07-05 01:33-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" 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 9cfac6f297..1d4ff1e0a7 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 @@ -8,7 +8,7 @@ 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-07-05 01:33-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" 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 b20d30be6c..b4092733da 100644 --- a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh/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-29 02:20-0400\n" +"POT-Creation-Date: 2019-07-05 01:33-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" From 38c33b67033bbb088d4cdbe767eb2bb2d173742b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 15:28:39 -0400 Subject: [PATCH 13/21] Update Django to version 1.11.22 Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + docs/releases/3.2.5.rst | 1 + mayan/__init__.py | 2 +- mayan/apps/common/dependencies.py | 2 +- requirements/common.txt | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 272d06b1e3..e57b6575a9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,6 +11,7 @@ * Add alert when settings are changed and util the installation is restarted. GitLab issue #605. Thanks to Vikas Kedia (@vikaskedia) to the report. +* Update Django to version 1.11.22. 3.2.4 (2019-06-29) ================== diff --git a/docs/releases/3.2.5.rst b/docs/releases/3.2.5.rst index 4bfc90146b..d9c8539fcf 100644 --- a/docs/releases/3.2.5.rst +++ b/docs/releases/3.2.5.rst @@ -18,6 +18,7 @@ Changes - Add alert when settings are changed and util the installation is restarted. GitLab issue #605. Thanks to Vikas Kedia (@vikaskedia) to the report. +- Update Django to version 1.11.22. Removals -------- diff --git a/mayan/__init__.py b/mayan/__init__.py index 02c2642a13..d6a049c6b8 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.4_Sat Jun 29 02:50:51 2019 -0400' +__build_string__ = 'v3.2.4-16-g557a20d6cc_Fri Jul 5 03:10:42 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' diff --git a/mayan/apps/common/dependencies.py b/mayan/apps/common/dependencies.py index d8f1c71ba1..e4c5ba335c 100644 --- a/mayan/apps/common/dependencies.py +++ b/mayan/apps/common/dependencies.py @@ -36,7 +36,7 @@ PythonDependency( ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ''', module=__name__, name='django', version_string='==1.11.20' + ''', module=__name__, name='django', version_string='==1.11.22' ) PythonDependency( copyright_text=''' diff --git a/requirements/common.txt b/requirements/common.txt index 86583ad884..08f9ef96a1 100644 --- a/requirements/common.txt +++ b/requirements/common.txt @@ -1 +1 @@ -django==1.11.20 +django==1.11.22 diff --git a/setup.py b/setup.py index 82e884c336..f5faa6b54f 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def find_packages(directory): return packages install_requires = """ -django==1.11.20 +django==1.11.22 Pillow==6.0.0 PyPDF2==1.26.0 PyYAML==5.1 From d5b1c02310e96cdb352e66f9f14a0aa7e82c3b72 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 15:45:24 -0400 Subject: [PATCH 14/21] Update depedencies to their latest bug fix version Signed-off-by: Roberto Rosario --- HISTORY.rst | 5 ++++- docs/releases/3.2.5.rst | 5 ++++- mayan/apps/common/dependencies.py | 14 +++++++------- requirements/base.txt | 6 +++--- requirements/development.txt | 6 +++--- requirements/testing-base.txt | 2 +- 6 files changed, 22 insertions(+), 16 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index e57b6575a9..debd6fc853 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,7 +11,10 @@ * Add alert when settings are changed and util the installation is restarted. GitLab issue #605. Thanks to Vikas Kedia (@vikaskedia) to the report. -* Update Django to version 1.11.22. +* Update Django to version 1.11.22, PyYAML to version 5.1.1, + django-widget-tweaks to version 1.4.5, pathlib2 to version 2.3.4, + Werkzeug to version 0.15.4, django-extensions to version 2.1.9, + django-rosetta to version 0.9.3, psutil to version 5.6.3. 3.2.4 (2019-06-29) ================== diff --git a/docs/releases/3.2.5.rst b/docs/releases/3.2.5.rst index d9c8539fcf..18a6ae9324 100644 --- a/docs/releases/3.2.5.rst +++ b/docs/releases/3.2.5.rst @@ -18,7 +18,10 @@ Changes - Add alert when settings are changed and util the installation is restarted. GitLab issue #605. Thanks to Vikas Kedia (@vikaskedia) to the report. -- Update Django to version 1.11.22. +- Update Django to version 1.11.22, PyYAML to version 5.1.1, + django-widget-tweaks to version 1.4.5, pathlib2 to version 2.3.4, + Werkzeug to version 0.15.4, django-extensions to version 2.1.9, + django-rosetta to version 0.9.3, psutil to version 5.6.3. Removals -------- diff --git a/mayan/apps/common/dependencies.py b/mayan/apps/common/dependencies.py index e4c5ba335c..c4e064da4e 100644 --- a/mayan/apps/common/dependencies.py +++ b/mayan/apps/common/dependencies.py @@ -59,7 +59,7 @@ PythonDependency( LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ''', module=__name__, name='PyYAML', version_string='==5.1' + ''', module=__name__, name='PyYAML', version_string='==5.1.1' ) PythonDependency( copyright_text=''' @@ -303,7 +303,7 @@ PythonDependency( LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ''', module=__name__, name='django-widget-tweaks', version_string='==1.4.3' + ''', module=__name__, name='django-widget-tweaks', version_string='==1.4.5' ) PythonDependency( module=__name__, name='furl', version_string='==2.0.0' @@ -318,7 +318,7 @@ PythonDependency( module=__name__, name='mock', version_string='==2.0.0' ) PythonDependency( - module=__name__, name='pathlib2', version_string='==2.3.3' + module=__name__, name='pathlib2', version_string='==2.3.4' ) PythonDependency( copyright_text=''' @@ -381,7 +381,7 @@ PythonDependency( PythonDependency( module=__name__, environment=environment_development, name='Werkzeug', - version_string='==0.15.2' + version_string='==0.15.4' ) PythonDependency( environment=environment_development, module=__name__, @@ -389,12 +389,12 @@ PythonDependency( ) PythonDependency( environment=environment_development, module=__name__, - name='django-extensions', version_string='==2.1.6' + name='django-extensions', version_string='==2.1.9' ) PythonDependency( environment=environment_development, help_text=_( 'Used to allow offline translation of the code text strings.' - ), module=__name__, name='django-rosetta', version_string='==0.9.2' + ), module=__name__, name='django-rosetta', version_string='==0.9.3' ) PythonDependency( environment=environment_development, help_text=_( @@ -443,7 +443,7 @@ PythonDependency( ) PythonDependency( environment=environment_testing, module=__name__, name='psutil', - version_string='==5.6.1' + version_string='==5.6.3' ) PythonDependency( diff --git a/requirements/base.txt b/requirements/base.txt index 1ae7376c00..7919f51384 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,6 +1,6 @@ Pillow==6.0.0 PyPDF2==1.26.0 -PyYAML==5.1 +PyYAML==5.1.1 celery==3.1.24 django-activity-stream==0.7.0 django-celery==3.2.1 @@ -16,7 +16,7 @@ django-pure-pagination==0.3.0 django-qsstats-magic==1.0.0 django-solo==1.1.3 django-stronghold==0.3.0 -django-widget-tweaks==1.4.3 +django-widget-tweaks==1.4.5 djangorestframework==3.7.7 djangorestframework-recursive==0.1.2 drf-yasg==1.6.0 @@ -29,7 +29,7 @@ graphviz==0.10.1 gunicorn==19.9.0 mock==2.0.0 node-semver==0.6.1 -pathlib2==2.3.3 +pathlib2==2.3.4 pycountry==18.12.8 pyocr==0.6 python-dateutil==2.8.0 diff --git a/requirements/development.txt b/requirements/development.txt index ea60187b8d..8689376c36 100644 --- a/requirements/development.txt +++ b/requirements/development.txt @@ -1,7 +1,7 @@ -Werkzeug==0.15.2 +Werkzeug==0.15.4 django-debug-toolbar==1.11 -django-extensions==2.1.6 -django-rosetta==0.9.2 +django-extensions==2.1.9 +django-rosetta==0.9.3 flake8==3.7.7 ipython==5.5.0 readme==0.7.1 diff --git a/requirements/testing-base.txt b/requirements/testing-base.txt index 5702dbb1df..de84381553 100644 --- a/requirements/testing-base.txt +++ b/requirements/testing-base.txt @@ -2,5 +2,5 @@ codecov==2.0.15 coverage==4.4.1 coveralls==1.3.0 django-test-without-migrations==0.6 -psutil==5.6.1 +psutil==5.6.3 tox==3.8.6 From 40b44cba359b24d1ca57969ee17a363281e4ef85 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 16:33:34 -0400 Subject: [PATCH 15/21] Update release notes Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 +- docs/releases/3.2.5.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index debd6fc853..33c632cde1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,4 +1,4 @@ -3.2.5 (2019-07-XX) +3.2.5 (2019-07-05) ================== * Don't error out if the EXTRA_APPS or the DISABLED_APPS settings are set to blank. diff --git a/docs/releases/3.2.5.rst b/docs/releases/3.2.5.rst index 18a6ae9324..d0d0065f98 100644 --- a/docs/releases/3.2.5.rst +++ b/docs/releases/3.2.5.rst @@ -1,7 +1,7 @@ Version 3.2.5 ============= -Released: July XX, 2019 +Released: July 05, 2019 Changes From 3fb1e079b9a4bcb90094c9f568ba5db904606f40 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 16:35:43 -0400 Subject: [PATCH 16/21] Code cleanups Signed-off-by: Roberto Rosario --- .../apps/file_metadata/migrations/0002_documenttypesettings.py | 3 +-- mayan/apps/linking/apps.py | 2 +- mayan/apps/smart_settings/templatetags/smart_settings_tags.py | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py b/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py index fd0918c330..9fec8574e5 100644 --- a/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py +++ b/mayan/apps/file_metadata/migrations/0002_documenttypesettings.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals -from django.db import migrations, models -import django.db.models.deletion +from django.db import migrations def operation_create_file_metadata_setting_for_existing_document_types(apps, schema_editor): diff --git a/mayan/apps/linking/apps.py b/mayan/apps/linking/apps.py index 426a4eccaa..74acba3add 100644 --- a/mayan/apps/linking/apps.py +++ b/mayan/apps/linking/apps.py @@ -17,7 +17,7 @@ from mayan.apps.events.links import ( ) from mayan.apps.navigation.classes import SourceColumn -from .events import event_smart_link_created, event_smart_link_edited +from .events import event_smart_link_edited from .links import ( link_document_type_smart_links, link_smart_link_create, link_smart_link_condition_create, link_smart_link_condition_delete, diff --git a/mayan/apps/smart_settings/templatetags/smart_settings_tags.py b/mayan/apps/smart_settings/templatetags/smart_settings_tags.py index 6ef94c12f3..3e64f3190d 100644 --- a/mayan/apps/smart_settings/templatetags/smart_settings_tags.py +++ b/mayan/apps/smart_settings/templatetags/smart_settings_tags.py @@ -15,4 +15,3 @@ def smart_setting(global_name): @register.simple_tag def smart_settings_check_changed(): return Setting.check_changed() - From 3a8fade8f804d51aa267bff5798b0138e235567d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 16:38:20 -0400 Subject: [PATCH 17/21] Disable test suit on master branch pushes Signed-off-by: Roberto Rosario --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c5acf0587c..a5b56f4358 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -158,7 +158,6 @@ job_push_python: - releases/all - releases/docker - releases/python - - master - staging - nightly From fbe043b4eb3801b60aad31a86c03f4bc51d39963 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 16:39:17 -0400 Subject: [PATCH 18/21] Bump version to 3.2.5 Signed-off-by: Roberto Rosario --- docker/rootfs/version | 2 +- mayan/__init__.py | 6 +++--- setup.py | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docker/rootfs/version b/docker/rootfs/version index 351227fca3..5ae69bd5f0 100755 --- a/docker/rootfs/version +++ b/docker/rootfs/version @@ -1 +1 @@ -3.2.4 +3.2.5 diff --git a/mayan/__init__.py b/mayan/__init__.py index d6a049c6b8..cf344a350b 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.2.4' -__build__ = 0x030204 -__build_string__ = 'v3.2.4-16-g557a20d6cc_Fri Jul 5 03:10:42 2019 -0400' +__version__ = '3.2.5' +__build__ = 0x030205 +__build_string__ = 'v3.2.4-21-g3a8fade8f8_Fri Jul 5 16:38:20 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' diff --git a/setup.py b/setup.py index f5faa6b54f..c0b4a2dc3d 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ install_requires = """ django==1.11.22 Pillow==6.0.0 PyPDF2==1.26.0 -PyYAML==5.1 +PyYAML==5.1.1 celery==3.1.24 django-activity-stream==0.7.0 django-celery==3.2.1 @@ -75,7 +75,7 @@ django-pure-pagination==0.3.0 django-qsstats-magic==1.0.0 django-solo==1.1.3 django-stronghold==0.3.0 -django-widget-tweaks==1.4.3 +django-widget-tweaks==1.4.5 djangorestframework==3.7.7 djangorestframework-recursive==0.1.2 drf-yasg==1.6.0 @@ -88,7 +88,7 @@ graphviz==0.10.1 gunicorn==19.9.0 mock==2.0.0 node-semver==0.6.1 -pathlib2==2.3.3 +pathlib2==2.3.4 pycountry==18.12.8 pyocr==0.6 python-dateutil==2.8.0 From b405896a445a3efe280436d2555bb17f1c50e682 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 16:40:01 -0400 Subject: [PATCH 19/21] 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 cf344a350b..3c4a65b10d 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.2.5' __build__ = 0x030205 -__build_string__ = 'v3.2.4-21-g3a8fade8f8_Fri Jul 5 16:38:20 2019 -0400' +__build_string__ = 'v3.2.5_Fri Jul 5 16:39:17 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From a0331e0236ceb5639f6d3dc9b59f59eeb9151ee8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 21:26:45 -0400 Subject: [PATCH 20/21] Add support for icon shadows Signed-off-by: Roberto Rosario --- HISTORY.rst | 4 + docs/releases/3.3.rst | 101 ++++++++++++++++++ docs/releases/index.rst | 1 + mayan/apps/appearance/classes.py | 74 +++++++------ .../appearance/icons/font_awesome_layers.html | 3 + .../appearance/icons/font_awesome_symbol.html | 9 +- .../templatetags/appearance_tags.py | 5 + mayan/apps/documents/icons.py | 2 +- .../navigation/large_button_link.html | 6 +- 9 files changed, 167 insertions(+), 38 deletions(-) create mode 100644 docs/releases/3.3.rst diff --git a/HISTORY.rst b/HISTORY.rst index 33c632cde1..a4aaac2604 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +3.3 (2019-XX-XX) +================ +* Add support for icon shadows. + 3.2.5 (2019-07-05) ================== * Don't error out if the EXTRA_APPS or the DISABLED_APPS settings diff --git a/docs/releases/3.3.rst b/docs/releases/3.3.rst new file mode 100644 index 0000000000..229f7a466c --- /dev/null +++ b/docs/releases/3.3.rst @@ -0,0 +1,101 @@ +Version 3.3 +=========== + +Released: XX XX, 2019 + + +Changes +------- + +- Add support for icon shadows. + +Removals +-------- + +- None + + +Upgrading from a previous version +--------------------------------- + +If installed via Python's PIP +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Remove deprecated requirements:: + + $ curl https://gitlab.com/mayan-edms/mayan-edms/raw/master/removals.txt | pip uninstall -r /dev/stdin + +Type in the console:: + + $ pip install mayan-edms==3.3 + +the requirements will also be updated automatically. + + +Using Git +^^^^^^^^^ + +If you installed Mayan EDMS by cloning the Git repository issue the commands:: + + $ git reset --hard HEAD + $ git pull + +otherwise download the compressed archived and uncompress it overriding the +existing installation. + +Remove deprecated requirements:: + + $ pip uninstall -y -r removals.txt + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + + +Common steps +^^^^^^^^^^^^ + +Perform these steps after updating the code from either step above. + +Make a backup of your supervisord file:: + + sudo cp /etc/supervisor/conf.d/mayan.conf /etc/supervisor/conf.d/mayan.conf.bck + +Update the supervisord configuration file. Replace the environment +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:: + + 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 + +Edit the supervisord configuration file and update any setting the template +generator missed:: + + sudo vi /etc/supervisor/conf.d/mayan.conf + +Migrate existing database schema with:: + + $ mayan-edms.py performupgrade + +Add new static media:: + + $ mayan-edms.py preparestatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +----------------------------- + +- None + + +Bugs fixed or issues closed +--------------------------- + +- :gitlab-issue:`XX` + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 80bdb19c1e..33d838bd3d 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -20,6 +20,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 3.3 3.2.5 3.2.4 3.2.3 diff --git a/mayan/apps/appearance/classes.py b/mayan/apps/appearance/classes.py index 9b05a39fc3..7f1ad604ec 100644 --- a/mayan/apps/appearance/classes.py +++ b/mayan/apps/appearance/classes.py @@ -4,6 +4,7 @@ from django.template.loader import get_template class IconDriver(object): + context = {} _registry = {} @classmethod @@ -14,6 +15,17 @@ class IconDriver(object): def register(cls, driver_class): cls._registry[driver_class.name] = driver_class + def get_context(self): + return self.context + + def render(self, extra_context=None): + context = self.get_context() + if extra_context: + context.update(extra_context) + return get_template(template_name=self.template_name).render( + context=context + ) + class FontAwesomeDriver(IconDriver): name = 'fontawesome' @@ -22,10 +34,8 @@ class FontAwesomeDriver(IconDriver): def __init__(self, symbol): self.symbol = symbol - def render(self): - return get_template(template_name=self.template_name).render( - context={'symbol': self.symbol} - ) + def get_context(self): + return {'symbol': self.symbol} class FontAwesomeDualDriver(IconDriver): @@ -36,23 +46,21 @@ class FontAwesomeDualDriver(IconDriver): self.primary_symbol = primary_symbol self.secondary_symbol = secondary_symbol - def render(self): - return get_template(template_name=self.template_name).render( - context={ - 'data': ( - { - 'class': 'fas fa-circle', - 'transform': 'down-3 right-10', - 'mask': 'fas fa-{}'.format(self.primary_symbol) - }, - {'class': 'far fa-circle', 'transform': 'down-3 right-10'}, - { - 'class': 'fas fa-{}'.format(self.secondary_symbol), - 'transform': 'shrink-4 down-3 right-10' - }, - ) - } - ) + def get_context(self): + return { + 'data': ( + { + 'class': 'fas fa-circle', + 'transform': 'down-3 right-10', + 'mask': 'fas fa-{}'.format(self.primary_symbol) + }, + {'class': 'far fa-circle', 'transform': 'down-3 right-10'}, + { + 'class': 'fas fa-{}'.format(self.secondary_symbol), + 'transform': 'shrink-4 down-3 right-10' + }, + ) + } class FontAwesomeCSSDriver(IconDriver): @@ -62,10 +70,8 @@ class FontAwesomeCSSDriver(IconDriver): def __init__(self, css_classes): self.css_classes = css_classes - def render(self): - return get_template(template_name=self.template_name).render( - context={'css_classes': self.css_classes} - ) + def get_context(self): + return {'css_classes': self.css_classes} class FontAwesomeMasksDriver(IconDriver): @@ -75,23 +81,23 @@ class FontAwesomeMasksDriver(IconDriver): def __init__(self, data): self.data = data - def render(self): - return get_template(template_name=self.template_name).render( - context={'data': self.data} - ) + def get_context(self): + return {'data': self.data} class FontAwesomeLayersDriver(IconDriver): name = 'fontawesome-layers' template_name = 'appearance/icons/font_awesome_layers.html' - def __init__(self, data): + def __init__(self, data, shadow_class=None): self.data = data + self.shadow_class = shadow_class - def render(self): - return get_template(template_name=self.template_name).render( - context={'data': self.data} - ) + def get_context(self): + return { + 'data': self.data, + 'shadow_class': self.shadow_class, + } class Icon(object): diff --git a/mayan/apps/appearance/templates/appearance/icons/font_awesome_layers.html b/mayan/apps/appearance/templates/appearance/icons/font_awesome_layers.html index 4356ad89e1..8a8b454966 100644 --- a/mayan/apps/appearance/templates/appearance/icons/font_awesome_layers.html +++ b/mayan/apps/appearance/templates/appearance/icons/font_awesome_layers.html @@ -1,4 +1,7 @@ + {% if enable_shadow %} + + {% endif %} {% for entry in data %} {% endfor %} diff --git a/mayan/apps/appearance/templates/appearance/icons/font_awesome_symbol.html b/mayan/apps/appearance/templates/appearance/icons/font_awesome_symbol.html index fac6aeca4d..84e7b87eb8 100644 --- a/mayan/apps/appearance/templates/appearance/icons/font_awesome_symbol.html +++ b/mayan/apps/appearance/templates/appearance/icons/font_awesome_symbol.html @@ -1 +1,8 @@ - +{% if enable_shadow %} + + + + +{% else %} + +{% endif %} diff --git a/mayan/apps/appearance/templatetags/appearance_tags.py b/mayan/apps/appearance/templatetags/appearance_tags.py index 05c3ba043d..eb9cf1bc02 100644 --- a/mayan/apps/appearance/templatetags/appearance_tags.py +++ b/mayan/apps/appearance/templatetags/appearance_tags.py @@ -7,6 +7,11 @@ from django.utils.translation import ugettext_lazy as _ register = Library() +@register.simple_tag +def appearance_icon_render(icon_class, enable_shadow=False): + return icon_class.render(extra_context={'enable_shadow': enable_shadow}) + + @register.filter def get_choice_value(field): try: diff --git a/mayan/apps/documents/icons.py b/mayan/apps/documents/icons.py index 7d411a30f0..8b9b4067d9 100644 --- a/mayan/apps/documents/icons.py +++ b/mayan/apps/documents/icons.py @@ -7,7 +7,7 @@ icon_document_type = Icon( driver_name='fontawesome-layers', data=[ {'class': 'fas fa-circle', 'transform': 'shrink-12 up-2'}, {'class': 'fas fa-cog', 'transform': 'shrink-6 up-2', 'mask': 'fas fa-torah'} - ] + ], shadow_class='fas fa-torah' ) icon_menu_documents = Icon(driver_name='fontawesome', symbol='book') diff --git a/mayan/apps/navigation/templates/navigation/large_button_link.html b/mayan/apps/navigation/templates/navigation/large_button_link.html index dacbe785d9..e9c2d84f97 100644 --- a/mayan/apps/navigation/templates/navigation/large_button_link.html +++ b/mayan/apps/navigation/templates/navigation/large_button_link.html @@ -1,6 +1,8 @@ +{% load appearance_tags %} +

- - {% if link.icon_class %}{{ link.icon_class.render }}{% endif %} + + {% if link.icon_class %}{% appearance_icon_render link.icon_class enable_shadow=True %}{% endif %}
{{ link.text }}
From 300bdbfc8a399c28be99d04e66d5e24aed9d3345 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Jul 2019 21:34:20 -0400 Subject: [PATCH 21/21] Tweak setup buttom border and tag shadows Signed-off-by: Roberto Rosario --- .../appearance/static/appearance/css/base.css | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/mayan/apps/appearance/static/appearance/css/base.css b/mayan/apps/appearance/static/appearance/css/base.css index 688f8e6e51..2e57afddb9 100644 --- a/mayan/apps/appearance/static/appearance/css/base.css +++ b/mayan/apps/appearance/static/appearance/css/base.css @@ -70,7 +70,8 @@ img.lazy-load-carousel { } .label-tag { - text-shadow: 0px 0px 2px #000 + text-shadow: 0px 0px 2px #000; + box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); } .fancybox-nav span { @@ -88,21 +89,23 @@ hr { } .btn-block { + border-top: 2px solid rgba(255, 255, 255, 0.7); + border-left: 2px solid rgba(255, 255, 255, 0.7); + border-right: 2px solid rgba(0, 0, 0, 0.7); + border-bottom: 2px solid rgba(0, 0, 0, 0.7); + box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); margin-bottom: 15px; - white-space: normal; min-height: 120px; - padding-top: 20px; padding-bottom: 1px; + padding-top: 20px; + text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); + white-space: normal; } .btn-block .fa { text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); } -.btn-block { - text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); -} - .radio ul li { list-style-type:none; } @@ -112,12 +115,12 @@ a i { } .dashboard-widget { - box-shadow: 1px 1px 1px rgba(0,0,0,0.3); + box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); border: 1px solid black; } .dashboard-widget .panel-heading i { - text-shadow: 1px 1px 1px rgba(0,0,0,0.3); + text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); } .dashboard-widget-icon { @@ -170,7 +173,7 @@ a i { } .navbar-collapse { border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); } .navbar-fixed-top { top: 0;